8c2fdd6d45844049f9c991f495359fc4fb8079be
[dcaegen2/collectors/ves.git] / src / test / java / org / onap / dcae / common / JsonDataLoader.java
1 /*
2  * ============LICENSE_START=======================================================
3  * VES Collector
4  * ================================================================================
5  * Copyright (C) 2020 Nokia. All rights reserved.s
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 package org.onap.dcae.common;
21
22 import java.io.IOException;
23 import java.net.URL;
24 import java.nio.file.Files;
25 import java.nio.file.Path;
26 import java.nio.file.Paths;
27
28 /**
29  * This class is static and does not have public constructor.
30  * It is responsible for data loading fot test cases.
31  *
32  * @author Zebek
33  */
34 public final class JsonDataLoader {
35
36     private JsonDataLoader() {
37     }
38
39     /**
40      * This method is validating given event using schema and throws exception when event is invalid
41      *
42      * @param path to file that will be loaded
43      * @return contend of the file located under path, given in parameters, as string
44      * @throws IOException when file under given path was not found
45      */
46     public static String loadContent(String path) throws IOException {
47         URL resource = JsonDataLoader.class.getResource(path);
48         Path resourcePath = Paths.get(resource.getPath());
49         return new String(Files.readAllBytes(resourcePath));
50     }
51 }