TestPeriodSerialization.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.old;
import java.time.Period;
import java.time.temporal.TemporalAmount;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import com.fasterxml.jackson.databind.ObjectMapper;
import static org.junit.jupiter.api.Assertions.*;
public class TestPeriodSerialization extends ModuleTestBase
{
private ObjectMapper mapper;
@BeforeEach
public void setUp()
{
this.mapper = newMapper();
}
@Test
public void testSerialization01() throws Exception
{
Period period = Period.of(1, 6, 15);
String value = this.mapper.writeValueAsString(period);
assertNotNull(value);
assertEquals('"' + period.toString() + '"', value);
}
@Test
public void testSerialization02() throws Exception
{
Period period = Period.of(0, 0, 21);
String value = this.mapper.writeValueAsString(period);
assertNotNull(value);
assertEquals('"' + period.toString() + '"', value);
}
@Test
public void testSerializationWithTypeInfo01() throws Exception
{
Period period = Period.of(5, 1, 12);
this.mapper.addMixIn(TemporalAmount.class, MockObjectConfiguration.class);
String value = this.mapper.writeValueAsString(period);
assertNotNull(value);
assertEquals("[\"" + Period.class.getName() + "\",\"" + period.toString() + "\"]", value);
}
@Test
public void testDeserialization01() throws Exception
{
Period period = Period.of(1, 6, 15);
Period value = this.mapper.readValue('"' + period.toString() + '"', Period.class);
assertNotNull(value);
assertEquals(period, value);
}
@Test
public void testDeserialization02() throws Exception
{
Period period = Period.of(0, 0, 21);
Period value = this.mapper.readValue('"' + period.toString() + '"', Period.class);
assertNotNull(value);
assertEquals(period, value);
}
@Test
public void testDeserializationWithTypeInfo01() throws Exception
{
Period period = Period.of(5, 1, 12);
this.mapper.addMixIn(TemporalAmount.class, MockObjectConfiguration.class);
TemporalAmount value = this.mapper.readValue(
"[\"" + Period.class.getName() + "\",\"" + period.toString() + "\"]", TemporalAmount.class
);
assertNotNull(value);
assertInstanceOf(Period.class, value, "The value should be a Period.");
assertEquals(period, value);
}
}