Search in sources :

Example 1 with ISOWeek

use of com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek in project elide by yahoo.

the class ISOWeekSerdeTest method testDateDeserializeString.

@Test
public void testDateDeserializeString() {
    LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(01), 06, 00, 00, 00);
    ISOWeek expectedDate = new ISOWeek(localDate);
    Serde serde = new ISOWeek.ISOWeekSerde();
    Object actualDate = serde.deserialize("2020-01-06");
    assertEquals(expectedDate, actualDate);
}
Also used : LocalDateTime(java.time.LocalDateTime) Serde(com.yahoo.elide.core.utils.coerce.converters.Serde) ISOWeek(com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek) Test(org.junit.jupiter.api.Test)

Example 2 with ISOWeek

use of com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek in project elide by yahoo.

the class ISOWeekSerdeTest method testDeserializeTimestamp.

@Test
public void testDeserializeTimestamp() {
    LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(01), 06, 00, 00, 00);
    ISOWeek expectedDate = new ISOWeek(localDate);
    Timestamp timestamp = new Timestamp(expectedDate.getTime());
    Serde serde = new ISOWeek.ISOWeekSerde();
    Object actualDate = serde.deserialize(timestamp);
    assertEquals(expectedDate, actualDate);
}
Also used : LocalDateTime(java.time.LocalDateTime) Serde(com.yahoo.elide.core.utils.coerce.converters.Serde) ISOWeek(com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek) Timestamp(java.sql.Timestamp) Test(org.junit.jupiter.api.Test)

Example 3 with ISOWeek

use of com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek in project elide by yahoo.

the class ISOWeekSerdeTest method testDeserializeOffsetDateTime.

@Test
public void testDeserializeOffsetDateTime() {
    LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(01), 06, 00, 00, 00);
    ISOWeek expectedDate = new ISOWeek(localDate);
    OffsetDateTime dateTime = OffsetDateTime.of(2020, 01, 06, 00, 00, 00, 00, ZoneOffset.UTC);
    Serde serde = new ISOWeek.ISOWeekSerde();
    Object actualDate = serde.deserialize(dateTime);
    assertEquals(expectedDate, actualDate);
}
Also used : LocalDateTime(java.time.LocalDateTime) Serde(com.yahoo.elide.core.utils.coerce.converters.Serde) ISOWeek(com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek) OffsetDateTime(java.time.OffsetDateTime) Test(org.junit.jupiter.api.Test)

Example 4 with ISOWeek

use of com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek in project elide by yahoo.

the class ISOWeekSerdeTest method testDeserializeTimestampNotMonday.

@Test
public void testDeserializeTimestampNotMonday() {
    LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(01), 01, 00, 00, 00);
    ISOWeek timestamp = new ISOWeek(localDate);
    Serde serde = new ISOWeek.ISOWeekSerde();
    assertThrows(IllegalArgumentException.class, () -> serde.deserialize(timestamp));
}
Also used : LocalDateTime(java.time.LocalDateTime) Serde(com.yahoo.elide.core.utils.coerce.converters.Serde) ISOWeek(com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek) Test(org.junit.jupiter.api.Test)

Example 5 with ISOWeek

use of com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek in project elide by yahoo.

the class ISOWeekSerdeTest method testDateSerialize.

@Test
public void testDateSerialize() {
    LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(01), 06, 00, 00, 00);
    ISOWeek expectedDate = new ISOWeek(localDate);
    Serde serde = new ISOWeek.ISOWeekSerde();
    Object actual = serde.serialize(expectedDate);
    assertEquals("2020-01-06", actual);
}
Also used : LocalDateTime(java.time.LocalDateTime) Serde(com.yahoo.elide.core.utils.coerce.converters.Serde) ISOWeek(com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek) Test(org.junit.jupiter.api.Test)

Aggregations

Serde (com.yahoo.elide.core.utils.coerce.converters.Serde)5 ISOWeek (com.yahoo.elide.datastores.aggregation.timegrains.ISOWeek)5 LocalDateTime (java.time.LocalDateTime)5 Test (org.junit.jupiter.api.Test)5 Timestamp (java.sql.Timestamp)1 OffsetDateTime (java.time.OffsetDateTime)1