-
Notifications
You must be signed in to change notification settings - Fork 246
/
Exercise3Test.java
67 lines (61 loc) · 2.88 KB
/
Exercise3Test.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* Copyright (c) 2022 The Bank of New York Mellon.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.eclipse.collections.jacksonkata;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.eclipse.collections.api.factory.Lists;
import org.eclipse.collections.api.list.ImmutableList;
import org.eclipse.collections.api.list.MutableList;
import org.junit.Assert;
import org.junit.Test;
import org.junit.jupiter.api.Tag;
public class Exercise3Test
{
/**
* Follow <a href="https://github.com/eclipse/eclipse-collections/blob/master/docs/jackson.md#serializing-directly">
* Serializing directly instructions</a> to specify a proper type reference on line 42.
* Pay special attention to the text in bold.
* @throws JsonProcessingException
*/
@Test
@Tag("KATA")
public void collectionOfPetsSerialization() throws JsonProcessingException
{
MutableList<Pet> pets = Lists.mutable.of(
new Pet(PetType.CAT, "George", 1),
new Pet(PetType.DOG, "Mike", 3),
new Pet(PetType.SNAKE, "Peter", 2));
ObjectMapper objectMapper = ObjectMapperUtils.createObjectMapperWithEclipseCollectionsSupport();
String serializedPets = objectMapper.writeValueAsString(pets);
MutableList<Pet> deserializedPets = objectMapper.readValue(serializedPets, MutableList.class);
Assert.assertEquals(pets, deserializedPets);
}
/**
* Follow <a href="https://github.com/eclipse/eclipse-collections/blob/master/docs/jackson.md#serializing-directly">
* Serializing directly instructions</a> to specify a proper type reference on line 64.
* Pay special attention to the text in bold.
* @throws JsonProcessingException
*/
@Test
@Tag("KATA")
public void immutableCollectionOfPetsSerialization() throws JsonProcessingException
{
ImmutableList<Pet> pets = Lists.mutable.of(
new Pet(PetType.HAMSTER, "Jeff", 2),
new Pet(PetType.TURTLE, "Sam", 1),
new Pet(PetType.BIRD, "John", 3)).toImmutable();
ObjectMapper objectMapper = ObjectMapperUtils.createObjectMapperWithEclipseCollectionsSupport();
String serializedPets = objectMapper.writeValueAsString(pets);
ImmutableList<Pet> deserializedPets =
objectMapper.readValue(serializedPets, ImmutableList.class);
Assert.assertEquals(pets, deserializedPets);
}
}