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

http://github.com/jclouds/jclouds · Java · 82 lines · 50 code · 13 blank · 19 comment · 0 complexity · d425676c20390b7f31e11a970535a61b 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.easymock.EasyMock.createMock;
  19. import static org.easymock.EasyMock.expect;
  20. import static org.easymock.EasyMock.replay;
  21. import static org.testng.Assert.assertEquals;
  22. import java.lang.management.RuntimeMXBean;
  23. import java.util.Map;
  24. import javax.inject.Inject;
  25. import org.jclouds.chef.ChefApiMetadata;
  26. import org.jclouds.chef.config.ChefParserModule;
  27. import org.jclouds.domain.JsonBall;
  28. import org.jclouds.json.Json;
  29. import org.jclouds.json.config.GsonModule;
  30. import org.jclouds.ohai.Automatic;
  31. import org.jclouds.rest.annotations.ApiVersion;
  32. import org.testng.annotations.Test;
  33. import com.google.common.base.Supplier;
  34. import com.google.inject.AbstractModule;
  35. import com.google.inject.Guice;
  36. import com.google.inject.Injector;
  37. /**
  38. * Tests behavior of {@code JMX}
  39. */
  40. @Test(groups = { "unit" })
  41. public class JMXTest {
  42. @Test
  43. public void test() {
  44. final RuntimeMXBean runtime = createMock(RuntimeMXBean.class);
  45. expect(runtime.getUptime()).andReturn(69876000L);
  46. replay(runtime);
  47. Injector injector = Guice.createInjector(new AbstractModule() {
  48. @Override
  49. protected void configure() {
  50. bind(String.class).annotatedWith(ApiVersion.class).toInstance(ChefApiMetadata.DEFAULT_API_VERSION);
  51. }
  52. }, new ChefParserModule(), new GsonModule(), new JMXOhaiModule() {
  53. @Override
  54. protected RuntimeMXBean provideRuntimeMXBean() {
  55. return runtime;
  56. }
  57. });
  58. Json json = injector.getInstance(Json.class);
  59. Ohai ohai = injector.getInstance(Ohai.class);
  60. assertEquals(json.toJson(ohai.ohai.get().get("uptime_seconds")), "69876");
  61. }
  62. static class Ohai {
  63. private Supplier<Map<String, JsonBall>> ohai;
  64. @Inject
  65. public Ohai(@Automatic Supplier<Map<String, JsonBall>> ohai) {
  66. this.ohai = ohai;
  67. }
  68. }
  69. }