/engine-tests/src/test/java/org/terasology/rendering/nui/editor/ContextMenuUtilsTest.java

http://github.com/MovingBlocks/Terasology · Java · 95 lines · 71 code · 9 blank · 15 comment · 0 complexity · 0882a2ec845093ec5e93969c6b63a908 MD5 · raw file

  1. /*
  2. * Copyright 2016 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.rendering.nui.editor;
  17. import com.google.common.base.Charsets;
  18. import com.google.common.io.Files;
  19. import com.google.gson.JsonParser;
  20. import org.junit.jupiter.api.BeforeAll;
  21. import org.junit.jupiter.api.Test;
  22. import org.terasology.TerasologyTestingEnvironment;
  23. import org.terasology.engine.subsystem.headless.renderer.HeadlessCanvasRenderer;
  24. import org.terasology.i18n.TranslationSystem;
  25. import org.terasology.i18n.TranslationSystemImpl;
  26. import org.terasology.input.InputSystem;
  27. import org.terasology.rendering.nui.NUIManager;
  28. import org.terasology.rendering.nui.editor.layers.PlaceholderScreen;
  29. import org.terasology.rendering.nui.editor.utils.NUIEditorNodeUtils;
  30. import org.terasology.rendering.nui.internal.CanvasRenderer;
  31. import org.terasology.rendering.nui.internal.NUIManagerInternal;
  32. import org.terasology.rendering.nui.layouts.RowLayout;
  33. import org.terasology.rendering.nui.layouts.RowLayoutHint;
  34. import org.terasology.rendering.nui.layouts.relative.HorizontalInfo;
  35. import org.terasology.rendering.nui.layouts.relative.RelativeLayout;
  36. import org.terasology.rendering.nui.layouts.relative.RelativeLayoutHint;
  37. import org.terasology.rendering.nui.layouts.relative.VerticalInfo;
  38. import org.terasology.rendering.nui.widgets.UIButton;
  39. import org.terasology.rendering.nui.widgets.UILabel;
  40. import org.terasology.rendering.nui.widgets.treeView.JsonTree;
  41. import org.terasology.rendering.nui.widgets.treeView.JsonTreeConverter;
  42. import java.io.File;
  43. import java.io.IOException;
  44. import static org.junit.jupiter.api.Assertions.assertEquals;
  45. import static org.junit.jupiter.api.Assertions.fail;
  46. public class ContextMenuUtilsTest extends TerasologyTestingEnvironment {
  47. private static JsonTree inputTree;
  48. @BeforeAll
  49. public static void setupInput() {
  50. context.put(InputSystem.class, new InputSystem());
  51. context.put(TranslationSystem.class, new TranslationSystemImpl(context));
  52. context.put(CanvasRenderer.class, new HeadlessCanvasRenderer());
  53. context.put(NUIManager.class, new NUIManagerInternal(context.get(CanvasRenderer.class), context));
  54. File file = new File(ContextMenuUtilsTest.class.getClassLoader().getResource("contextMenuBuilderInput.ui").getFile());
  55. String content = null;
  56. try {
  57. content = Files.toString(file, Charsets.UTF_8);
  58. } catch (IOException e) {
  59. fail("Could not load input file");
  60. }
  61. inputTree = JsonTreeConverter.serialize(new JsonParser().parse(content));
  62. }
  63. @Test
  64. public void testNodeTypes() {
  65. JsonTree currentNode = inputTree;
  66. assertEquals(PlaceholderScreen.class, getNodeType(currentNode));
  67. currentNode = currentNode.getChildWithKey("contents");
  68. assertEquals(RelativeLayout.class, getNodeType(currentNode));
  69. currentNode = currentNode.getChildWithKey("contents");
  70. assertEquals(UIButton.class, getNodeType(currentNode.getChildAt(0)));
  71. assertEquals(RelativeLayoutHint.class, getNodeType(currentNode.getChildAt(0).getChildWithKey("layoutInfo")));
  72. assertEquals(VerticalInfo.class, getNodeType(currentNode.getChildAt(0)
  73. .getChildWithKey("layoutInfo").getChildWithKey("position-top")));
  74. assertEquals(HorizontalInfo.class, getNodeType(currentNode.getChildAt(0)
  75. .getChildWithKey("layoutInfo").getChildWithKey("position-horizontal-center")));
  76. currentNode = currentNode.getChildAt(1);
  77. assertEquals(RowLayout.class, getNodeType(currentNode));
  78. assertEquals(RelativeLayoutHint.class, getNodeType(currentNode.getChildWithKey("layoutInfo")));
  79. currentNode = currentNode.getChildWithKey("contents").getChildAt(0);
  80. assertEquals(UILabel.class, getNodeType(currentNode));
  81. assertEquals(RowLayoutHint.class, getNodeType(currentNode.getChildWithKey("layoutInfo")));
  82. }
  83. private Class getNodeType(JsonTree node) {
  84. return NUIEditorNodeUtils.getNodeInfo(node, context.get(NUIManager.class)).getNodeClass();
  85. }
  86. }