/engine-tests/src/test/java/org/terasology/persistence/typeHandling/gson/GsonTypeHandlerAdapterTest.java

http://github.com/MovingBlocks/Terasology · Java · 87 lines · 46 code · 14 blank · 27 comment · 7 complexity · 1d4ebedfc081d73f0b2641d0d5d04fdf MD5 · raw file

  1. /*
  2. * Copyright 2018 MovingBlocks
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.terasology.persistence.typeHandling.gson;
  17. import com.google.gson.Gson;
  18. import com.google.gson.stream.JsonReader;
  19. import com.google.gson.stream.JsonWriter;
  20. import org.junit.jupiter.api.Test;
  21. import org.terasology.persistence.typeHandling.extensionTypes.ColorTypeHandler;
  22. import org.terasology.rendering.nui.Color;
  23. import java.util.Objects;
  24. import static org.junit.jupiter.api.Assertions.assertEquals;
  25. public class GsonTypeHandlerAdapterTest {
  26. private static final String OBJECT_JSON_ARRAY = "{\"color\":[222,173,190,239],\"i\":-123}";
  27. private static final String OBJECT_JSON_HEX = "{\"color\":DEADBEEF,\"i\":-123}";
  28. private static final TestClass OBJECT = new TestClass(new Color(0xDEADBEEF), -123);
  29. private final Gson gson = GsonBuilderFactory.createGsonBuilderWithTypeHandlers(
  30. TypeHandlerEntry.of(Color.class, new ColorTypeHandler())
  31. )
  32. .create();
  33. /**
  34. * {@link GsonTypeHandlerAdapter#read(JsonReader)} is tested by deserializing an object from JSON
  35. * via Gson with a registered {@link GsonTypeHandlerAdapterFactory} which creates instances of
  36. * {@link GsonTypeHandlerAdapter}.
  37. */
  38. @Test
  39. public void testRead() {
  40. // Deserialize object with color as JSON array
  41. TestClass deserializedObject = gson.fromJson(OBJECT_JSON_ARRAY, TestClass.class);
  42. assertEquals(OBJECT, deserializedObject);
  43. // Deserialize object with color as hex string
  44. deserializedObject = gson.fromJson(OBJECT_JSON_HEX, TestClass.class);
  45. assertEquals(OBJECT, deserializedObject);
  46. }
  47. /**
  48. * {@link GsonTypeHandlerAdapter#write(JsonWriter, Object)} is tested by serializing an object to JSON
  49. * via Gson with a registered {@link GsonTypeHandlerAdapterFactory} which creates instances of
  50. * {@link GsonTypeHandlerAdapter}.
  51. */
  52. @Test
  53. public void testWrite() {
  54. String serializedObject = gson.toJson(OBJECT);
  55. assertEquals(OBJECT_JSON_ARRAY, serializedObject);
  56. }
  57. private static class TestClass {
  58. private final Color color;
  59. private final int i;
  60. private TestClass(Color color, int i) {
  61. this.color = color;
  62. this.i = i;
  63. }
  64. @Override
  65. public boolean equals(Object o) {
  66. if (this == o) return true;
  67. if (o == null || getClass() != o.getClass()) return false;
  68. TestClass testClass = (TestClass) o;
  69. return i == testClass.i &&
  70. Objects.equals(color, testClass.color);
  71. }
  72. }
  73. }