62f36946d7cb1d788841aeeb697e7d39e4ade6cd
[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
30 import org.junit.Test;
31 import org.onap.policy.common.utils.resources.TextFileUtils;
32
33 /**
34  * Test text file utilities.
35  *
36  * @author Liam Fallon (liam.fallon@ericsson.com)
37  */
38 public class TextFileUtilsTest {
39
40     private static final String FILE_CONTENT = "This is the contents of a text file";
41
42     @Test
43     public void test() throws IOException {
44         final File tempTextFile = File.createTempFile("Test", "txt");
45
46         TextFileUtils.putStringAsTextFile(FILE_CONTENT, tempTextFile.getAbsolutePath());
47
48         final String textFileString0 = TextFileUtils.getTextFileAsString(tempTextFile.getAbsolutePath());
49         assertEquals(FILE_CONTENT, textFileString0);
50
51         final FileInputStream fis = new FileInputStream(tempTextFile);
52         final String textFileString1 = TextFileUtils.getStreamAsString(fis);
53         assertEquals(textFileString0, textFileString1);
54
55     }
56
57 }