blob: 496fc02795e9deec2f4c54332d7f2593a162294a [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.impl;
import org.apache.camel.ContextTestSupport;
/**
* @version
*/
public class DefaultEndpointTest extends ContextTestSupport {
public void testSanitizeUri() {
assertNull(DefaultEndpoint.sanitizeUri(null));
assertEquals("", DefaultEndpoint.sanitizeUri(""));
assertSanitizedUriUnchanged("http://camel.apache.org");
assertSanitizedUriUnchanged("irc://irc.codehaus.org/camel");
assertSanitizedUriUnchanged("direct:foo?bar=123&cheese=yes");
assertSanitizedUriUnchanged("https://issues.apache.org/activemq/secure/AddComment!default.jspa?id=33239");
assertEquals("ftp://host.mysite.com/records?passiveMode=true&user=someuser&password=******",
DefaultEndpoint.sanitizeUri("ftp://host.mysite.com/records?passiveMode=true&user=someuser&password=superSecret"));
assertEquals("sftp://host.mysite.com/records?user=someuser&privateKeyFile=key.file&privateKeyFilePassphrase=******&knownHostsFile=hosts.list",
DefaultEndpoint.sanitizeUri("sftp://host.mysite.com/records?user=someuser&privateKeyFile=key.file&privateKeyFilePassphrase=superSecret&knownHostsFile=hosts.list"));
}
public void assertSanitizedUriUnchanged(String uri) {
assertEquals(uri, DefaultEndpoint.sanitizeUri(uri));
}
}