f94328b88b32739f4589d4f71873dd5d1acca46e
[aai/babel.git] / src / test / java / org / onap / aai / babel / parser / TestToscaParser.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2019 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.aai.babel.parser;
23
24 import static org.hamcrest.CoreMatchers.equalTo;
25 import static org.hamcrest.CoreMatchers.is;
26 import static org.junit.Assert.assertThat;
27
28 import java.io.IOException;
29 import java.util.HashMap;
30 import java.util.List;
31 import java.util.Map;
32 import org.junit.Before;
33 import org.junit.Test;
34 import org.onap.aai.babel.csar.extractor.InvalidArchiveException;
35 import org.onap.aai.babel.testdata.CsarTest;
36 import org.onap.aai.babel.util.ArtifactTestUtils;
37 import org.onap.aai.babel.xml.generator.api.AaiArtifactGenerator;
38 import org.onap.aai.babel.xml.generator.data.AdditionalParams;
39 import org.onap.aai.babel.xml.generator.data.Artifact;
40 import org.onap.aai.babel.xml.generator.data.GenerationData;
41
42 /**
43  * Direct tests of the {@link AaiArtifactGenerator} to improve code coverage.
44  */
45 public class TestToscaParser {
46
47     static {
48         if (System.getProperty("APP_HOME") == null) {
49             System.setProperty("APP_HOME", ".");
50         }
51     }
52
53     @Before
54     public void setup() {
55         new ArtifactTestUtils().setGeneratorSystemProperties();
56     }
57
58     @Test
59     public void testParserWithCsarFile() throws IOException, InvalidArchiveException {
60         List<Artifact> ymlFiles = CsarTest.VNF_VENDOR_CSAR.extractArtifacts();
61         Map<String, String> additionalParams = new HashMap<>();
62         additionalParams.put(AdditionalParams.SERVICE_VERSION.getName(), "1.0");
63
64         AaiArtifactGenerator generator = new AaiArtifactGenerator();
65         GenerationData data =
66                 generator.generateArtifact(CsarTest.VNF_VENDOR_CSAR.getContent(), ymlFiles, additionalParams);
67
68         assertThat("Number of errors produced " + data.getErrorData(), data.getErrorData().size(), is(equalTo(0)));
69         assertThat("Number of resources generated", data.getResultData().size(), is(equalTo(2)));
70     }
71
72 }