38df156efc919216c7e707923280d2f997a87230
[sdc.git] /
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.impl.heattotosca.nested.single;
22
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.openecomp.sdc.translator.services.heattotosca.buildconsolidationdata.ConsolidationDataTestUtil;
26 import org.openecomp.sdc.translator.services.heattotosca.buildconsolidationdata.TestConstants;
27 import org.openecomp.sdc.translator.services.heattotosca.impl.resourcetranslation.BaseResourceTranslationTest;
28
29 import java.io.IOException;
30
31 public class TranslateHeatNestedSingle extends BaseResourceTranslationTest {
32
33   @Override
34   @Before
35   public void setUp() throws IOException {
36     // do not delete this function. it prevents the superclass setup from running
37   }
38
39
40   @Test
41   public void testTranslate() throws Exception {
42     inputFilesPath = "/mock/heat/nested/single/inputs";
43     outputFilesPath = "/mock/heat/nested/single/expectedoutputfiles";
44
45     initTranslatorAndTranslate();
46     testTranslation();
47     validateNestedTemplateConsolidationData(TestConstants.TEST_SINGLE_NESTED_RESOURCE);
48   }
49
50   @Test
51   public void testTranslateNestedWithoutNodeTemplates() throws IOException {
52     inputFilesPath = "/mock/heat/nested/nestedwithoutNodeTemplates/inputs";
53     outputFilesPath = "/mock/heat/nested/nestedwithoutNodeTemplates/expectedoutputfiles";
54
55     initTranslatorAndTranslate();
56     testTranslation();
57   }
58 }