aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/java/org/openecomp/sdc/translator/services/heattotosca/impl/fulltest/UnifiedCompositionMixPatternFullTest.java
blob: 5db90c2230ec8a01e93807c149ca8c6b54b6de53 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package org.openecomp.sdc.translator.services.heattotosca.impl.fulltest;

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

import java.io.IOException;

public class UnifiedCompositionMixPatternFullTest extends BaseFullTranslationTest {

  @Override
  @Before
  public void setUp() throws IOException {
    // do not delete this function. it prevents the superclass setup from running
  }

  @Test
  public void testMixPatterns() throws IOException {
    inputFilesPath =
        "/mock/services/heattotosca/fulltest/mixPatterns/oneAppearancePerPattern/in";
    outputFilesPath =
        "/mock/services/heattotosca/fulltest/mixPatterns/oneAppearancePerPattern/out";

    testTranslationWithInit();
  }

  @Test
  public void testMixPatternsWithConnectivityBetweenPatterns() throws IOException {
    inputFilesPath =
        "/mock/services/heattotosca/fulltest/mixPatterns/connectivityBetweenPatterns/in";
    outputFilesPath =
        "/mock/services/heattotosca/fulltest/mixPatterns/connectivityBetweenPatterns/out";

    testTranslationWithInit();
  }

  @Test
  public void testMixPatternsWithConnectivityAndMoreThanOneOccurenceForEachPattern()
      throws IOException {
    inputFilesPath =
        "/mock/services/heattotosca/fulltest/mixPatterns/twoAppearancePerPatternWithConnectivities/in";
    outputFilesPath =
        "/mock/services/heattotosca/fulltest/mixPatterns/twoAppearancePerPatternWithConnectivities/out";

    testTranslationWithInit();
  }

  @Test
  public void testDuplicateResourceIdsInDiffAddOnFiles() throws IOException {
    inputFilesPath =
        "/mock/services/heattotosca/fulltest/mixPatterns/duplicateResourceIdsInDiffAddOnFiles/in";

    try {
      testTranslationWithInit();
    }catch(Exception e){
      Assert.assertEquals(e.getMessage(), "Resource with id lb_0_int_oam_int_0_port occures more " +
          "than once in different addOn files");
    }
  }

  @Test
  public void testMixPatternsWithDependencyConnectivity() throws IOException {
    inputFilesPath =
        "/mock/services/heattotosca/fulltest/mixPatterns/dependencyConnectivity/in";
    outputFilesPath =
        "/mock/services/heattotosca/fulltest/mixPatterns/dependencyConnectivity/out";

    testTranslationWithInit();
  }

}