Exemplo n.º 1
1
  /*
   * (non-Javadoc)
   *
   * @seeorg.eclipse.birt.report.model.metadata.PropertyTypeTestCase#
   * testToDisplayString()
   */
  public void testToDisplayString() {
    assertEquals(null, type.toDisplayString(design, propDefn, null));

    ThreadResources.setLocale(ULocale.ENGLISH);
    calendar.set(2004, Calendar.OCTOBER, 18);

    String value = type.toDisplayString(design, propDefn, calendar.getTime());
    assertEquals("10/18/04", value); // $NON-NLS-1$
  }
Exemplo n.º 2
0
  /*
   * (non-Javadoc)
   *
   * @seeorg.eclipse.birt.report.model.metadata.PropertyTypeTestCase#
   * testValidateInputString()
   */
  public void testValidateInputString() throws PropertyValueException {
    assertEquals(null, type.validateInputString(design, null, propDefn, null));
    assertEquals(null, type.validateInputString(design, null, propDefn, "")); // $NON-NLS-1$

    ModuleOption options = new ModuleOption();
    design.setOptions(options);

    // String
    options.setLocale(ULocale.ENGLISH);
    Date value =
        (Date) type.validateInputString(design, null, propDefn, "08/25/2004"); // $NON-NLS-1$
    calendar.setTime(value);
    assertEquals(2004 - 1900, calendar.get(Calendar.YEAR) - 1900);
    assertEquals(7, calendar.get(Calendar.MONTH));
    assertEquals(25, calendar.get(Calendar.DAY_OF_MONTH));

    options.setLocale(ULocale.CHINA);
    value = (Date) type.validateInputString(design, null, propDefn, "2004-08-25"); // $NON-NLS-1$
    assertEquals(2004 - 1900, calendar.get(Calendar.YEAR) - 1900);
    assertEquals(7, calendar.get(Calendar.MONTH));
    assertEquals(25, calendar.get(Calendar.DAY_OF_MONTH));

    try {
      type.validateInputString(design, null, propDefn, "wrong-datetime-value"); // $NON-NLS-1$
      fail();
    } catch (PropertyValueException e) {
      assertEquals(PropertyValueException.DESIGN_EXCEPTION_INVALID_VALUE, e.getErrorCode());
    }
  }
Exemplo n.º 3
0
  /*
   * (non-Javadoc)
   *
   * @see
   * org.eclipse.birt.report.model.metadata.PropertyTypeTestCase#testToXml()
   */
  public void testToXml() {
    assertEquals(null, type.toXml(design, propDefn, null));
    calendar.set(2004, Calendar.OCTOBER, 18);

    String value = type.toXml(design, propDefn, calendar.getTime());

    // in format "yyyy-MM-dd HH:mm:ss"
    int index = value.indexOf(" "); // $NON-NLS-1$
    value = value.substring(0, index);

    assertEquals("2004-10-18", value); // $NON-NLS-1$
  }
Exemplo n.º 4
0
  /*
   * (non-Javadoc)
   *
   * @see
   * org.eclipse.birt.report.model.metadata.PropertyTypeTestCase#testToString
   * ()
   */
  public void testToString() {
    assertEquals(null, type.toString(design, propDefn, null));

    calendar.set(2004, Calendar.OCTOBER, 18);

    ULocale preULocale = ULocale.getDefault();

    ULocale.setDefault(ULocale.ENGLISH);
    String value = type.toString(design, propDefn, calendar.getTime());
    assertTrue(value.startsWith("2004-10-18")); // $NON-NLS-1$

    ULocale.setDefault(ULocale.GERMAN);
    value = type.toString(design, propDefn, calendar.getTime());
    assertTrue(value.startsWith("2004-10-18")); // $NON-NLS-1$

    ULocale.setDefault(preULocale);
  }
Exemplo n.º 5
0
  /*
   * (non-Javadoc)
   *
   * @see
   * org.eclipse.birt.report.model.metadata.PropertyTypeTestCase#testValidateXml
   * ()
   */
  public void testValidateXml() throws PropertyValueException {
    assertEquals(null, type.validateXml(design, null, propDefn, null));
    assertEquals(null, type.validateXml(design, null, propDefn, "")); // $NON-NLS-1$

    Date value =
        (Date) type.validateXml(design, null, propDefn, "2004-10-18 10:34:22"); // $NON-NLS-1$
    calendar.setTime(value);
    assertEquals(2004 - 1900, calendar.get(Calendar.YEAR) - 1900);
    assertEquals(9, calendar.get(Calendar.MONTH));
    assertEquals(18, calendar.get(Calendar.DAY_OF_MONTH));

    // wrong value
    try {
      type.validateXml(design, null, propDefn, "wrong-datetime-value"); // $NON-NLS-1$
      fail();
    } catch (PropertyValueException e) {
      assertEquals(PropertyValueException.DESIGN_EXCEPTION_INVALID_VALUE, e.getErrorCode());
    }
  }
Exemplo n.º 6
0
 /*
  * (non-Javadoc)
  *
  * @see
  * org.eclipse.birt.report.model.metadata.PropertyTypeTestCase#testGetName()
  */
 public void testGetName() {
   assertEquals(PropertyType.DATE_TIME_TYPE_NAME, type.getName());
 }
Exemplo n.º 7
0
 /*
  * (non-Javadoc)
  *
  * @see
  * org.eclipse.birt.report.model.metadata.PropertyTypeTestCase#testGetTypeCode
  * ()
  */
 public void testGetTypeCode() {
   assertEquals(PropertyType.DATE_TIME_TYPE, type.getTypeCode());
 }