blob: 2a2cf3e0ae9722f8b7b1b9409cfb42c7cc88693a [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.component.http;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.impl.JndiRegistry;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.apache.commons.httpclient.HttpClient;
import org.junit.Test;
/**
* Unit test for resolving reference parameters.
*/
public class HttpReferenceParameterTest extends CamelTestSupport {
private static final String TEST_URI_1 = "http://localhost:8080?httpBindingRef=#customBinding&httpClientConfigurerRef=#customConfigurer";
private static final String TEST_URI_2 = "http://localhost:8081?httpBindingRef=customBinding&httpClientConfigurerRef=customConfigurer";
private HttpEndpoint endpoint1;
private HttpEndpoint endpoint2;
private TestHttpBinding testBinding;
private TestClientConfigurer testConfigurer;
@Override
public void setUp() throws Exception {
this.testBinding = new TestHttpBinding();
this.testConfigurer = new TestClientConfigurer();
super.setUp();
this.endpoint1 = (HttpEndpoint)context.getEndpoint(TEST_URI_1);
this.endpoint2 = (HttpEndpoint)context.getEndpoint(TEST_URI_2);
}
@Test
public void testHttpBindingRef() {
assertSame(testBinding, endpoint1.getBinding());
assertSame(testBinding, endpoint2.getBinding());
}
@Test
public void testHttpClientConfigurerRef() {
assertSame(testConfigurer, endpoint1.getHttpClientConfigurer());
assertSame(testConfigurer, endpoint2.getHttpClientConfigurer());
}
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry registry = super.createRegistry();
registry.bind("customBinding", testBinding);
registry.bind("customConfigurer", testConfigurer);
return registry;
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
public void configure() {
from("direct:start1").to(TEST_URI_1);
from("direct:start2").to(TEST_URI_2);
}
};
}
private static class TestHttpBinding extends DefaultHttpBinding {
TestHttpBinding() {
super(new HttpEndpoint());
}
}
private static class TestClientConfigurer implements HttpClientConfigurer {
public void configureHttpClient(HttpClient client) {
}
}
}