0d2c61582a658256740300533362f9b40dd76a7b
[aai/search-data-service.git] / search-data-service / src / test / java / org / onap / aai / sa / rest / TestUtils.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
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
22 package org.onap.aai.sa.rest;
23
24 import static org.junit.Assert.fail;
25
26 import java.io.BufferedReader;
27 import java.io.File;
28 import java.io.FileReader;
29 import java.io.IOException;
30
31 public class TestUtils {
32
33     /**
34      * This helper method reads the contents of a file into a simple string.
35      *
36      * @param aFile - The file to be imported.
37      *
38      * @return - The file contents expressed as a simple string.
39      *
40      * @throws IOException
41      */
42     public static String readFileToString(File aFile) throws IOException {
43
44         BufferedReader br = new BufferedReader(new FileReader(aFile));
45         try {
46             StringBuilder sb = new StringBuilder();
47             String line = br.readLine();
48
49             while (line != null) {
50                 sb.append(line);
51                 line = br.readLine();
52             }
53
54             return sb.toString().replaceAll("\\s+", "");
55         } finally {
56             try {
57                 br.close();
58             } catch (IOException e) {
59                 fail("Unexpected IOException: " + e.getMessage());
60             }
61         }
62     }
63 }