简体   繁体   中英

Unit tests for a custom Date Serializer

I have recently started writing tests in Java and I am having some problem with the tests for the following class. How to write correctly tests for TestDateTimeSerializer class in such a form.

public class TestDateTimeSerializer extends JsonSerializer<LocalDateTime> {
    public static final DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");

    @Override
    public void serialize(LocalDateTime dt, JsonGenerator gen, SerializerProvider serializerProvider) throws IOException {
        if (dt == null) {
            gen.writeNull();
        } else {
            gen.writeString(dt.format(FORMATTER));
        }
    }
}

this class is used here

@Data
@JsonIgnoreProperties(ignoreUnknown = true) 
@JsonFormat(with = JsonFormat.Feature.ACCEPT_CASE_INSENSITIVE_PROPERTIES)
public class TestRequest implements ITestResponse {
    @JsonProperty("TestID")
    private Long testID;
    @JsonSerialize(using = TestDateTimeSerializer.class)
    private LocalDateTime lastUpdateDate;
}

Make JsonGenerator as mock object, then verify its method call.

@ExtendWith(MockitoExtension.class)
class TestDateTimeSerializerTest {
    @Mock
    JsonGenerator generator;       // JsonGenerator is mock
    @Mock
    SerializerProvider provider;

    @Test
    void test() throws IOException {
        TestDateTimeSerializer serializer = new TestDateTimeSerializer();
        LocalDateTime now = LocalDateTime.now();
        
        // run your method
        serializer.serialize(now, generator, provider);

        // assert mocked generator's method call
        verify(generator).writeString(ArgumentMatchers.anyString());
    }
}

Mockito API doc : https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html#1

you can find more example and usage.

Please try this:

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.module.SimpleModule;
import org.junit.Before;
import org.junit.Test;

import java.time.LocalDateTime;

import static java.time.format.DateTimeFormatter.ISO_LOCAL_DATE_TIME;
import static org.junit.Assert.*;

public class TestDateTimeSerializerSerializerTest {

        private ObjectMapper mapper;
        protected TestDateTimeSerializer serializer;

        @Before
        public void setup() {
            mapper = new ObjectMapper();
            serializer = new TestDateTimeSerializer();

            SimpleModule module = new SimpleModule();
            module.addSerializer(LocalDateTime.class, serializer);
            mapper.registerModule(module);
        }

        @Test
        public void testSerializeNonNull() throws JsonProcessingException {
            LocalDateTime ldt = LocalDateTime.parse("2016-10-06T10:40:21.124", ISO_LOCAL_DATE_TIME);

            String serialized = mapper.writeValueAsString(ldt);

            assertEquals("equal strings", "\"2016-10-06T10:40:21.124Z\"", serialized);
        }

        @Test
        public void testSerializeNull() throws JsonProcessingException {
            LocalDateTime ldt = null;

            String serialized = mapper.writeValueAsString(ldt);

            assertEquals("equal strings", "null", serialized);
        }

    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM