9064dc4edb7d1d0c1f60aa0eecf3781b9879371e
[sdc.git] /
1 package org.openecomp.sdc.translator.services.heattotosca.impl.fulltest;
2
3 import org.junit.Test;
4 import org.openecomp.sdc.translator.services.heattotosca.impl.resourcetranslation.BaseFullTranslationTest;
5
6 import java.io.IOException;
7
8 public class UnifiedCompositionCatalogInstanceFullTest extends BaseFullTranslationTest {
9
10     private static final String BASE_DIRECTORY = "/mock/services/heattotosca/fulltest/catalogInstances/";
11
12     @Test
13   public void testThreeNovaSameTypeDiffGetAttrFromSameEntitiesTypes() throws IOException {
14       testTranslationWithInit(BASE_DIRECTORY + "threeComputesSameTypeGetAttrBetweenThem");
15   }
16
17   @Test
18   public void testThreeNovaSameTypePortsConnectedToDiffNetworks() throws IOException {
19       testTranslationWithInit(BASE_DIRECTORY + "threeComputesSameTypePortsConnectedToDiffNetworks");
20   }
21
22   @Test
23   public void testComputeWithTwoSamePortTypesWithDiffPropVal() throws IOException {
24       testTranslationWithInit(BASE_DIRECTORY + "computewithtwosameporttypes");
25   }
26
27   @Test
28   public void testThreeNovaSameTypeDiffImageName() throws IOException {
29       testTranslationWithInit(BASE_DIRECTORY + "threeComputesSameTypeDiffImageName");
30   }
31
32   @Test
33   public void testTwoNovaWithDiffProperties() throws IOException {
34       testTranslationWithInit(BASE_DIRECTORY + "twoNovaWithDiffProperties");
35   }
36 }