[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 / impl / heattotosca / resources / OSNovaServerTest.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.impl.heattotosca.resources;
22
23 import static org.openecomp.sdc.translator.services.heattotosca.buildconsolidationdata.TestConstants.TEST_PORT_POSITIVE;
24 import static org.openecomp.sdc.translator.services.heattotosca.buildconsolidationdata.TestConstants.TEST_VOLUME_POSITIVE;
25
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.openecomp.sdc.translator.services.heattotosca.buildconsolidationdata.ConsolidationDataValidationType;
29 import org.openecomp.sdc.translator.services.heattotosca.impl.resourcetranslation.BaseResourceTranslationTest;
30
31 import java.io.IOException;
32
33 public class OSNovaServerTest extends BaseResourceTranslationTest {
34
35   @Override
36   @Before
37   public void setUp() throws IOException {
38     // do not delete this function. it prevents the superclass setup from running
39   }
40
41   @Test
42   public void testTranslate() throws Exception {
43     inputFilesPath = "/mock/heat/resources/OS_Nova_Server/inputs";
44     outputFilesPath = "/mock/heat/resources/OS_Nova_Server/expectedoutputfiles";
45     initTranslatorAndTranslate();
46     testTranslation();
47     validateComputeTemplateConsolidationData(ConsolidationDataValidationType.VALIDATE_VOLUME,
48         TEST_VOLUME_POSITIVE);
49     validateComputeTemplateConsolidationData(ConsolidationDataValidationType.VALIDATE_PORT,
50         TEST_PORT_POSITIVE);
51   }
52
53   @Test
54   public void testTranslateWithOnlyPorts() throws Exception {
55     inputFilesPath = "/mock/heat/resources/Port/inputfiles";
56     outputFilesPath = "/mock/heat/resources/Port/expectedoutputfiles";
57     initTranslatorAndTranslate();
58     testTranslation();
59     validateComputeTemplateConsolidationData(ConsolidationDataValidationType.VALIDATE_PORT,
60         TEST_PORT_POSITIVE);
61   }
62 }