Fixes sonar issues in API_Artifact
[aaf/authz.git] / misc / log4j / src / test / java / org / onap / aaf / misc / env / log4j / JU_LogFileNamerTest.java
1 /**\r
2  * ============LICENSE_START====================================================\r
3  * org.onap.aaf\r
4  * ===========================================================================\r
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.\r
6  * ===========================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END====================================================\r
19  *\r
20  */\r
21 package org.onap.aaf.misc.env.log4j;\r
22 \r
23 import static org.junit.Assert.assertEquals;\r
24 \r
25 import java.io.File;\r
26 import java.io.IOException;\r
27 import java.nio.file.Files;\r
28 import java.nio.file.Paths;\r
29 import java.text.SimpleDateFormat;\r
30 import java.util.Date;\r
31 \r
32 import org.junit.After;\r
33 import org.junit.Before;\r
34 import org.junit.Test;\r
35 \r
36 public class JU_LogFileNamerTest {\r
37 \r
38         private String ending = new SimpleDateFormat("YYYYMMdd").format(new Date());\r
39 \r
40         @Before\r
41         public void setUp() throws Exception {\r
42         }\r
43 \r
44         @Test\r
45         public void test() throws IOException {\r
46                 LogFileNamer logFileNamer = new LogFileNamer(".", "log");\r
47                 assertEquals(logFileNamer, logFileNamer.noPID());\r
48 \r
49                 logFileNamer.setAppender("Append");\r
50                 assertEquals(System.getProperty("LOG4J_FILENAME_Append"), "./log-Append" + ending + "_0.log");\r
51 \r
52                 logFileNamer.setAppender("Append");\r
53                 assertEquals(System.getProperty("LOG4J_FILENAME_Append"), "./log-Append" + ending + "_1.log");\r
54         }\r
55 \r
56         @Test\r
57         public void testBlankRoot() throws IOException {\r
58                 LogFileNamer logFileNamer = new LogFileNamer(".", "");\r
59                 assertEquals(logFileNamer, logFileNamer.noPID());\r
60 \r
61                 logFileNamer.setAppender("Append");\r
62                 assertEquals(System.getProperty("LOG4J_FILENAME_Append"), "./Append" + ending + "_0.log");\r
63 \r
64                 logFileNamer.setAppender("Append");\r
65                 assertEquals(System.getProperty("LOG4J_FILENAME_Append"), "./Append" + ending + "_1.log");\r
66         }\r
67 \r
68         @After\r
69         public void tearDown() throws IOException {\r
70                 File file = new File("./log-Append" + ending + "_0.log");\r
71                 if (file.exists()) {\r
72                         Files.delete(Paths.get(file.getAbsolutePath()));\r
73                 }\r
74                 file = new File("./log-Append" + ending + "_1.log");\r
75                 if (file.exists()) {\r
76                         Files.delete(Paths.get(file.getAbsolutePath()));\r
77                 }\r
78                 file = new File("./Append" + ending + "_0.log");\r
79                 if (file.exists()) {\r
80                         Files.delete(Paths.get(file.getAbsolutePath()));\r
81                 }\r
82                 file = new File("./Append" + ending + "_1.log");\r
83                 if (file.exists()) {\r
84                         Files.delete(Paths.get(file.getAbsolutePath()));\r
85                 }\r
86         }\r
87 \r
88 }\r