blob: d3ecb4362ede110dc58c086331cd782059862271 [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.main;
import org.apache.camel.CamelContext;
import org.apache.camel.LoggingLevel;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.spi.BeanIntrospection;
import org.apache.camel.support.PluginHelper;
import org.apache.camel.support.PropertyBindingSupport;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
/**
* Unit test for PropertyBindingSupport
*/
public class PropertyBindingSupportRootArrayWithConfigurerTest {
@Test
public void testRootArray() {
CamelContext context = new DefaultCamelContext();
BeanIntrospection bi = PluginHelper.getBeanIntrospection(context);
bi.setExtendedStatistics(true);
bi.setLoggingLevel(LoggingLevel.WARN);
context.start();
MySecondFoo target = new MySecondFoo();
PropertyBindingSupport.build()
.withCamelContext(context)
.withTarget(target)
.withProperty("bars[0]", "#class:" + MySecondBar.class.getName())
.withProperty("bars[0].number", "123")
.withProperty("bars[0].names[0]", "a")
.withProperty("bars[0].names[1]", "b")
.withConfigurer(new MySecondFooConfigurer())
.withRemoveParameters(false).bind();
assertEquals(1, target.getBars().size());
assertEquals(123, target.getBars().get(0).getNumber());
assertEquals(2, target.getBars().get(0).getNames().size());
assertEquals("a", target.getBars().get(0).getNames().get(0));
assertEquals("b", target.getBars().get(0).getNames().get(1));
assertEquals(0, bi.getInvokedCounter());
context.stop();
}
@Test
public void testRootArrayAutoDetectClass() {
CamelContext context = new DefaultCamelContext();
BeanIntrospection bi = PluginHelper.getBeanIntrospection(context);
bi.setExtendedStatistics(true);
bi.setLoggingLevel(LoggingLevel.WARN);
context.start();
MySecondFoo target = new MySecondFoo();
PropertyBindingSupport.build()
.withCamelContext(context)
.withTarget(target)
// should use configurer to auto-detect which class is bars[0] holds
.withProperty("bars[0].number", "123")
.withProperty("bars[0].names[0]", "a")
.withProperty("bars[0].names[1]", "b")
.withConfigurer(new MySecondFooConfigurer())
.withRemoveParameters(false).bind();
assertEquals(1, target.getBars().size());
assertEquals(123, target.getBars().get(0).getNumber());
assertEquals(2, target.getBars().get(0).getNames().size());
assertEquals("a", target.getBars().get(0).getNames().get(0));
assertEquals("b", target.getBars().get(0).getNames().get(1));
assertEquals(0, bi.getInvokedCounter());
context.stop();
}
@Test
public void testRootArrayAutoDetectClassTwo() {
CamelContext context = new DefaultCamelContext();
BeanIntrospection bi = PluginHelper.getBeanIntrospection(context);
bi.setExtendedStatistics(true);
bi.setLoggingLevel(LoggingLevel.WARN);
context.start();
MySecondFoo target = new MySecondFoo();
PropertyBindingSupport.build()
.withCamelContext(context)
.withTarget(target)
// should use configurer to auto-detect which class is bars[0] and names[0] holds
.withProperty("bars[0].names[0]", "a")
.withProperty("bars[0].names[1]", "b")
.withConfigurer(new MySecondFooConfigurer())
.withRemoveParameters(false).bind();
assertEquals(1, target.getBars().size());
assertEquals(2, target.getBars().get(0).getNames().size());
assertEquals("a", target.getBars().get(0).getNames().get(0));
assertEquals("b", target.getBars().get(0).getNames().get(1));
assertEquals(0, bi.getInvokedCounter());
context.stop();
}
}