mirror of https://github.com/apache/jclouds.git
The template entries in a catalog may have different names to the acutal VAppTemplates, so check the URIs
This commit is contained in:
parent
1b10e19e0b
commit
e4c8789917
|
@ -49,7 +49,6 @@ import com.google.common.collect.ImmutableMap;
|
|||
*/
|
||||
@Test(groups = "live", enabled = true, singleThreaded = true, testName = "VAppTemplateClientLiveTest")
|
||||
public class VAppTemplateClientLiveTest extends BaseVCloudClientLiveTest {
|
||||
|
||||
@Test
|
||||
public void testGetVAppTemplate() throws Exception {
|
||||
Org org = getVCloudApi().getOrgClient().findOrgNamed(null);
|
||||
|
@ -61,7 +60,8 @@ public class VAppTemplateClientLiveTest extends BaseVCloudClientLiveTest {
|
|||
if (item.getEntity().getType().equals(VCloudMediaType.VAPPTEMPLATE_XML)) {
|
||||
VAppTemplate template = getVCloudApi().getVAppTemplateClient().getVAppTemplate(item.getEntity().getHref());
|
||||
if (template != null) {
|
||||
assertEquals(template.getName(),item.getEntity().getName());
|
||||
// the UUID in the href is the only way to actually link templates
|
||||
assertEquals(template.getHref(), item.getEntity().getHref());
|
||||
} else {
|
||||
// null can be no longer available or auth exception
|
||||
}
|
||||
|
@ -100,7 +100,8 @@ public class VAppTemplateClientLiveTest extends BaseVCloudClientLiveTest {
|
|||
VAppTemplate template = getVCloudApi().getVAppTemplateClient().findVAppTemplateInOrgCatalogNamed(
|
||||
org.getName(), response.getName(), item.getEntity().getName());
|
||||
if (template != null) {
|
||||
assertEquals(template.getName(), item.getEntity().getName());
|
||||
// the UUID in the href is the only way to actually link templates
|
||||
assertEquals(template.getHref(), item.getEntity().getHref());
|
||||
} else {
|
||||
// null can be no longer available or auth exception
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue