/core/src/test/java/org/jclouds/ohai/functions/NestSlashKeysTest.java

http://github.com/jclouds/jclouds-chef · Java · 101 lines · 65 code · 13 blank · 23 comment · 0 complexity · 150b3296703b6a74340dfe4d0d2e2459 MD5 · raw file

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