use of com.sequenceiq.freeipa.api.v1.freeipa.stack.model.image.Images in project cloudbreak by hortonworks.
the class FreeIpaImageProviderTest method testGetImagesGivenUuidInputNotFoundWithNotDefaultOs.
@Test
public void testGetImagesGivenUuidInputNotFoundWithNotDefaultOs() {
ImageSettingsRequest is = setupImageSettingsRequest(NON_DEFAULT_OS_IMAGE_UUID, null, null);
List<ImageWrapper> images = underTest.getImages(is, DEFAULT_REGION, DEFAULT_PLATFORM);
assertTrue(images.isEmpty());
}
use of com.sequenceiq.freeipa.api.v1.freeipa.stack.model.image.Images in project cloudbreak by hortonworks.
the class FreeIpaImageProviderTest method testGetImagesGivenIdInputFound.
@Test
public void testGetImagesGivenIdInputFound() {
ImageSettingsRequest is = setupImageSettingsRequest(EXISTING_ID, null, null);
List<ImageWrapper> images = underTest.getImages(is, DEFAULT_REGION, DEFAULT_PLATFORM);
assertEquals(1, images.size());
ImageWrapper imageWrapper = images.get(0);
assertEquals(DEFAULT_CATALOG_URL, imageWrapper.getCatalogUrl());
assertNull(imageWrapper.getCatalogName());
Image image = imageWrapper.getImage();
assertEquals(DEFAULT_OS, image.getOs());
assertEquals(LATEST_DATE, image.getDate());
assertEquals(IMAGE_UUID, image.getUuid());
}
use of com.sequenceiq.freeipa.api.v1.freeipa.stack.model.image.Images in project cloudbreak by hortonworks.
the class FreeIpaImageProviderTest method testGetImagesGivenIdInputNotFound.
@Test
public void testGetImagesGivenIdInputNotFound() {
ImageSettingsRequest is = setupImageSettingsRequest(NON_EXISTING_ID, null, null);
List<ImageWrapper> images = underTest.getImages(is, DEFAULT_REGION, DEFAULT_PLATFORM);
assertTrue(images.isEmpty());
}
use of com.sequenceiq.freeipa.api.v1.freeipa.stack.model.image.Images in project cloudbreak by hortonworks.
the class FreeIpaImageProviderTest method testGetImagesGivenNoInputWithInvalidAppVersion.
@Test
public void testGetImagesGivenNoInputWithInvalidAppVersion() {
ReflectionTestUtils.setField(underTest, FreeIpaImageProvider.class, "freeIpaVersion", "2.21.0-dcv.1", null);
ImageSettingsRequest is = setupImageSettingsRequest(null, null, "centos7");
List<ImageWrapper> images = underTest.getImages(is, DEFAULT_REGION, DEFAULT_PLATFORM);
assertTrue(images.isEmpty());
}
use of com.sequenceiq.freeipa.api.v1.freeipa.stack.model.image.Images in project cloudbreak by hortonworks.
the class FreeIpaImageProviderTest method testGetImagesGivenAllInputNonExistentOS.
@Test
public void testGetImagesGivenAllInputNonExistentOS() {
ImageSettingsRequest is = setupImageSettingsRequest(EXISTING_ID, CUSTOM_IMAGE_CATALOG_URL, NON_EXISTING_OS);
List<ImageWrapper> images = underTest.getImages(is, DEFAULT_REGION, DEFAULT_PLATFORM);
assertEquals(1, images.size());
ImageWrapper imageWrapper = images.get(0);
assertEquals(CUSTOM_IMAGE_CATALOG_URL, imageWrapper.getCatalogUrl());
assertNull(imageWrapper.getCatalogName());
Image image = imageWrapper.getImage();
assertEquals(DEFAULT_OS, image.getOs());
assertEquals(LATEST_DATE, image.getDate());
assertEquals(IMAGE_UUID, image.getUuid());
}
Aggregations