[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 / impl / resourcetranslation / ResourceTranslationNovaServerGroupsImplTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.translator.services.heattotosca.impl.resourcetranslation;
22
23 import static org.openecomp.sdc.translator.services.heattotosca.buildconsolidationdata.TestConstants.TEST_GROUP_POSITIVE;
24
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.openecomp.sdc.translator.services.heattotosca.buildconsolidationdata.ConsolidationDataValidationType;
28
29 import java.io.IOException;
30
31
32 public class ResourceTranslationNovaServerGroupsImplTest extends BaseResourceTranslationTest {
33
34   @Override
35   @Before
36   public void setUp() throws IOException {
37     // do not delete this function. it prevents the superclass setup from running
38   }
39
40   @Test
41   public void testTranslate() throws Exception {
42     inputFilesPath = "/mock/services/heattotosca/novaservergroups/staticPolicy/inputfiles";
43     outputFilesPath =
44         "/mock/services/heattotosca/novaservergroups/staticPolicy/expectedoutputfiles";
45     initTranslatorAndTranslate();
46     testTranslation();
47     validateComputeTemplateConsolidationData(ConsolidationDataValidationType.VALIDATE_GROUP,
48         TEST_GROUP_POSITIVE);
49   }
50
51   @Test
52   public void testTranslateDynamicPolicy() throws Exception {
53     inputFilesPath = "/mock/services/heattotosca/novaservergroups/dynamicPolicy/inputfiles";
54     outputFilesPath =
55         "/mock/services/heattotosca/novaservergroups/dynamicPolicy/expectedoutputfiles";
56     initTranslatorAndTranslate();
57     testTranslation();
58     validateComputeTemplateConsolidationData(ConsolidationDataValidationType.VALIDATE_GROUP,
59         TEST_GROUP_POSITIVE);
60   }
61
62   @Test
63   public void testTranslateServerGroupShared() throws IOException {
64     inputFilesPath = "/mock/services/heattotosca/novaservergroups/sharedServerGroup/inputfiles";
65     outputFilesPath =
66         "/mock/services/heattotosca/novaservergroups/sharedServerGroup/expectedoutputfiles";
67     initTranslatorAndTranslate();
68     testTranslation();
69     validateComputeTemplateConsolidationData(ConsolidationDataValidationType.VALIDATE_GROUP,
70         TEST_GROUP_POSITIVE);
71   }
72 }