Search in sources :

Example 1 with Hour

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

the class HourSerdeTest method testDeserializeTimestamp.

@Test
public void testDeserializeTimestamp() {
    String dateInString = "2020-01-01T01";
    Hour expectedDate = new Hour(LocalDateTime.from(formatter.parse(dateInString)));
    Timestamp timestamp = new Timestamp(expectedDate.getTime());
    Serde serde = new Hour.HourSerde();
    Object actualDate = serde.deserialize(timestamp);
    assertEquals(expectedDate, actualDate);
}
Also used : Serde(com.yahoo.elide.core.utils.coerce.converters.Serde) Hour(com.yahoo.elide.datastores.aggregation.timegrains.Hour) Timestamp(java.sql.Timestamp) Test(org.junit.jupiter.api.Test)

Example 2 with Hour

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

the class HourSerdeTest method testDeserializeOffsetDateTime.

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

Example 3 with Hour

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

the class HourSerdeTest method testDateSerialize.

@Test
public void testDateSerialize() {
    String expected = "2020-01-01T01";
    Hour expectedDate = new Hour(LocalDateTime.from(formatter.parse(expected)));
    Serde serde = new Hour.HourSerde();
    Object actual = serde.serialize(expectedDate);
    assertEquals(expected, actual);
}
Also used : Serde(com.yahoo.elide.core.utils.coerce.converters.Serde) Hour(com.yahoo.elide.datastores.aggregation.timegrains.Hour) Test(org.junit.jupiter.api.Test)

Example 4 with Hour

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

the class HourSerdeTest method testDateDeserializeString.

@Test
public void testDateDeserializeString() {
    String dateInString = "2020-01-01T01";
    Hour expectedDate = new Hour(LocalDateTime.from(formatter.parse(dateInString)));
    Serde serde = new Hour.HourSerde();
    Object actualDate = serde.deserialize(dateInString);
    assertEquals(expectedDate, actualDate);
}
Also used : Serde(com.yahoo.elide.core.utils.coerce.converters.Serde) Hour(com.yahoo.elide.datastores.aggregation.timegrains.Hour) Test(org.junit.jupiter.api.Test)

Aggregations

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