/engine-tests/src/test/java/org/terasology/config/flexible/AutoConfigSerializerTest.java

http://github.com/MovingBlocks/Terasology · Java · 80 lines · 50 code · 15 blank · 15 comment · 0 complexity · 2f347f9cd78872cfa4efa2c9dada37c8 MD5 · raw file

  1. /*
  2. * Copyright 2019 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.config.flexible;
  17. import com.google.common.collect.ImmutableList;
  18. import com.google.gson.Gson;
  19. import com.google.gson.JsonElement;
  20. import org.junit.jupiter.api.BeforeEach;
  21. import org.junit.jupiter.api.Test;
  22. import org.reflections.Reflections;
  23. import org.terasology.persistence.typeHandling.TypeHandlerLibrary;
  24. import static org.junit.jupiter.api.Assertions.assertEquals;
  25. import static org.mockito.Mockito.mock;
  26. public class AutoConfigSerializerTest {
  27. private static final String NON_DEFAULT_JSON = "{\"integerListSetting\":[1,2,3],\"Human Readable Name\":\"xyz\"}";
  28. private static final String DEFAULT_JSON = "{}";
  29. private final Gson gson = new Gson();
  30. private final TestAutoConfig config = new TestAutoConfig();
  31. private AutoConfigSerializer<TestAutoConfig> autoConfigSerializer;
  32. @BeforeEach
  33. public void setup() {
  34. TypeHandlerLibrary library = TypeHandlerLibrary.withReflections(mock(Reflections.class));
  35. autoConfigSerializer = new AutoConfigSerializer<>(TestAutoConfig.class, library);
  36. }
  37. @Test
  38. public void testSerializeAllDefault() {
  39. assertEquals(DEFAULT_JSON, serialize());
  40. }
  41. @Test
  42. public void testSerializeNonDefault() {
  43. config.integerListSetting.set(ImmutableList.of(1, 2, 3));
  44. config.stringSetting.set("xyz");
  45. assertEquals(NON_DEFAULT_JSON, serialize());
  46. }
  47. private String serialize() {
  48. return gson.toJson(autoConfigSerializer.serialize(config));
  49. }
  50. @Test
  51. public void testDeserializeAllDefault() {
  52. deserializeOnto(DEFAULT_JSON);
  53. assertEquals(config.stringSetting.getDefaultValue(), config.stringSetting.get());
  54. assertEquals(config.integerListSetting.getDefaultValue(), config.integerListSetting.get());
  55. }
  56. @Test
  57. public void testDeserializeNonDefault() {
  58. deserializeOnto(NON_DEFAULT_JSON);
  59. assertEquals("xyz", config.stringSetting.get());
  60. assertEquals(ImmutableList.of(1, 2, 3), config.integerListSetting.get());
  61. }
  62. private void deserializeOnto(String json) {
  63. autoConfigSerializer.deserializeOnto(config, gson.fromJson(json, JsonElement.class));
  64. }
  65. }