Search in sources :

Example 6 with ClassA

use of com.tvd12.ezyfoxserver.testing.jaxberror.ClassA in project properties-file by tvd12.

the class PropertiesMapper2Test method testMapPropertiesToBean.

@Test
public void testMapPropertiesToBean() {
    Properties properties = new Properties();
    properties.setProperty("name", "hello");
    properties.put("age", 24);
    properties.put("clazz", ClassA.class.getName());
    properties.put("date", new SimpleDateFormat(Dates.getPattern()).format(new Date()));
    properties.put("x", "123");
    properties.put("valid", "true");
    ClassA object = new PropertiesMapper().data(properties).clazz(ClassA.class).map();
    assertEquals(object.isValid(), true);
    assertEquals(object.getName(), "hello");
    assertEquals(object.getAge(), 24);
    assertEquals(object.getMoney(), 10);
    assertEquals(object.getClazz(), ClassA.class);
    assertNotNull(object.getDate());
    assertEquals(object.getString(), "123");
    assertEquals(object.getString2(), "st2");
    assertEquals(object.getNotExists(), null);
    PropertiesMapper propertiesMapper = new PropertiesMapper().data(properties).clazz(ClassA.class);
    propertiesMapper.map(ClassA.class);
    ClassA objectx = propertiesMapper.map(ClassA.class);
    assertEquals(objectx.getName(), "hello");
    assertEquals(objectx.getAge(), 24);
    assertEquals(objectx.getMoney(), 10);
    assertEquals(objectx.getClazz(), ClassA.class);
    assertNotNull(objectx.getDate());
    assertEquals(objectx.getString(), "123");
    assertEquals(objectx.getString2(), "st2");
    assertEquals(objectx.getNotExists(), null);
    PropertiesMapper propertiesMapperx = new PropertiesMapper().data(properties).bean(new ClassA());
    propertiesMapper.map(ClassA.class);
    ClassA objectxx = propertiesMapperx.map(ClassA.class);
    assertEquals(objectxx.getName(), "hello");
    assertEquals(objectxx.getAge(), 24);
    assertEquals(objectxx.getMoney(), 10);
    assertEquals(objectxx.getClazz(), ClassA.class);
    assertNotNull(objectxx.getDate());
    assertEquals(objectxx.getString(), "123");
    assertEquals(objectxx.getString2(), "st2");
    assertEquals(objectxx.getNotExists(), null);
}
Also used : PropertiesMapper(com.tvd12.properties.file.mapping.PropertiesMapper) Properties(java.util.Properties) SimpleDateFormat(java.text.SimpleDateFormat) Date(java.util.Date) Test(org.testng.annotations.Test)

Example 7 with ClassA

use of com.tvd12.ezyfoxserver.testing.jaxberror.ClassA in project properties-file by tvd12.

the class PropertiesMapperTest method testMapPropertiesToBean2.

@Test
public void testMapPropertiesToBean2() {
    Properties properties = new Properties();
    properties.setProperty("name", "hello");
    properties.put("age", 24);
    properties.put("clazz", ClassA.class.getName());
    properties.put("date", new SimpleDateFormat(Dates.getPattern()).format(new Date()));
    ClassA object = new PropertiesMapper().data(PropertiesUtil.toMap(properties)).bean(new ClassA()).map();
    assertEquals(object.getName(), "hello");
    assertEquals(object.getAge(), 24);
    assertEquals(object.getMoney(), 10);
    assertEquals(object.getClazz(), ClassA.class);
    assertNotNull(object.getDate());
}
Also used : PropertiesMapper(com.tvd12.properties.file.mapping.PropertiesMapper) Properties(java.util.Properties) SimpleDateFormat(java.text.SimpleDateFormat) Date(java.util.Date) Test(org.testng.annotations.Test)

Example 8 with ClassA

use of com.tvd12.ezyfoxserver.testing.jaxberror.ClassA in project properties-file by tvd12.

the class PropertiesMapperTest method testMapPropertiesToBeanWithMapClazz.

@Test
public void testMapPropertiesToBeanWithMapClazz() {
    Properties properties = new Properties();
    properties.setProperty("name", "hello");
    properties.put("age", 24);
    properties.put("clazz", ClassA.class.getName());
    properties.put("date", new SimpleDateFormat(Dates.getPattern()).format(new Date()));
    ClassA object = new PropertiesMapper().data(PropertiesUtil.toMap(properties)).map(ClassA.class);
    assertEquals(object.getName(), "hello");
    assertEquals(object.getAge(), 24);
    assertEquals(object.getMoney(), 10);
    assertEquals(object.getClazz(), ClassA.class);
    assertNotNull(object.getDate());
}
Also used : PropertiesMapper(com.tvd12.properties.file.mapping.PropertiesMapper) Properties(java.util.Properties) SimpleDateFormat(java.text.SimpleDateFormat) Date(java.util.Date) Test(org.testng.annotations.Test)

Example 9 with ClassA

use of com.tvd12.ezyfoxserver.testing.jaxberror.ClassA in project properties-file by tvd12.

the class PropertiesMapperTest method testMapPropertiesToBean.

@Test
public void testMapPropertiesToBean() {
    Properties properties = new Properties();
    properties.setProperty("name", "hello");
    properties.put("age", 24);
    properties.put("clazz", ClassA.class.getName());
    properties.put("date", new SimpleDateFormat(Dates.getPattern()).format(new Date()));
    ClassA object = new PropertiesMapper().data(properties).clazz(ClassA.class).map();
    assertEquals(object.getName(), "hello");
    assertEquals(object.getAge(), 24);
    assertEquals(object.getMoney(), 10);
    assertEquals(object.getClazz(), ClassA.class);
    assertNotNull(object.getDate());
}
Also used : PropertiesMapper(com.tvd12.properties.file.mapping.PropertiesMapper) Properties(java.util.Properties) SimpleDateFormat(java.text.SimpleDateFormat) Date(java.util.Date) Test(org.testng.annotations.Test)

Example 10 with ClassA

use of com.tvd12.ezyfoxserver.testing.jaxberror.ClassA in project properties-file by tvd12.

the class SetterMethodTest method testInvalidCase.

@Test(expectedExceptions = { IllegalStateException.class })
public void testInvalidCase() {
    Method method = MethodBuilder.create().clazz(ClassA.class).method("setValues").argument(String.class).argument(String.class).build();
    SetterMethod setterMethod = new SetterMethod(new PropertyAnnotations());
    setterMethod.initWithMethod(method);
    setterMethod.invoke(new ClassA(), "123");
}
Also used : PropertyAnnotations(com.tvd12.properties.file.annotation.PropertyAnnotations) SetterMethod(com.tvd12.properties.file.struct.SetterMethod) SetterMethod(com.tvd12.properties.file.struct.SetterMethod) Method(java.lang.reflect.Method) Test(org.testng.annotations.Test)

Aggregations

Test (org.testng.annotations.Test)15 Properties (java.util.Properties)10 PropertiesMapper (com.tvd12.properties.file.mapping.PropertiesMapper)8 SimpleDateFormat (java.text.SimpleDateFormat)8 Date (java.util.Date)8 PropertyAnnotations (com.tvd12.properties.file.annotation.PropertyAnnotations)6 SetterMethod (com.tvd12.properties.file.struct.SetterMethod)4 Method (java.lang.reflect.Method)4 PropertiesBean (com.tvd12.properties.file.struct.PropertiesBean)2 Prototypes (com.tvd12.calabash.core.prototype.Prototypes)1 SimplePrototypes (com.tvd12.calabash.core.prototype.SimplePrototypes)1