Catalog alignment
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / validator / utils / ReportManagerHelper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 Samsung. All rights reserved.
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
21 package org.openecomp.sdc.asdctool.impl.validator.utils;
22
23 import org.openecomp.sdc.asdctool.impl.validator.config.ValidationConfigManager;
24
25 import java.io.BufferedReader;
26 import java.io.IOException;
27 import java.nio.file.Files;
28 import java.nio.file.Paths;
29 import java.util.List;
30 import java.util.stream.Collectors;
31
32 public class ReportManagerHelper {
33
34     private ReportManagerHelper() {
35     }
36
37     public static List<String> getReportOutputFileAsList() {
38         return readFileAsList(ValidationConfigManager.getOutputFullFilePath());
39     }
40
41     public static List<String> getReportCsvFileAsList() {
42         return readFileAsList(ValidationConfigManager.getCsvReportFilePath());
43     }
44
45     public static void cleanReports() {
46         cleanFile(ValidationConfigManager.getCsvReportFilePath());
47         cleanFile(ValidationConfigManager.getOutputFullFilePath());
48     }
49
50     private static List<String> readFileAsList(String filePath) {
51         try (BufferedReader br = Files.newBufferedReader(Paths.get(filePath))) {
52             return br.lines().collect(Collectors.toList());
53         } catch (IOException e) {
54             return null;
55         }
56     }
57
58     private static void cleanFile(String filePath) {
59         try {
60             Files.delete(Paths.get(filePath));
61         } catch (IOException ignored) {
62
63         }
64     }
65 }