use of com.enonic.xp.data.Value in project xp by enonic.
the class DateTimeTypeTest method testCreateDefaultValue_withTimezone_format2_minus.
@Test
public void testCreateDefaultValue_withTimezone_format2_minus() {
final Input input = getDefaultInputBuilder(InputTypeName.DATE_TIME, "2014-08-16T10:03:45-03:00").inputTypeConfig(InputTypeConfig.create().property(InputTypeProperty.create("timezone", "true").build()).build()).build();
final Value value = this.type.createDefaultValue(input);
assertNotNull(value);
assertSame(ValueTypes.DATE_TIME, value.getType());
assertEquals(value.toString(), "2014-08-16T13:03:45Z");
}
use of com.enonic.xp.data.Value in project xp by enonic.
the class CheckBoxTypeTest method testCreateDefaultValue.
@Test
public void testCreateDefaultValue() {
final Input input = getDefaultInputBuilder(InputTypeName.CHECK_BOX, "checked").build();
final Value value = this.type.createDefaultValue(input);
assertNotNull(value);
assertEquals("true", value.toString());
}
use of com.enonic.xp.data.Value in project xp by enonic.
the class CheckBoxTypeTest method testCreateProperty.
@Test
public void testCreateProperty() {
final InputTypeConfig config = InputTypeConfig.create().build();
final Value value = this.type.createValue(ValueFactory.newString("true"), config);
assertNotNull(value);
assertSame(ValueTypes.BOOLEAN, value.getType());
}
use of com.enonic.xp.data.Value in project xp by enonic.
the class ComboBoxTypeTest method testCreateProperty.
@Test
public void testCreateProperty() {
final InputTypeConfig config = InputTypeConfig.create().build();
final Value value = this.type.createValue(ValueFactory.newString("one"), config);
assertNotNull(value);
assertSame(ValueTypes.STRING, value.getType());
}
use of com.enonic.xp.data.Value in project xp by enonic.
the class DateTimeTypeTest method testCreateDefaultValue_withTimezone_format2_day_change.
@Test
public void testCreateDefaultValue_withTimezone_format2_day_change() {
final Input input = getDefaultInputBuilder(InputTypeName.DATE_TIME, "2014-08-16T22:03:45-03:00").inputTypeConfig(InputTypeConfig.create().property(InputTypeProperty.create("timezone", "true").build()).build()).build();
final Value value = this.type.createDefaultValue(input);
assertNotNull(value);
assertSame(ValueTypes.DATE_TIME, value.getType());
assertEquals(value.toString(), "2014-08-17T01:03:45Z");
}
Aggregations