VESCollector Test optimization
[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.
6  * Copyright (C) 2023 AT&T Intellectual Property. All rights reserved.
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 package org.onap.dcae.common;
22
23 import java.io.IOException;
24 import java.net.URI;
25 import java.net.URISyntaxException;
26 import java.net.URL;
27 import java.nio.file.Files;
28 import java.nio.file.Path;
29 import java.nio.file.Paths;
30
31 /**
32  * This class is static and does not have public constructor.
33  * It is responsible for data loading for test cases.
34  *
35  * @author Zebek
36  */
37 public final class JsonDataLoader {
38
39     private JsonDataLoader() {
40     }
41
42     /**
43      * This method is validating given event using schema and throws exception when event is invalid
44      *
45      * @param path to file that will be loaded
46      * @return contend of the file located under path, given in parameters, as string
47      * @throws IOException when file under given path was not found
48      * @throws URISyntaxException 
49      */
50     public static String loadContent(String path) throws IOException, URISyntaxException {
51         URI resource = JsonDataLoader.class.getResource(path).toURI();
52         Path resourcePath =  Paths.get(resource);
53         return new String(Files.readAllBytes(resourcePath));
54     }
55 }