/apis/cloudservers/src/test/java/org/jclouds/cloudservers/functions/ParseImageFromJsonResponseTest.java

http://github.com/jclouds/jclouds · Java · 89 lines · 51 code · 17 blank · 21 comment · 0 complexity · 4931a9630afaa95ba8053dfc7376bfc1 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.cloudservers.functions;
  18. import static org.testng.Assert.assertEquals;
  19. import java.io.InputStream;
  20. import java.net.UnknownHostException;
  21. import org.jclouds.cloudservers.domain.Image;
  22. import org.jclouds.cloudservers.domain.ImageStatus;
  23. import org.jclouds.date.DateService;
  24. import org.jclouds.http.HttpResponse;
  25. import org.jclouds.http.functions.UnwrapOnlyJsonValue;
  26. import org.jclouds.json.config.GsonModule;
  27. import org.jclouds.json.config.GsonModule.DateAdapter;
  28. import org.jclouds.json.config.GsonModule.Iso8601DateAdapter;
  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 ParseImageFromJsonResponse}
  37. *
  38. * @author Adrian Cole
  39. */
  40. @Test(groups = "unit")
  41. public class ParseImageFromJsonResponseTest {
  42. Injector i = Guice.createInjector(new AbstractModule() {
  43. @Override
  44. protected void configure() {
  45. bind(DateAdapter.class).to(Iso8601DateAdapter.class);
  46. }
  47. }, new GsonModule());
  48. DateService dateService = i.getInstance(DateService.class);
  49. public void testApplyInputStreamDetails() throws UnknownHostException {
  50. Image response = parseImage();
  51. assertEquals(response.getId(), 2);
  52. assertEquals(response.getName(), "CentOS 5.2");
  53. assertEquals(response.getCreated(), dateService.iso8601SecondsDateParse("2010-08-10T12:00:00Z"));
  54. assertEquals(response.getProgress(), Integer.valueOf(80));
  55. assertEquals(response.getServerId(), Integer.valueOf(12));
  56. assertEquals(response.getStatus(), ImageStatus.SAVING);
  57. assertEquals(response.getUpdated(), dateService.iso8601SecondsDateParse(("2010-10-10T12:00:00Z")));
  58. }
  59. public static Image parseImage() {
  60. Injector i = Guice.createInjector(new AbstractModule() {
  61. @Override
  62. protected void configure() {
  63. bind(DateAdapter.class).to(Iso8601DateAdapter.class);
  64. }
  65. }, new GsonModule());
  66. InputStream is = ParseImageFromJsonResponseTest.class.getResourceAsStream("/test_get_image_details.json");
  67. UnwrapOnlyJsonValue<Image> parser = i.getInstance(Key.get(new TypeLiteral<UnwrapOnlyJsonValue<Image>>() {
  68. }));
  69. Image response = parser.apply(HttpResponse.builder().statusCode(200).message("ok").payload(is).build());
  70. return response;
  71. }
  72. }