/core/src/test/java/org/jclouds/chef/functions/TagToBootScriptTest.java

http://github.com/jclouds/jclouds-chef · Java · 104 lines · 68 code · 15 blank · 21 comment · 0 complexity · 4d7332ae0f709b75e04ee328e13133aa 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.functions;
  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.easymock.classextension.EasyMock.verify;
  24. import static org.testng.Assert.assertEquals;
  25. import java.io.IOException;
  26. import java.net.URI;
  27. import java.security.PrivateKey;
  28. import java.util.List;
  29. import org.jclouds.chef.config.ChefParserModule;
  30. import org.jclouds.chef.domain.Client;
  31. import org.jclouds.chef.statements.InstallChefGems;
  32. import org.jclouds.crypto.PemsTest;
  33. import org.jclouds.json.Json;
  34. import org.jclouds.json.config.GsonModule;
  35. import org.jclouds.scriptbuilder.domain.Statement;
  36. import org.testng.annotations.Test;
  37. import com.google.common.base.Charsets;
  38. import com.google.common.base.Suppliers;
  39. import com.google.common.collect.ImmutableList;
  40. import com.google.common.collect.ImmutableMap;
  41. import com.google.common.io.CharStreams;
  42. import com.google.common.io.Resources;
  43. import com.google.inject.Guice;
  44. import com.google.inject.Injector;
  45. /**
  46. * @author Adrian Cole
  47. */
  48. @Test(groups = { "unit" })
  49. public class TagToBootScriptTest {
  50. Injector injector = Guice.createInjector(new ChefParserModule(), new GsonModule());
  51. Json json = injector.getInstance(Json.class);
  52. Statement installChefGems = new InstallChefGems();
  53. @Test(expectedExceptions = IllegalStateException.class)
  54. public void testMustHaveClients() {
  55. GroupToBootScript fn = new GroupToBootScript(Suppliers.ofInstance(URI.create("http://localhost:4000")), json, ImmutableMap
  56. .<String, Client> of(), ImmutableMap.<String, List<String>> of("foo", ImmutableList
  57. .of("recipe[apache2]")), installChefGems);
  58. fn.apply("foo");
  59. }
  60. @Test(expectedExceptions = IllegalStateException.class)
  61. public void testMustHaveRunScripts() {
  62. GroupToBootScript fn = new GroupToBootScript(Suppliers.ofInstance(URI.create("http://localhost:4000")), json, ImmutableMap
  63. .<String, Client> of("foo", createMock(Client.class)), ImmutableMap.<String, List<String>> of(), installChefGems);
  64. fn.apply("foo");
  65. }
  66. @Test(expectedExceptions = IllegalStateException.class)
  67. public void testMustHaveRunScriptsValue() {
  68. GroupToBootScript fn = new GroupToBootScript(Suppliers.ofInstance(URI.create("http://localhost:4000")), json, ImmutableMap
  69. .<String, Client> of("foo", createMock(Client.class)), ImmutableMap.<String, List<String>> of("foo",
  70. ImmutableList.<String> of()), installChefGems);
  71. fn.apply("foo");
  72. }
  73. public void testOneRecipe() throws IOException {
  74. Client client = createMock(Client.class);
  75. PrivateKey privateKey = createMock(PrivateKey.class);
  76. GroupToBootScript fn = new GroupToBootScript(Suppliers.ofInstance(URI.create("http://localhost:4000")), json, ImmutableMap
  77. .<String, Client> of("foo", client), ImmutableMap.<String, List<String>> of("foo", ImmutableList
  78. .<String> of("recipe[apache2]")), installChefGems);
  79. expect(client.getClientname()).andReturn("fooclient").atLeastOnce();
  80. expect(client.getPrivateKey()).andReturn(privateKey).atLeastOnce();
  81. expect(privateKey.getEncoded()).andReturn(PemsTest.PRIVATE_KEY.getBytes());
  82. replay(client);
  83. replay(privateKey);
  84. assertEquals(fn.apply("foo").getRawContent(), CharStreams.toString(Resources.newReaderSupplier(Resources
  85. .getResource("one-recipe.sh"), Charsets.UTF_8)));
  86. verify(client);
  87. verify(privateKey);
  88. }
  89. }