Validate non-mano software information artifact
[sdc.git] / openecomp-be / lib / openecomp-tosca-converter-lib / openecomp-tosca-converter-core / src / test / java / org / openecomp / core / util / YamlTestUtil.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.openecomp.core.util;
21
22 import static org.junit.Assert.fail;
23
24 import java.io.File;
25 import java.io.FileInputStream;
26 import java.io.IOException;
27 import java.io.InputStream;
28 import org.onap.sdc.tosca.services.YamlUtil;
29 import org.openecomp.sdc.be.test.util.TestResourcesHandler;
30
31 public class YamlTestUtil {
32
33     private YamlTestUtil() {
34     }
35
36     /**
37      * Reads the description file that has the required YAML format.
38      *
39      * @param yamlFile The yaml file
40      * @return The yaml parsed to Object
41      */
42     public static Object read(final File yamlFile) throws IOException {
43         try (final InputStream fileInputStream = new FileInputStream(yamlFile)) {
44             return read(fileInputStream);
45         }
46     }
47
48     public static Object read(final String yamlFilePath) throws IOException {
49         try (final InputStream resourceInputStream = TestResourcesHandler.getResourceAsStream(yamlFilePath)) {
50             return read(resourceInputStream);
51         }
52     }
53
54     public static Object read(final InputStream yamlFileInputStream) {
55         return YamlUtil.read(yamlFileInputStream);
56     }
57
58     public static Object readOrFail(final String yamlFilePath) {
59         try {
60             return read(yamlFilePath);
61         } catch (final IOException ignored) {
62             fail(String.format("Could not load '%s'", yamlFilePath));
63             return null;
64         }
65     }
66
67
68 }