/apis/chef/src/test/java/org/jclouds/ohai/functions/NestSlashKeysTest.java

http://github.com/jclouds/jclouds · Java · 117 lines · 84 code · 14 blank · 19 comment · 0 complexity · fb522ce4c5e292022220bc4e4b3fa990 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.jclouds.ohai.functions;
  18. import static org.testng.Assert.assertEquals;
  19. import java.io.IOException;
  20. import org.jclouds.chef.ChefApiMetadata;
  21. import org.jclouds.chef.config.ChefParserModule;
  22. import org.jclouds.domain.JsonBall;
  23. import org.jclouds.json.Json;
  24. import org.jclouds.json.config.GsonModule;
  25. import org.jclouds.rest.annotations.ApiVersion;
  26. import org.testng.annotations.BeforeTest;
  27. import org.testng.annotations.Test;
  28. import com.google.common.base.Supplier;
  29. import com.google.common.base.Suppliers;
  30. import com.google.common.collect.ImmutableListMultimap;
  31. import com.google.inject.AbstractModule;
  32. import com.google.inject.Guice;
  33. import com.google.inject.Injector;
  34. /**
  35. * Tests behavior of {@code NestSlashKeys}
  36. */
  37. @Test(groups = "unit", testName = "NestSlashKeysTest")
  38. public class NestSlashKeysTest {
  39. private NestSlashKeys converter;
  40. private Json json;
  41. @BeforeTest
  42. protected void setUpInjector() throws IOException {
  43. Injector injector = Guice.createInjector(new AbstractModule() {
  44. @Override
  45. protected void configure() {
  46. bind(String.class).annotatedWith(ApiVersion.class).toInstance(ChefApiMetadata.DEFAULT_API_VERSION);
  47. }
  48. }, new ChefParserModule(), new GsonModule());
  49. converter = injector.getInstance(NestSlashKeys.class);
  50. json = injector.getInstance(Json.class);
  51. }
  52. @Test
  53. public void testBase() {
  54. assertEquals(
  55. json.toJson(converter.apply(ImmutableListMultimap.<String, Supplier<JsonBall>> of("java",
  56. Suppliers.ofInstance(new JsonBall("java"))))), "{\"java\":\"java\"}");
  57. }
  58. @Test(expectedExceptions = IllegalArgumentException.class)
  59. public void testIllegal() {
  60. json.toJson(converter.apply(ImmutableListMultimap.<String, Supplier<JsonBall>> of("java",
  61. Suppliers.ofInstance(new JsonBall("java")), "java/system", Suppliers.ofInstance(new JsonBall("system")))));
  62. }
  63. @Test
  64. public void testOne() {
  65. assertEquals(
  66. json.toJson(converter.apply(ImmutableListMultimap.<String, Supplier<JsonBall>> of("java",
  67. Suppliers.ofInstance(new JsonBall("{\"time\":\"time\"}")), "java/system",
  68. Suppliers.ofInstance(new JsonBall("system"))))),
  69. "{\"java\":{\"time\":\"time\",\"system\":\"system\"}}");
  70. }
  71. @Test
  72. public void testOneDuplicate() {
  73. assertEquals(
  74. json.toJson(converter.apply(ImmutableListMultimap.<String, Supplier<JsonBall>> of("java",
  75. Suppliers.ofInstance(new JsonBall("{\"time\":\"time\"}")), "java",
  76. Suppliers.ofInstance(new JsonBall("{\"system\":\"system\"}"))))),
  77. "{\"java\":{\"time\":\"time\",\"system\":\"system\"}}");
  78. }
  79. @Test
  80. public void testMerge() {
  81. assertEquals(
  82. json.toJson(converter.apply(ImmutableListMultimap.<String, Supplier<JsonBall>> of("java",
  83. Suppliers.ofInstance(new JsonBall("{\"time\":{\"1\":\"hello\"}}")), "java/time",
  84. Suppliers.ofInstance(new JsonBall("{\"2\":\"goodbye\"}"))))),
  85. "{\"java\":{\"time\":{\"1\":\"hello\",\"2\":\"goodbye\"}}}");
  86. }
  87. @Test
  88. public void testMergeNestedTwice() {
  89. assertEquals(
  90. json.toJson(converter.apply(ImmutableListMultimap.<String, Supplier<JsonBall>> of("java",
  91. Suppliers.ofInstance(new JsonBall("{\"time\":{\"1\":\"hello\"}}")), "java",
  92. Suppliers.ofInstance(new JsonBall("{\"time\":{\"2\":\"goodbye\"}}"))))),
  93. "{\"java\":{\"time\":{\"1\":\"hello\",\"2\":\"goodbye\"}}}");
  94. }
  95. @Test
  96. public void testReplaceList() {
  97. assertEquals(
  98. json.toJson(converter.apply(ImmutableListMultimap.<String, Supplier<JsonBall>> of("java",
  99. Suppliers.ofInstance(new JsonBall("{\"time\":{\"1\":[\"hello\"]}}")), "java/time",
  100. Suppliers.ofInstance(new JsonBall("{\"1\":[\"goodbye\"]}"))))),
  101. "{\"java\":{\"time\":{\"1\":[\"goodbye\"]}}}");
  102. }
  103. }