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

http://github.com/jclouds/jclouds · Java · 72 lines · 45 code · 8 blank · 19 comment · 0 complexity · d23d6dd87c3d28141ae0ec2bf31f1d53 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.testng.Assert.assertEquals;
  19. import java.io.IOException;
  20. import org.jclouds.chef.ChefApiMetadata;
  21. import org.jclouds.chef.config.ChefParserModule;
  22. import org.jclouds.http.HttpResponse;
  23. import org.jclouds.json.config.GsonModule;
  24. import org.jclouds.rest.annotations.ApiVersion;
  25. import org.testng.annotations.BeforeTest;
  26. import org.testng.annotations.Test;
  27. import com.google.common.collect.ImmutableSet;
  28. import com.google.inject.AbstractModule;
  29. import com.google.inject.Guice;
  30. import com.google.inject.Injector;
  31. /**
  32. * Tests behavior of {@code ParseCookbookNamesFromJson}.
  33. */
  34. @Test(groups = { "unit" }, singleThreaded = true)
  35. public class ParseCookbookNamesFromJsonTest
  36. {
  37. private ParseCookbookNamesFromJson handler;
  38. @BeforeTest
  39. protected void setUpInjector() throws IOException {
  40. Injector injector = Guice.createInjector(new AbstractModule() {
  41. @Override
  42. protected void configure() {
  43. bind(String.class).annotatedWith(ApiVersion.class).toInstance(ChefApiMetadata.DEFAULT_API_VERSION);
  44. }
  45. }, new ChefParserModule(), new GsonModule());
  46. handler = injector.getInstance(ParseCookbookNamesFromJson.class);
  47. }
  48. public void testParse010Response() {
  49. assertEquals(handler.apply(HttpResponse
  50. .builder()
  51. .statusCode(200)
  52. .message("ok")
  53. .payload(
  54. "{" + "\"apache2\" => {" + "\"url\" => \"http://localhost:4000/cookbooks/apache2\","
  55. + "\"versions\" => [" + "{\"url\" => \"http://localhost:4000/cookbooks/apache2/5.1.0\","
  56. + "\"version\" => \"5.1.0\"},"
  57. + "{\"url\" => \"http://localhost:4000/cookbooks/apache2/4.2.0\","
  58. + "\"version\" => \"4.2.0\"}" + "]" + "}," + "\"nginx\" => {"
  59. + "\"url\" => \"http://localhost:4000/cookbooks/nginx\"," + "\"versions\" => ["
  60. + "{\"url\" => \"http://localhost:4000/cookbooks/nginx/1.0.0\"," + "\"version\" => \"1.0.0\"},"
  61. + "{\"url\" => \"http://localhost:4000/cookbooks/nginx/0.3.0\"," + "\"version\" => \"0.3.0\"}"
  62. + "]" + "}" + "}").build()), ImmutableSet.of("apache2", "nginx"));
  63. }
  64. }