2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.translator.impl.heattotosca.nested.single;
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;
29 import java.io.IOException;
31 public class TranslateHeatNestedSingle extends BaseResourceTranslationTest {
35 public void setUp() throws IOException {
36 // do not delete this function. it prevents the superclass setup from running
41 public void testTranslate() throws Exception {
42 inputFilesPath = "/mock/heat/nested/single/inputs";
43 outputFilesPath = "/mock/heat/nested/single/expectedoutputfiles";
45 initTranslatorAndTranslate();
47 validateNestedTemplateConsolidationData(TestConstants.TEST_SINGLE_NESTED_RESOURCE);
51 public void testTranslateNestedWithoutNodeTemplates() throws IOException {
52 inputFilesPath = "/mock/heat/nested/nestedwithoutNodeTemplates/inputs";
53 outputFilesPath = "/mock/heat/nested/nestedwithoutNodeTemplates/expectedoutputfiles";
55 initTranslatorAndTranslate();