[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / java / org / openecomp / sdc / translator / services / heattotosca / buildconsolidationdata / TestConstants.java
1 package org.openecomp.sdc.translator.services.heattotosca.buildconsolidationdata;
2
3 public class TestConstants{
4
5   public static final String MAIN_SERVICE_TEMPLATE = "MainServiceTemplate.yaml";
6
7   public static final String TEST_GROUP_POSITIVE = "TestGroupsPositive";
8   public static final String TEST_GROUP_NEGATIVE = "TestGroupsNegative";
9
10   public static final String TEST_VOLUME_POSITIVE = "TestVolumePositive";
11   public static final String TEST_VOLUME_NEGATIVE = "TestVolumeNegative";
12
13   public static final String TEST_PORT_POSITIVE = "TestPortPositive";
14   public static final String TEST_PORT_NEGATIVE = "TestPortNegative";
15
16   public static final String TEST_CONNECTIVITY_POSITIVE = "TestConnectivityPositive";
17   public static final String TEST_CONNECTIVITY_NEGATIVE = "TestConnectivityNegative";
18
19   public static final String TEST_DEPENDS_ON_NODES_CONNECTED_IN = "TestDependsOnNodesConnectedIn";
20   public static final String TEST_DEPENDS_ON_NODES_CONNECTED_OUT = "TestDependsOnNodesConnectedOut";
21   public static final String TEST_DEPENDS_ON_NODES_CONNECTED_IN_AND_OUT =
22       "TestDependsOnNodesConnectedInAndOut";
23   public static final String TEST_DEPENDS_ON_NO_DEPENDENCY =
24       "TestDependsOnNoDependency";
25   public static final String TEST_DEPENDS_ON_INVALID_DEPENDENCY_CANDIDATE =
26       "TestDependsOnInvalidDependencyCandidate";
27   public static final String TEST_GET_ATTR_FOR_NONE_TO_PORT_OR_COMPUTE =
28       "testTranslateGetAttForNoneToPortOrCompute";
29   public static final String TEST_GET_ATTR_FOR_ONLY_RESOURCE_NAME =
30       "testTranslateGetAttOnlyResourceName";
31   public static final String TEST_GET_ATTR_FOR_MORE_THAN_ONE_ATTR_IN_ATTR_LIST =
32       "testTranslateGetAtt";
33   public static final String TEST_GET_ATTR_FOR_NOT_SUPPORTED_ATTR_IN_ATTR_LIST =
34       "testTranslateGetAttUnsupportedAttr";
35   public static final String TEST_IGNORE_GET_ATTR_FROM_OUTPUT =
36       "testTranslateGetAttUnsupportedResource";
37   public static final String TEST_OUTPUT_GET_ATTR =
38       "testTranslateGetAttDynamicParam";
39   public static final String TEST_DEPENDS_ON_MULTIPLE_COMPUTE = "TestDependsOnMultipleComputes";
40   public static final String TEST_DEPENDS_ON_NODE_TEMPLATE_TRANSLATION_ORDER_INVARIANCE =
41       "TestDependsOnNodeTemplateTranslationOrderInvariance";
42
43   public static final String TEST_SINGLE_NESTED_RESOURCE = "TestTranslateHeatSingleNestedResource";
44   public static final String TEST_MULTIPLE_NESTED_RESOURCE = "TestTranslateHeatNestedMultiBase";
45   public static final String TEST_MULTIPLE_MULTI_LEVEL_NESTED_RESOURCE =
46       "TestTranslateHeatNestedRecursiveMultiLevel";
47
48   public static final String TEST_SECURITY_RULE_PORT_NESTED_CONNECTION =
49       "TestSecurityRuleToPortNestedConnection";
50   public static final String TEST_SECURITY_RULE_PORT_NESTED_SHARED_PORT =
51       "TestSecurityRuleToPortSharedPortNestedConnection";
52   public static final String TEST_SECURITY_RULE_PORT_MULTI_LEVEL_NESTED_CONNECTION =
53       "TestSecurityRuleToPortMultiLevelNestedConnection";
54   public static final String TEST_SECURITY_RULE_PORT_MULTI_LEVEL_NESTED_SHARED_PORT =
55       "TestSecurityRuleToPortSharedPortMultiLevelNestedConnection";
56 }