c1d255c28667d1548531d8c78fed98f08418201a
[policy/apex-pdp.git] / model / utilities / src / test / java / org / onap / policy / apex / model / utilities / DirectoryUtilsTest.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 java.io.File;
25 import java.io.IOException;
26 import java.nio.file.Files;
27 import java.util.Arrays;
28
29 import org.junit.Test;
30 import org.onap.policy.common.utils.resources.TextFileUtils;
31
32 public class DirectoryUtilsTest {
33
34     @Test
35     public void test() throws IOException {
36         DirectoryUtils.emptyDirectory(new File("/i/dont/exist"));
37
38         File tempDir = Files.createTempDirectory("test").toFile();
39
40         Files.createTempDirectory(tempDir.toPath(), "testsubprefix");
41
42         TextFileUtils.putStringAsTextFile("Temp File 0 contents", tempDir.getAbsolutePath() + "/tempFile0.tmp");
43         TextFileUtils.putStringAsTextFile("Temp File 1 contents", tempDir.getAbsolutePath() + "/tempFile1.tmp");
44
45         DirectoryUtils.emptyDirectory(tempDir);
46
47         DirectoryUtils.getLocalTempDirectory(null);
48
49         byte[] byteArray = new byte[] {0, 0, 0};
50         DirectoryUtils.getLocalTempDirectory(Arrays.toString(byteArray));
51     }
52
53 }