/servlet/src/test/java/org/jclouds/chef/servlet/suppliers/ServletContextInfoSupplierTest.java

http://github.com/jclouds/jclouds-chef · Java · 156 lines · 103 code · 31 blank · 22 comment · 0 complexity · 99e08a54b8b241d981cd3ad718046bbd 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.chef.servlet.suppliers;
  20. import static org.easymock.EasyMock.expect;
  21. import static org.easymock.classextension.EasyMock.createMock;
  22. import static org.easymock.classextension.EasyMock.replay;
  23. import static org.testng.Assert.assertEquals;
  24. import java.util.Properties;
  25. import javax.servlet.ServletContext;
  26. import org.jclouds.chef.servlet.functions.InitParamsToProperties;
  27. import org.jclouds.json.Json;
  28. import org.jclouds.json.config.GsonModule;
  29. import org.jclouds.ohai.servlet.config.ServletOhaiModule;
  30. import org.jclouds.ohai.servlet.suppliers.ServletContextInfoSupplier;
  31. import org.testng.annotations.Test;
  32. import com.google.inject.Guice;
  33. import com.google.inject.Injector;
  34. import com.google.inject.Provides;
  35. /**
  36. *
  37. * @author Adrian Cole
  38. */
  39. @Test(groups = { "unit" })
  40. public class ServletContextInfoSupplierTest {
  41. @Test
  42. public void testApply() {
  43. final ServletContext servletContext = createMock(ServletContext.class);
  44. final InitParamsToProperties converter = createMock(InitParamsToProperties.class);
  45. Properties props = new Properties();
  46. props.setProperty("foo", "bar");
  47. expect(servletContext.getContextPath()).andReturn("path");
  48. expect(servletContext.getServerInfo()).andReturn("serverinfo");
  49. expect(converter.apply(servletContext)).andReturn(props);
  50. replay(servletContext);
  51. replay(converter);
  52. Injector injector = Guice.createInjector(new GsonModule(), new ServletOhaiModule() {
  53. @SuppressWarnings("unused")
  54. @Provides
  55. protected ServletContext provideServletContext() {
  56. return servletContext;
  57. }
  58. @SuppressWarnings("unused")
  59. @Provides
  60. protected InitParamsToProperties provideInitParamsToProperties() {
  61. return converter;
  62. }
  63. });
  64. Json json = injector.getInstance(Json.class);
  65. ServletContextInfoSupplier ohai = injector.getInstance(ServletContextInfoSupplier.class);
  66. assertEquals(json.toJson(ohai.get()),
  67. "{\"path\":{\"server_info\":\"serverinfo\",\"init_params\":{\"foo\":\"bar\"}}}");
  68. }
  69. @Test
  70. public void testApplyNullPath() {
  71. final ServletContext servletContext = createMock(ServletContext.class);
  72. final InitParamsToProperties converter = createMock(InitParamsToProperties.class);
  73. Properties props = new Properties();
  74. props.setProperty("foo", "bar");
  75. expect(servletContext.getContextPath()).andReturn(null);
  76. expect(servletContext.getServerInfo()).andReturn("serverinfo");
  77. expect(converter.apply(servletContext)).andReturn(props);
  78. replay(servletContext);
  79. replay(converter);
  80. Injector injector = Guice.createInjector(new GsonModule(), new ServletOhaiModule() {
  81. @SuppressWarnings("unused")
  82. @Provides
  83. protected ServletContext provideServletContext() {
  84. return servletContext;
  85. }
  86. @SuppressWarnings("unused")
  87. @Provides
  88. protected InitParamsToProperties provideInitParamsToProperties() {
  89. return converter;
  90. }
  91. });
  92. Json json = injector.getInstance(Json.class);
  93. ServletContextInfoSupplier ohai = injector.getInstance(ServletContextInfoSupplier.class);
  94. assertEquals(json.toJson(ohai.get()),
  95. "{\"/\":{\"server_info\":\"serverinfo\",\"init_params\":{\"foo\":\"bar\"}}}");
  96. }
  97. @Test
  98. public void testApplyEmptyPath() {
  99. final ServletContext servletContext = createMock(ServletContext.class);
  100. final InitParamsToProperties converter = createMock(InitParamsToProperties.class);
  101. Properties props = new Properties();
  102. props.setProperty("foo", "bar");
  103. expect(servletContext.getContextPath()).andReturn("");
  104. expect(servletContext.getServerInfo()).andReturn("serverinfo");
  105. expect(converter.apply(servletContext)).andReturn(props);
  106. replay(servletContext);
  107. replay(converter);
  108. Injector injector = Guice.createInjector(new GsonModule(), new ServletOhaiModule() {
  109. @SuppressWarnings("unused")
  110. @Provides
  111. protected ServletContext provideServletContext() {
  112. return servletContext;
  113. }
  114. @SuppressWarnings("unused")
  115. @Provides
  116. protected InitParamsToProperties provideInitParamsToProperties() {
  117. return converter;
  118. }
  119. });
  120. Json json = injector.getInstance(Json.class);
  121. ServletContextInfoSupplier ohai = injector.getInstance(ServletContextInfoSupplier.class);
  122. assertEquals(json.toJson(ohai.get()),
  123. "{\"/\":{\"server_info\":\"serverinfo\",\"init_params\":{\"foo\":\"bar\"}}}");
  124. }
  125. }