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

http://github.com/jclouds/jclouds-chef · Java · 62 lines · 31 code · 8 blank · 23 comment · 0 complexity · 0884a8f1a0c952caef2e45613e74262f 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.testng.Assert.assertEquals;
  21. import java.io.IOException;
  22. import org.jclouds.chef.config.ChefParserModule;
  23. import org.jclouds.http.HttpResponse;
  24. import org.jclouds.io.Payloads;
  25. import org.jclouds.json.config.GsonModule;
  26. import org.testng.annotations.BeforeTest;
  27. import org.testng.annotations.Test;
  28. import com.google.common.collect.ImmutableSet;
  29. import com.google.inject.Guice;
  30. import com.google.inject.Injector;
  31. /**
  32. * Tests behavior of {@code ParseKeySetFromJson}
  33. *
  34. * @author Adrian Cole
  35. */
  36. @Test(groups = { "unit" }, sequential = true)
  37. public class ParseKeySetFromJsonTest {
  38. private ParseKeySetFromJson handler;
  39. @BeforeTest
  40. protected void setUpInjector() throws IOException {
  41. Injector injector = Guice.createInjector(new ChefParserModule(), new GsonModule());
  42. handler = injector.getInstance(ParseKeySetFromJson.class);
  43. }
  44. public void testRegex() {
  45. assertEquals(
  46. handler
  47. .apply(new HttpResponse(
  48. 200,
  49. "ok",
  50. Payloads
  51. .newStringPayload("{\n\"opscode-validator\": \"https://api.opscode.com/...\", \"pimp-validator\": \"https://api.opscode.com/...\"}"))),
  52. ImmutableSet.of("opscode-validator", "pimp-validator"));
  53. }
  54. }