[SDC-29] rebase continue work to align source
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / execute / setup / OnboardCSVReport.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. 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.ci.tests.execute.setup;
22
23 import java.io.File;
24 import java.io.FileNotFoundException;
25 import java.io.PrintWriter;
26
27 public class OnboardCSVReport {
28
29         private StringBuilder sb;
30         private PrintWriter pw;
31
32         public OnboardCSVReport(String filepath, String filename) {
33                 sb = new StringBuilder();
34                 try {
35                         File csvFile = new File(filepath + filename);
36                         pw = new PrintWriter(csvFile);
37                 } catch (FileNotFoundException e) {
38                         e.printStackTrace();
39                 }
40
41         }
42
43         public StringBuilder appendStringToFile(String content) {
44                 return sb.append(content + ",");
45         }
46
47         public void openNewRow() {
48                 sb.append("\n");
49         }
50
51         public void writeRow(String... content) {
52                 for (String str : content) {
53                         appendStringToFile(str);
54                 }
55                 openNewRow();
56         }
57
58         public void closeFile() {
59                 pw.write(sb.toString());
60                 pw.close();
61         }
62
63 }