/providers/softlayer/src/test/java/org/jclouds/softlayer/compute/functions/VirtualGuestToImageTest.java

http://github.com/jclouds/jclouds · Java · 119 lines · 89 code · 11 blank · 19 comment · 0 complexity · fdd93809dda334db1386c412a72ebefb 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.softlayer.compute.functions;
  18. import static org.testng.Assert.assertEquals;
  19. import static org.testng.Assert.assertNotNull;
  20. import org.jclouds.compute.domain.Image;
  21. import org.jclouds.compute.domain.OsFamily;
  22. import org.jclouds.softlayer.domain.Datacenter;
  23. import org.jclouds.softlayer.domain.OperatingSystem;
  24. import org.jclouds.softlayer.domain.SoftwareDescription;
  25. import org.jclouds.softlayer.domain.SoftwareLicense;
  26. import org.jclouds.softlayer.domain.VirtualGuest;
  27. import org.testng.annotations.Test;
  28. import com.google.inject.Guice;
  29. /**
  30. * Tests the function that transforms SoftLayer VirtualGuest to generic image.
  31. */
  32. @Test(groups = "unit", testName = "VirtualGuestToImageTest")
  33. public class VirtualGuestToImageTest {
  34. OperatingSystemToImage operatingSystemToImage = Guice.createInjector().getInstance(OperatingSystemToImage.class);
  35. @Test
  36. public void testVirtualGuestToImageWhenOperatingSystemIsNull() {
  37. VirtualGuest virtualGuest = createVirtualGuestWithoutOperatingSystem();
  38. Image image = new VirtualGuestToImage(operatingSystemToImage).apply(virtualGuest);
  39. assertNotNull(image);
  40. assertEquals(image.getStatus(), Image.Status.UNRECOGNIZED);
  41. assertEquals(image.getOperatingSystem().getFamily(), OsFamily.UNRECOGNIZED);
  42. assertEquals(image.getOperatingSystem().getVersion(), "UNRECOGNIZED");
  43. }
  44. @Test
  45. public void testVirtualGuestToImageWhenVirtualGuestIsSoftwareLicense() {
  46. VirtualGuest virtualGuest = createVirtualGuestWithoutSoftwareLicenseDetails();
  47. Image image = new VirtualGuestToImage(operatingSystemToImage).apply(virtualGuest);
  48. assertNotNull(image);
  49. assertEquals(image.getOperatingSystem().getFamily(), OsFamily.UNRECOGNIZED);
  50. assertEquals(image.getOperatingSystem().getVersion(), "UNRECOGNIZED");
  51. }
  52. @Test
  53. public void testVirtualGuestToImageWithSoftwareLicense() {
  54. VirtualGuest virtualGuest = createVirtualGuestWithSoftwareLicenseDetails();
  55. Image image = new VirtualGuestToImage(operatingSystemToImage).apply(virtualGuest);
  56. assertNotNull(image);
  57. assertEquals(image.getOperatingSystem().getFamily(), OsFamily.UBUNTU);
  58. assertEquals(image.getOperatingSystem().getVersion(), "12.04");
  59. assertEquals(image.getOperatingSystem().is64Bit(), true);
  60. }
  61. private VirtualGuest createVirtualGuestWithoutOperatingSystem() {
  62. return VirtualGuest.builder()
  63. .domain("example.com")
  64. .hostname("host1")
  65. .id(1301396)
  66. .maxMemory(1024)
  67. .startCpus(1)
  68. .localDiskFlag(true)
  69. .datacenter(Datacenter.builder().name("test").build())
  70. .softwareLicense(SoftwareLicense.builder().build())
  71. .build();
  72. }
  73. private VirtualGuest createVirtualGuestWithoutSoftwareLicenseDetails() {
  74. return VirtualGuest.builder()
  75. .domain("example.com")
  76. .hostname("host1")
  77. .id(1301396)
  78. .maxMemory(1024)
  79. .startCpus(1)
  80. .localDiskFlag(true)
  81. .operatingSystem(OperatingSystem.builder().id("UBUNTU_LATEST")
  82. .operatingSystemReferenceCode("UBUNTU_LATEST")
  83. .build())
  84. .datacenter(Datacenter.builder().name("test").build())
  85. .build();
  86. }
  87. private VirtualGuest createVirtualGuestWithSoftwareLicenseDetails() {
  88. return VirtualGuest.builder()
  89. .domain("example.com")
  90. .hostname("host1")
  91. .id(1301396)
  92. .maxMemory(1024)
  93. .startCpus(1)
  94. .localDiskFlag(true)
  95. .operatingSystem(OperatingSystem.builder().id("UBUNTU_LATEST")
  96. .operatingSystemReferenceCode("UBUNTU_LATEST")
  97. .softwareLicense(SoftwareLicense.builder()
  98. .softwareDescription(SoftwareDescription.builder()
  99. .version("12.04-64 Minimal for CCI")
  100. .referenceCode("UBUNTU_12_64")
  101. .longDescription("Ubuntu Linux 12.04 LTS Precise Pangolin - Minimal Install (64 bit)")
  102. .build())
  103. .build())
  104. .build())
  105. .datacenter(Datacenter.builder().name("test").build())
  106. .build();
  107. }
  108. }