use of com.yahoo.elide.datastores.aggregation.timegrains.Quarter in project elide by yahoo.
the class QuarterSerdeTest method testDeserializeTimestampNotQuarterMonth.
@Test
public void testDeserializeTimestampNotQuarterMonth() {
LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(02), 01, 00, 00, 00);
Quarter quarter = new Quarter(localDate);
Serde serde = new Quarter.QuarterSerde();
assertThrows(IllegalArgumentException.class, () -> serde.deserialize(quarter));
}
use of com.yahoo.elide.datastores.aggregation.timegrains.Quarter in project elide by yahoo.
the class QuarterSerdeTest method testDateDeserialize.
@Test
public void testDateDeserialize() {
LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(01), 01, 00, 00, 00);
Quarter expectedDate = new Quarter(localDate);
Serde serde = new Quarter.QuarterSerde();
Object actualDate = serde.deserialize("2020-01");
assertEquals(expectedDate, actualDate);
}
use of com.yahoo.elide.datastores.aggregation.timegrains.Quarter in project elide by yahoo.
the class QuarterSerdeTest method testDeserializeOffsetDateTime.
@Test
public void testDeserializeOffsetDateTime() {
LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(01), 01, 00, 00, 00);
Quarter expectedDate = new Quarter(localDate);
OffsetDateTime dateTime = OffsetDateTime.of(2020, 1, 1, 0, 0, 0, 0, ZoneOffset.UTC);
Serde serde = new Quarter.QuarterSerde();
Object actualDate = serde.deserialize(dateTime);
assertEquals(expectedDate, actualDate);
}
use of com.yahoo.elide.datastores.aggregation.timegrains.Quarter in project elide by yahoo.
the class QuarterSerdeTest method testDeserializeTimestamp.
@Test
public void testDeserializeTimestamp() {
LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(01), 01, 00, 00, 00);
Quarter expectedDate = new Quarter(localDate);
Timestamp timestamp = new Timestamp(expectedDate.getTime());
Serde serde = new Quarter.QuarterSerde();
Object actualDate = serde.deserialize(timestamp);
assertEquals(expectedDate, actualDate);
}
use of com.yahoo.elide.datastores.aggregation.timegrains.Quarter in project elide by yahoo.
the class QuarterSerdeTest method testDateSerialize.
@Test
public void testDateSerialize() {
LocalDateTime localDate = LocalDateTime.of(2020, java.time.Month.of(01), 01, 00, 00, 00);
Quarter expectedDate = new Quarter(localDate);
Serde serde = new Quarter.QuarterSerde();
Object actual = serde.serialize(expectedDate);
assertEquals("2020-01", actual);
}
Aggregations