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

http://github.com/jclouds/jclouds · Java · 71 lines · 43 code · 9 blank · 19 comment · 0 complexity · 1ef9345fd4a993aa8566331633f3f3df 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.chef.domain.Sandbox;
  23. import org.jclouds.date.DateService;
  24. import org.jclouds.http.HttpResponse;
  25. import org.jclouds.http.functions.ParseJson;
  26. import org.jclouds.json.config.GsonModule;
  27. import org.jclouds.rest.annotations.ApiVersion;
  28. import org.testng.annotations.BeforeTest;
  29. import org.testng.annotations.Test;
  30. import com.google.inject.AbstractModule;
  31. import com.google.inject.Guice;
  32. import com.google.inject.Injector;
  33. import com.google.inject.Key;
  34. import com.google.inject.TypeLiteral;
  35. /**
  36. * Tests behavior of {@code ParseSandboxFromJson}
  37. */
  38. @Test(groups = { "unit" }, singleThreaded = true)
  39. public class ParseSandboxFromJsonTest {
  40. private ParseJson<Sandbox> handler;
  41. private DateService dateService;
  42. @BeforeTest
  43. protected void setUpInjector() throws IOException {
  44. Injector injector = Guice.createInjector(new AbstractModule() {
  45. @Override
  46. protected void configure() {
  47. bind(String.class).annotatedWith(ApiVersion.class).toInstance(ChefApiMetadata.DEFAULT_API_VERSION);
  48. }
  49. }, new ChefParserModule(), new GsonModule());
  50. handler = injector.getInstance(Key.get(new TypeLiteral<ParseJson<Sandbox>>() {
  51. }));
  52. dateService = injector.getInstance(DateService.class);
  53. }
  54. public void test() {
  55. assertEquals(
  56. handler.apply(HttpResponse.builder().statusCode(200).message("ok")
  57. .payload(ParseSandboxFromJsonTest.class.getResourceAsStream("/sandbox.json")).build()),
  58. Sandbox.builder().rev("1-8c27b0ea4c2b7aaedbb44cfbdfcc11b2").isCompleted(false)
  59. .createTime(dateService.iso8601SecondsDateParse("2010-07-07T03:36:00+00:00"))
  60. .name("f9d6d9b72bae465890aae87969f98a9c").guid("f9d6d9b72bae465890aae87969f98a9c").build());
  61. }
  62. }