/apis/chef/src/test/java/org/jclouds/ohai/config/OhaiModuleTest.java

http://github.com/jclouds/jclouds · Java · 147 lines · 102 code · 26 blank · 19 comment · 0 complexity · 0bdacfb269a35dd9ab5695b76e003873 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.config;
  18. import static org.jclouds.chef.util.ChefUtils.ohaiAutomaticAttributeBinder;
  19. import static org.testng.Assert.assertEquals;
  20. import java.net.SocketException;
  21. import java.util.Map;
  22. import java.util.Properties;
  23. import javax.inject.Inject;
  24. import org.jclouds.chef.ChefApiMetadata;
  25. import org.jclouds.chef.config.ChefParserModule;
  26. import org.jclouds.domain.JsonBall;
  27. import org.jclouds.json.Json;
  28. import org.jclouds.json.config.GsonModule;
  29. import org.jclouds.ohai.Automatic;
  30. import org.jclouds.rest.annotations.ApiVersion;
  31. import org.testng.annotations.Test;
  32. import com.google.common.base.Supplier;
  33. import com.google.common.base.Suppliers;
  34. import com.google.inject.AbstractModule;
  35. import com.google.inject.Guice;
  36. import com.google.inject.Injector;
  37. import com.google.inject.TypeLiteral;
  38. import com.google.inject.multibindings.MapBinder;
  39. import com.google.inject.util.Providers;
  40. /**
  41. * Tests behavior of {@code OhaiModule}
  42. */
  43. @Test(groups = { "unit" })
  44. public class OhaiModuleTest {
  45. @Test
  46. public void test() throws SocketException {
  47. final Properties sysProperties = new Properties();
  48. sysProperties.setProperty("os.name", "Mac OS X");
  49. sysProperties.setProperty("os.version", "10.3.0");
  50. sysProperties.setProperty("user.name", "user");
  51. Injector injector = Guice.createInjector(new AbstractModule() {
  52. @Override
  53. protected void configure() {
  54. bind(String.class).annotatedWith(ApiVersion.class).toInstance(ChefApiMetadata.DEFAULT_API_VERSION);
  55. }
  56. }, new ChefParserModule(), new GsonModule(), new OhaiModule() {
  57. @Override
  58. protected Long millis() {
  59. return 127999291932529L;
  60. }
  61. @Override
  62. protected Properties systemProperties() {
  63. return sysProperties;
  64. }
  65. });
  66. Ohai ohai = injector.getInstance(Ohai.class);
  67. Json json = injector.getInstance(Json.class);
  68. assertEquals(
  69. json.toJson(ohai.ohai.get(), new TypeLiteral<Map<String, JsonBall>>() {
  70. }.getType()),
  71. "{\"ohai_time\":127999291932529,\"platform\":\"macosx\",\"platform_version\":\"10.3.0\",\"current_user\":\"user\",\"jvm\":{\"system\":{\"user.name\":\"user\",\"os.version\":\"10.3.0\",\"os.name\":\"Mac OS X\"}}}");
  72. }
  73. public void test2modules() throws SocketException {
  74. final Properties sysProperties = new Properties();
  75. sysProperties.setProperty("os.name", "Mac OS X");
  76. sysProperties.setProperty("os.version", "10.3.0");
  77. sysProperties.setProperty("user.name", "user");
  78. Injector injector = Guice.createInjector(new AbstractModule() {
  79. @Override
  80. protected void configure() {
  81. bind(String.class).annotatedWith(ApiVersion.class).toInstance(ChefApiMetadata.DEFAULT_API_VERSION);
  82. }
  83. }, new ChefParserModule(), new GsonModule(), new OhaiModule() {
  84. @Override
  85. protected Long millis() {
  86. return 1279992919L;
  87. }
  88. @Override
  89. protected Properties systemProperties() {
  90. return sysProperties;
  91. }
  92. }, new AbstractModule() {
  93. @Override
  94. protected void configure() {
  95. MapBinder<String, Supplier<JsonBall>> mapbinder = ohaiAutomaticAttributeBinder(binder());
  96. mapbinder.addBinding("test").toProvider(
  97. Providers.of(Suppliers.ofInstance(new JsonBall("{\"prop1\":\"test1\"}"))));
  98. }
  99. }, new AbstractModule() {
  100. @Override
  101. protected void configure() {
  102. MapBinder<String, Supplier<JsonBall>> mapbinder = ohaiAutomaticAttributeBinder(binder());
  103. mapbinder.addBinding("test").toProvider(
  104. Providers.of(Suppliers.ofInstance(new JsonBall("{\"prop2\":\"test2\"}"))));
  105. }
  106. });
  107. Ohai ohai = injector.getInstance(Ohai.class);
  108. Json json = injector.getInstance(Json.class);
  109. assertEquals(
  110. json.toJson(ohai.ohai.get(), new TypeLiteral<Map<String, JsonBall>>() {
  111. }.getType()),
  112. "{\"ohai_time\":1279992919,\"platform\":\"macosx\",\"platform_version\":\"10.3.0\",\"current_user\":\"user\",\"test\":{\"prop1\":\"test1\",\"prop2\":\"test2\"},\"jvm\":{\"system\":{\"user.name\":\"user\",\"os.version\":\"10.3.0\",\"os.name\":\"Mac OS X\"}}}");
  113. }
  114. static class Ohai {
  115. private Supplier<Map<String, JsonBall>> ohai;
  116. @Inject
  117. public Ohai(@Automatic Supplier<Map<String, JsonBall>> ohai) {
  118. this.ohai = ohai;
  119. }
  120. }
  121. }