// Copyright (c) 2003-present, Jodd Team (http://jodd.org)
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
package jodd.petite;
import jodd.petite.fixtures.data.PojoBean2;
import jodd.petite.fixtures.tst2.Joo;
import jodd.petite.fixtures.tst2.Moo;
import jodd.props.Props;
import org.junit.Test;
import static org.junit.Assert.*;
public class PropertyTest {
@Test
public void testSet() {
PetiteContainer pc = new PetiteContainer();
pc.registerPetiteBean(PojoBean2.class, null, null, null, false);
pc.setBeanProperty("pojoBean2.val1", "value");
pc.setBeanProperty("pojoBean2.val2", "173");
PojoBean2 pojo2 = (PojoBean2) pc.getBean("pojoBean2");
assertEquals("value", pojo2.getVal1());
assertEquals(173, pojo2.getVal2().intValue());
}
@Test
public void testSetWithMultipleDots() {
PetiteContainer pc = new PetiteContainer();
pc.registerPetiteBean(PojoBean2.class, "pojo", null, null, false);
try {
pc.setBeanProperty("poco", null);
fail();
} catch (PetiteException ignore) {
}
pc.setBeanProperty("pojo.val1", "value");
pc.setBeanProperty("pojo.bean.name", "foo");
PojoBean2 pojo2 = (PojoBean2) pc.getBean("pojo");
assertEquals("value", pojo2.getVal1());
assertEquals("foo", pojo2.getBean().getName());
pc.registerPetiteBean(PojoBean2.class, "pojo.bean", null, null, false);
pc.setBeanProperty("pojo.bean.val1", "value");
pc.setBeanProperty("pojo.bean.val2", "173");
pojo2 = (PojoBean2) pc.getBean("pojo.bean");
assertEquals("value", pojo2.getVal1());
assertEquals(173, pojo2.getVal2().intValue());
}
@Test
public void testGet() {
PetiteContainer pc = new PetiteContainer();
pc.registerPetiteBean(PojoBean2.class, null, null, null, false);
PojoBean2 pojo2 = (PojoBean2) pc.getBean("pojoBean2");
pojo2.setVal1("value");
pojo2.setVal2(Integer.valueOf(173));
pc.setBeanProperty("pojoBean2.val1", "value");
pc.setBeanProperty("pojoBean2.val2", "173");
assertEquals("value", pc.getBeanProperty("pojoBean2.val1"));
assertEquals(Integer.valueOf(173), pc.getBeanProperty("pojoBean2.val2"));
}
@Test
public void testCount() {
PetiteContainer pc = new PetiteContainer();
pc.registerPetiteBean(Moo.class, null, null, null, false);
pc.registerPetiteBean(Joo.class, null, null, null, false);
Moo moo = pc.getBean(Moo.class);
assertNotNull(moo.joo);
assertNull(moo.jooNo);
BeanDefinition bd = pc.lookupBeanDefinition("moo");
assertEquals(1, bd.properties.length);
pc = new PetiteContainer();
pc.getConfig().setDefaultWiringMode(WiringMode.AUTOWIRE);
pc.registerPetiteBean(Moo.class, null, null, null, false);
pc.registerPetiteBean(Joo.class, null, null, null, false);
moo = pc.getBean(Moo.class);
assertNotNull(moo.joo);
assertNotNull(moo.jooNo);
assertEquals(moo.joo, moo.jooNo);
bd = pc.lookupBeanDefinition("moo");
assertEquals(2, bd.properties.length);
}
@Test
public void testProps() {
Props props = new Props();
props.load("pojoBean2.val2=123");
props.load("pojoBean2.val1=\\\\${pojo}");
assertEquals("123", props.getValue("pojoBean2.val2"));
assertEquals("\\${pojo}", props.getValue("pojoBean2.val1"));
PetiteContainer pc = new PetiteContainer();
pc.registerPetiteBean(PojoBean2.class, null, null, null, false);
pc.defineParameters(props);
PojoBean2 pojoBean2 = pc.getBean(PojoBean2.class);
assertEquals(123, pojoBean2.getVal2().intValue());
assertEquals("${pojo}", pojoBean2.getVal1());
}
}