blob: 1b09566d5eab364e510db06939b31014a3cf9f3e [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.hystrix.processor;
import org.apache.camel.CamelContext;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.impl.SimpleRegistry;
import org.apache.camel.model.HystrixConfigurationDefinition;
import org.apache.camel.model.HystrixDefinition;
import org.junit.Assert;
import org.junit.Test;
public class HystrixHierarchicalConfigTest {
@Test
public void testRegistryConfiguration() throws Exception {
final SimpleRegistry registry = new SimpleRegistry();
final CamelContext context = new DefaultCamelContext(registry);
HystrixConfigurationDefinition def = new HystrixConfigurationDefinition();
def.setGroupKey("global-group-key");
def.setThreadPoolKey("global-thread-key");
def.setCorePoolSize(10);
HystrixConfigurationDefinition ref = new HystrixConfigurationDefinition();
ref.setGroupKey("ref-group-key");
ref.setCorePoolSize(5);
registry.put(HystrixConstants.DEFAULT_HYSTRIX_CONFIGURATION_ID, def);
registry.put("ref-hystrix", ref);
final HystrixProcessorFactory factory = new HystrixProcessorFactory();
final HystrixConfigurationDefinition config = factory.buildHystrixConfiguration(
context,
new HystrixDefinition()
.hystrixConfiguration("ref-hystrix")
.hystrixConfiguration()
.groupKey("local-conf-group-key")
.requestLogEnabled(false)
.end()
);
Assert.assertEquals("local-conf-group-key", config.getGroupKey());
Assert.assertEquals("global-thread-key", config.getThreadPoolKey());
Assert.assertEquals(new Integer(5), config.getCorePoolSize());
}
@Test
public void testContextConfiguration() throws Exception {
final CamelContext context = new DefaultCamelContext();
HystrixConfigurationDefinition def = new HystrixConfigurationDefinition();
def.setGroupKey("global-group-key");
def.setThreadPoolKey("global-thread-key");
def.setCorePoolSize(10);
HystrixConfigurationDefinition ref = new HystrixConfigurationDefinition();
ref.setGroupKey("ref-group-key");
ref.setCorePoolSize(5);
context.setHystrixConfiguration(def);
context.addHystrixConfiguration("ref-hystrix", ref);
final HystrixProcessorFactory factory = new HystrixProcessorFactory();
final HystrixConfigurationDefinition config = factory.buildHystrixConfiguration(
context,
new HystrixDefinition()
.hystrixConfiguration("ref-hystrix")
.hystrixConfiguration()
.groupKey("local-conf-group-key")
.requestLogEnabled(false)
.end()
);
Assert.assertEquals("local-conf-group-key", config.getGroupKey());
Assert.assertEquals("global-thread-key", config.getThreadPoolKey());
Assert.assertEquals(new Integer(5), config.getCorePoolSize());
}
@Test
public void testMixedConfiguration() throws Exception {
final SimpleRegistry registry = new SimpleRegistry();
final CamelContext context = new DefaultCamelContext(registry);
HystrixConfigurationDefinition def = new HystrixConfigurationDefinition();
def.setGroupKey("global-group-key");
def.setThreadPoolKey("global-thread-key");
def.setCorePoolSize(10);
HystrixConfigurationDefinition ref = new HystrixConfigurationDefinition();
ref.setGroupKey("ref-group-key");
ref.setCorePoolSize(5);
// this should be ignored
HystrixConfigurationDefinition defReg = new HystrixConfigurationDefinition();
defReg.setGroupKey("global-reg-group-key");
defReg.setThreadPoolKey("global-reg-thread-key");
defReg.setCorePoolSize(20);
context.setHystrixConfiguration(def);
registry.put(HystrixConstants.DEFAULT_HYSTRIX_CONFIGURATION_ID, defReg);
registry.put("ref-hystrix", ref);
final HystrixProcessorFactory factory = new HystrixProcessorFactory();
final HystrixConfigurationDefinition config = factory.buildHystrixConfiguration(
context,
new HystrixDefinition()
.hystrixConfiguration("ref-hystrix")
.hystrixConfiguration()
.groupKey("local-conf-group-key")
.requestLogEnabled(false)
.end()
);
Assert.assertEquals("local-conf-group-key", config.getGroupKey());
Assert.assertEquals("global-thread-key", config.getThreadPoolKey());
Assert.assertEquals(new Integer(5), config.getCorePoolSize());
}
}