aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/java/org/openecomp/sdc/translator/services/heattotosca/impl/ResourceTranslationResourceGroupImplTest.java
blob: de1b0bfe2971fe2c892cfec941900175d52937a2 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package org.openecomp.sdc.translator.services.heattotosca.impl;

import org.openecomp.sdc.common.errors.CoreException;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
import org.mockito.runners.MockitoJUnitRunner;

import java.io.IOException;

/**
 * @author shiria
 * @since July 21, 2016.
 */
@RunWith(MockitoJUnitRunner.class)
public class ResourceTranslationResourceGroupImplTest extends BaseResourceTranslationTest {
  @Rule
  public ExpectedException thrown = ExpectedException.none();

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

  @Test
  public void testTranslateResourceGroup() throws Exception {
    inputFilesPath = "/mock/heat/nested/resource_group/inputs";
    outputFilesPath = "/mock/heat/nested/resource_group/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateMultiResourceGroup() throws Exception {
    inputFilesPath = "/mock/heat/nested/multiple_resource_groups/inputs";
    outputFilesPath = "/mock/heat/nested/multiple_resource_groups/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateResourceGroupDynamicCount() throws Exception {
    inputFilesPath = "/mock/heat/nested/resource_group_with_dynamic_count/inputs";
    outputFilesPath = "/mock/heat/nested/resource_group_with_dynamic_count/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }


  @Test
  public void testTranslatePortToNetNestedByResourceGroupConnection() throws Exception {
    inputFilesPath = "/mock/services/heattotosca/porttonetresourcegroupconnection/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/porttonetresourcegroupconnection/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslatePortToNetSharedConnection() throws Exception {
    inputFilesPath = "/mock/services/heattotosca/porttosharednetresourcegrouplinking/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/porttosharednetresourcegrouplinking/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateSecurityGroupToSharedPortConnection() throws Exception {
    inputFilesPath =
        "/mock/services/heattotosca/securityruletosharedportresourcegrouplinking/inputfiles";
    outputFilesPath =
        "/mock/services/heattotosca/securityruletosharedportresourcegrouplinking/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateResourceGroupIndexVar() throws Exception {
    inputFilesPath = "/mock/heat/nested/resourceGroupIndexVar/inputs";
    outputFilesPath = "/mock/heat/nested/resourceGroupIndexVar/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateResourceGroupInvalidIndexVar() throws Exception {
    thrown.expect(CoreException.class);
    thrown.expectMessage(
        "'index_var' property has invalid value. Actual value is '{get_param=index_parameter}' while 'String' value expected.");

    inputFilesPath = "/mock/heat/nested/resourceGroupInvalid/inputs";
    outputFilesPath = "/mock/heat/nested/resourceGroupInvalid/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }

  @Test
  public void testTranslateMDNS() throws Exception {
    inputFilesPath = "/mock/heat/nested/resourceGroupMDNS/inputs";
    outputFilesPath = "/mock/heat/nested/resourceGroupMDNS/expectedoutputfiles";
    initTranslatorAndTranslate();
    testTranslation();
  }


}