/apis/chef/src/test/java/org/jclouds/chef/functions/BootstrapConfigForGroupTest.java

http://github.com/jclouds/jclouds · Java · 92 lines · 58 code · 18 blank · 16 comment · 0 complexity · 8d3e2b1600ab29b9e6a0e01420157202 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.chef.functions;
  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.easymock.EasyMock.verify;
  22. import static org.testng.Assert.assertEquals;
  23. import java.io.IOException;
  24. import org.jclouds.chef.ChefApi;
  25. import org.jclouds.chef.domain.BootstrapConfig;
  26. import org.jclouds.chef.domain.Client;
  27. import org.jclouds.chef.domain.DatabagItem;
  28. import org.jclouds.chef.domain.BootstrapConfig.SSLVerifyMode;
  29. import org.jclouds.json.Json;
  30. import org.jclouds.json.config.GsonModule;
  31. import org.testng.annotations.BeforeClass;
  32. import org.testng.annotations.Test;
  33. import com.google.inject.Guice;
  34. import com.google.inject.Injector;
  35. @Test(groups = "unit", testName = "BootstrapConfigForGroupTest")
  36. public class BootstrapConfigForGroupTest {
  37. private Json json;
  38. @BeforeClass
  39. public void setup() {
  40. Injector injector = Guice.createInjector(new GsonModule());
  41. json = injector.getInstance(Json.class);
  42. }
  43. @Test(expectedExceptions = IllegalStateException.class)
  44. public void testWhenNoDatabagItem() throws IOException {
  45. ChefApi chefApi = createMock(ChefApi.class);
  46. Client client = createMock(Client.class);
  47. BootstrapConfigForGroup fn = new BootstrapConfigForGroup("jclouds", chefApi, json);
  48. expect(chefApi.getDatabagItem("jclouds", "foo")).andReturn(null);
  49. replay(client, chefApi);
  50. fn.apply("foo");
  51. verify(client, chefApi);
  52. }
  53. @Test
  54. public void testReturnsItem() throws IOException {
  55. ChefApi chefApi = createMock(ChefApi.class);
  56. Client client = createMock(Client.class);
  57. BootstrapConfigForGroup fn = new BootstrapConfigForGroup("jclouds", chefApi, json);
  58. DatabagItem databag = new DatabagItem("foo",
  59. "{\"environment\":\"development\",\"ssl_ca_file\":\"/etc/certs/chef-server.crt\","
  60. + "\"ssl_verify_mode\": \":verify_peer\","
  61. + "\"run_list\":[\"recipe[apache2]\",\"role[webserver]\"],"
  62. + "\"attributes\":{\"tomcat6\":{\"ssl_port\":8433}}}");
  63. expect(chefApi.getDatabagItem("jclouds", "foo")).andReturn(databag);
  64. replay(client, chefApi);
  65. BootstrapConfig config = fn.apply("foo");
  66. assertEquals(config.getEnvironment(), "development");
  67. assertEquals(config.getSslCAFile(), "/etc/certs/chef-server.crt");
  68. assertEquals(config.getSslVerifyMode(), SSLVerifyMode.PEER);
  69. assertEquals(config.getRunList().get(0), "recipe[apache2]");
  70. assertEquals(config.getRunList().get(1), "role[webserver]");
  71. assertEquals(config.getAttributes().toString(), "{\"tomcat6\":{\"ssl_port\":8433}}");
  72. verify(client, chefApi);
  73. }
  74. }