/apis/cloudservers/src/test/java/org/jclouds/cloudservers/compute/functions/CloudServersImageToImageTest.java

http://github.com/jclouds/jclouds · Java · 62 lines · 35 code · 8 blank · 19 comment · 0 complexity · 22f77762454eaa8243b43265d559500d 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.compute.functions;
  18. import static org.testng.Assert.assertEquals;
  19. import org.jclouds.cloudservers.compute.config.CloudServersComputeServiceContextModule;
  20. import org.jclouds.cloudservers.functions.ParseImageFromJsonResponseTest;
  21. import org.jclouds.compute.config.BaseComputeServiceContextModule;
  22. import org.jclouds.compute.domain.Image;
  23. import org.jclouds.compute.domain.ImageBuilder;
  24. import org.jclouds.compute.domain.OperatingSystem;
  25. import org.jclouds.compute.domain.OsFamily;
  26. import org.jclouds.compute.reference.ComputeServiceConstants;
  27. import org.jclouds.json.Json;
  28. import org.jclouds.json.config.GsonModule;
  29. import org.testng.annotations.Test;
  30. import com.google.inject.Guice;
  31. /**
  32. * @author Adrian Cole
  33. */
  34. @Test(groups = "unit", testName = "CloudServersImageToImageTest")
  35. public class CloudServersImageToImageTest {
  36. @Test
  37. public void test() {
  38. Image toTest = convertImage();
  39. assertEquals(toTest, new ImageBuilder().name("CentOS 5.2").operatingSystem(
  40. new OperatingSystem.Builder().family(OsFamily.CENTOS).version("5.2").description("CentOS 5.2").is64Bit(
  41. true).build()).description("CentOS 5.2").ids("2").status(Image.Status.PENDING).version(
  42. "1286712000000").build());
  43. assertEquals(toTest.getStatus(), Image.Status.PENDING);
  44. }
  45. public static Image convertImage() {
  46. org.jclouds.cloudservers.domain.Image image = ParseImageFromJsonResponseTest.parseImage();
  47. CloudServersImageToImage parser = new CloudServersImageToImage(
  48. CloudServersComputeServiceContextModule.toPortableImageStatus, new CloudServersImageToOperatingSystem(
  49. new BaseComputeServiceContextModule() {
  50. }.provideOsVersionMap(new ComputeServiceConstants.ReferenceData(), Guice.createInjector(
  51. new GsonModule()).getInstance(Json.class))));
  52. return parser.apply(image);
  53. }
  54. }