/labs/privatechef/src/test/java/org/jclouds/privatechef/functions/ParseOrganizationFromJsonTest.java

http://github.com/jclouds/jclouds-chef · Java · 64 lines · 31 code · 10 blank · 23 comment · 0 complexity · 0db0e1a42fbafa142fb9a97701481c13 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.privatechef.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.http.functions.ParseJson;
  25. import org.jclouds.io.Payloads;
  26. import org.jclouds.json.config.GsonModule;
  27. import org.jclouds.privatechef.domain.Organization;
  28. import org.testng.annotations.BeforeTest;
  29. import org.testng.annotations.Test;
  30. import com.google.inject.Guice;
  31. import com.google.inject.Injector;
  32. import com.google.inject.Key;
  33. import com.google.inject.TypeLiteral;
  34. /**
  35. * Tests behavior of {@code ParseOrganizationFromJson}
  36. *
  37. * @author Adrian Cole
  38. */
  39. @Test(groups = { "unit" }, sequential = true)
  40. public class ParseOrganizationFromJsonTest {
  41. private ParseJson<Organization> handler;
  42. @BeforeTest
  43. protected void setUpInjector() throws IOException {
  44. Injector injector = Guice.createInjector(new ChefParserModule(), new GsonModule());
  45. handler = injector.getInstance(Key.get(new TypeLiteral<ParseJson<Organization>>() {
  46. }));
  47. }
  48. public void test() {
  49. Organization org = new Organization("486ca3ac66264fea926aa0b4ff74341c", "jclouds", "jclouds",
  50. "jclouds-validator", "Business", null);
  51. String toParse = "{\"guid\":\"486ca3ac66264fea926aa0b4ff74341c\",\"name\":\"jclouds\",\"full_name\":\"jclouds\",\"clientname\":\"jclouds-validator\",\"org_type\":\"Business\",\"name\":\"jclouds\"}";
  52. assertEquals(handler.apply(new HttpResponse(200, "ok", Payloads.newStringPayload(toParse))), org);
  53. }
  54. }