InstantSerTest.java
/*
* Copyright 2013 FasterXML.com
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the license for the specific language governing permissions and
* limitations under the license.
*/
package com.fasterxml.jackson.datatype.jsr310.ser;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.datatype.jsr310.DecimalUtils;
import com.fasterxml.jackson.datatype.jsr310.MockObjectConfiguration;
import com.fasterxml.jackson.datatype.jsr310.ModuleTestBase;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
import java.time.temporal.Temporal;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class InstantSerTest extends ModuleTestBase
{
private static final DateTimeFormatter FORMATTER = DateTimeFormatter.ISO_INSTANT;
private final ObjectMapper MAPPER = newMapper();
@Test
public void testSerializationAsTimestamp01Nanoseconds() throws Exception
{
Instant date = Instant.ofEpochSecond(0L);
String value = MAPPER.writer()
.with(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.with(SerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS)
.writeValueAsString(date);
assertNotNull(value);
assertEquals(NO_NANOSECS_SER, value);
}
@Test
public void testSerializationAsTimestamp01Milliseconds() throws Exception
{
Instant date = Instant.ofEpochSecond(0L);
String value = MAPPER.writer()
.with(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.without(SerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS)
.writeValueAsString(date);
assertEquals("0", value);
}
@Test
public void testSerializationAsTimestamp02Nanoseconds() throws Exception
{
Instant date = Instant.ofEpochSecond(123456789L, 183917322);
String value = MAPPER.writer()
.with(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.with(SerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS)
.writeValueAsString(date);
assertEquals("123456789.183917322", value);
}
@Test
public void testSerializationAsTimestamp02Milliseconds() throws Exception
{
Instant date = Instant.ofEpochSecond(123456789L, 183917322);
String value = MAPPER.writer()
.with(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.without(SerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS)
.writeValueAsString(date);
assertEquals("123456789183", value);
}
@Test
public void testSerializationAsTimestamp03Nanoseconds() throws Exception
{
Instant date = Instant.now();
String value = MAPPER.writer()
.with(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.with(SerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS)
.writeValueAsString(date);
assertEquals(DecimalUtils.toDecimal(date.getEpochSecond(), date.getNano()), value);
}
@Test
public void testSerializationAsTimestamp03Milliseconds() throws Exception
{
Instant date = Instant.now();
String value = MAPPER.writer()
.with(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.without(SerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS)
.writeValueAsString(date);
assertEquals(Long.toString(date.toEpochMilli()), value);
}
@Test
public void testSerializationAsString01() throws Exception
{
Instant date = Instant.ofEpochSecond(0L);
String value = MAPPER.writer()
.without(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.writeValueAsString(date);
assertEquals('"' + FORMATTER.format(date) + '"', value);
}
@Test
public void testSerializationAsString02() throws Exception
{
Instant date = Instant.ofEpochSecond(123456789L, 183917322);
String value = MAPPER.writer()
.without(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.writeValueAsString(date);
assertEquals('"' + FORMATTER.format(date) + '"', value);
}
@Test
public void testSerializationAsString03() throws Exception
{
Instant date = Instant.now();
String value = MAPPER.writer()
.without(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.writeValueAsString(date);
assertEquals('"' + FORMATTER.format(date) + '"', value);
}
@Test
public void testSerializationWithTypeInfo01() throws Exception
{
Instant date = Instant.ofEpochSecond(123456789L, 183917322);
ObjectMapper m = newMapper()
.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, true)
.configure(SerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS, true);
m.addMixIn(Temporal.class, MockObjectConfiguration.class);
String value = m.writeValueAsString(date);
assertEquals("[\"" + Instant.class.getName() + "\",123456789.183917322]", value);
}
@Test
public void testSerializationWithTypeInfo02() throws Exception
{
Instant date = Instant.ofEpochSecond(123456789L, 183917322);
ObjectMapper m = newMapper()
.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, true)
.configure(SerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS, false);
m.addMixIn(Temporal.class, MockObjectConfiguration.class);
String value = m.writeValueAsString(date);
assertEquals("[\"" + Instant.class.getName() + "\",123456789183]", value);
}
@Test
public void testSerializationWithTypeInfo03() throws Exception
{
Instant date = Instant.now();
ObjectMapper m = newMapper()
.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
m.addMixIn(Temporal.class, MockObjectConfiguration.class);
String value = m.writeValueAsString(date);
assertEquals("[\"" + Instant.class.getName() + "\",\"" + FORMATTER.format(date) + "\"]", value);
}
static class Pojo1 {
@JsonFormat(shape = JsonFormat.Shape.NUMBER_INT)
public Instant t1 = Instant.parse("2022-04-27T12:00:00Z");
public Instant t2 = t1;
}
@Test
public void testShapeInt() throws JsonProcessingException {
String json1 = newMapper().writeValueAsString(new Pojo1());
assertEquals("{\"t1\":1651060800000,\"t2\":1651060800.000000000}", json1);
}
}