summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/java/org/openecomp/sdc/translator/services/heattotosca/impl/fulltest/UnifiedCompositionDynamicPortsTest.java
blob: d908a3dabcdcbc4e83a41587bde039af654dcec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package org.openecomp.sdc.translator.services.heattotosca.impl.fulltest;

import org.junit.Test;
import org.openecomp.sdc.translator.services.heattotosca.impl.resourcetranslation.BaseFullTranslationTest;

import java.io.IOException;

public class UnifiedCompositionDynamicPortsTest extends BaseFullTranslationTest {

  private static final String BASE_DIRECTORY = "/mock/services/heattotosca/fulltest/dynamicPorts/";

  @Test
  public void testDynamicPortWithDependsOn() throws IOException {
    testTranslationWithInit(BASE_DIRECTORY + "dynamicPortsWithDependsOn");
  }

  @Test
  public void testDependsOnFromNovaToNestedPort() throws IOException {
    testTranslationWithInit(BASE_DIRECTORY + "dependsOnFromNovaToNestedPort");
  }

  @Test
  public void testDependsOnFromPortToNested() throws IOException {
    testTranslationWithInit(BASE_DIRECTORY + "dependsOnFromPortToNested");
  }

  @Test
  public void testDependsOnFromVfcToNested() throws IOException {
    testTranslationWithInit(BASE_DIRECTORY + "dependsOnFromVfcToNested");
  }

  @Test
  public void testDependsOnFromNestedToNested() throws IOException {
    testTranslationWithInit(BASE_DIRECTORY + "dependsOnFromNestedToNested");
  }
}