Changes for checkstyle 8.32
[policy/apex-pdp.git] / model / utilities / src / test / java / org / onap / policy / apex / model / utilities / TextFileUtilsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2020 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.model.utilities;
23
24 import static org.junit.Assert.assertEquals;
25
26 import java.io.File;
27 import java.io.FileInputStream;
28 import java.io.IOException;
29 import org.junit.Test;
30 import org.onap.policy.common.utils.resources.TextFileUtils;
31
32 /**
33  * Test text file utilities.
34  *
35  * @author Liam Fallon (liam.fallon@ericsson.com)
36  */
37 public class TextFileUtilsTest {
38
39     private static final String FILE_CONTENT = "This is the contents of a text file";
40
41     @Test
42     public void test() throws IOException {
43         final File tempTextFile = File.createTempFile("Test", "txt");
44
45         TextFileUtils.putStringAsTextFile(FILE_CONTENT, tempTextFile.getAbsolutePath());
46
47         final String textFileString0 = TextFileUtils.getTextFileAsString(tempTextFile.getAbsolutePath());
48         assertEquals(FILE_CONTENT, textFileString0);
49
50         final FileInputStream fis = new FileInputStream(tempTextFile);
51         final String textFileString1 = TextFileUtils.getStreamAsString(fis);
52         assertEquals(textFileString0, textFileString1);
53
54     }
55
56 }