从使用to_date和针对LocalTimeDate进行测试的数据库测试日期

时间:2016-12-12 21:07:47

标签: java unit-testing java-8 localdate

我有一个旧程序,我将其升级到Java 8.现在我想利用LocalDateTime。我已经更新了实体,在数据库中,值为10-APR-1990

但是我收到以下错误:

java.time.format.DateTimeParseException: Text '10-APR-90' could not be parsed at index 3

在我的测试中,我尝试使用DateTimeFormatter解析它。

测试:

@Test
    public void testLocalDateTime() throws Exception {

        DateTimeFormatter formatter =
                DateTimeFormatter.ofPattern("dd-MMM-yy", Locale.US);

        Tcan1990 applicant = tcan1990Repository.findOne(new Tcan1990PK("000000009", 888067));

        assertEquals(LocalDateTime.parse("10-APR-90",formatter),applicant.getPymtDt());
    }

2 个答案:

答案 0 :(得分:2)

更新您的测试用例以使用不区分大小写的格式化程序,并将日期字符串解析为LocalDate,并将时间设置为当天的开始以获取LocalDateTime。

@Test
public void testLocalDateTime() throws Exception {

    DateTimeFormatter formatter = new DateTimeFormatterBuilder().parseCaseInsensitive().appendPattern("dd-MMM-yyyy").toFormatter(Locale.US);

    Tcan1990 applicant = tcan1990Repository.findOne(new Tcan1990PK("000000009", 888067));

    assertEquals(LocalDate.parse("10-APR-1990", formatter).atStartOfDay(), applicant.getPymtDt());

}

答案 1 :(得分:0)

两件事:

  • 月份需要处于驼峰状态:"10-Apr-90"
  • 因为您正在解析的内容没有时间方面,所以您应该使用LocalDate而不是LocalDateTime