Implement PNFD Model driven conversion
[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
30 public class YamlTestUtil {
31
32     private YamlTestUtil() {
33     }
34
35     /**
36      * Reads the description file that has the required YAML format.
37      *
38      * @param yamlFile The yaml file
39      * @return The yaml parsed to Object
40      */
41     public static Object read(final File yamlFile) throws IOException {
42         try (final InputStream fileInputStream = new FileInputStream(yamlFile)) {
43             return read(fileInputStream);
44         }
45     }
46
47     public static Object read(final String yamlFilePath) throws IOException {
48         try (final InputStream resourceInputStream = TestResourcesUtil.getFileResourceAsStream(yamlFilePath)) {
49             return read(resourceInputStream);
50         }
51     }
52
53     public static Object read(final InputStream yamlFileInputStream) {
54         return YamlUtil.read(yamlFileInputStream);
55     }
56
57     public static Object readOrFail(final String yamlFilePath) {
58         try {
59             return read(yamlFilePath);
60         } catch (final IOException ignored) {
61             fail(String.format("Could not load '%s'", yamlFilePath));
62             return null;
63         }
64     }
65
66
67 }