b96d6dd0d1a0e99059d76ece460857d8213a26d7
[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         private File dir = new File(".");\r
38 \r
39         private String ending = new SimpleDateFormat("YYYYMMdd").format(new Date());\r
40 \r
41         @Before\r
42         public void setUp() throws Exception {\r
43         }\r
44 \r
45         @Test\r
46         public void test() throws IOException {\r
47                 LogFileNamer logFileNamer = new LogFileNamer(dir.getCanonicalPath(), "log");\r
48                 assertEquals(logFileNamer, logFileNamer.noPID());\r
49 \r
50                 logFileNamer.setAppender("Append");\r
51                 assertEquals(System.getProperty("LOG4J_FILENAME_Append"), dir.getCanonicalFile()+"/log-Append" + ending + "_0.log");\r
52 \r
53                 logFileNamer.setAppender("Append");\r
54                 assertEquals(System.getProperty("LOG4J_FILENAME_Append"), dir.getCanonicalFile()+"/log-Append" + ending + "_1.log");\r
55         }\r
56 \r
57         @Test\r
58         public void testBlankRoot() throws IOException {\r
59                 LogFileNamer logFileNamer = new LogFileNamer(dir.getCanonicalPath(), "");\r
60                 assertEquals(logFileNamer, logFileNamer.noPID());\r
61 \r
62                 logFileNamer.setAppender("Append");\r
63                 assertEquals(System.getProperty("LOG4J_FILENAME_Append"), dir.getCanonicalPath()+"/Append" + ending + "_0.log");\r
64 \r
65                 logFileNamer.setAppender("Append");\r
66                 assertEquals(System.getProperty("LOG4J_FILENAME_Append"), dir.getCanonicalPath()+"/Append" + ending + "_1.log");\r
67         }\r
68 \r
69         @After\r
70         public void tearDown() throws IOException {\r
71                 File file = new File("./log-Append" + ending + "_0.log");\r
72                 if (file.exists()) {\r
73                         Files.delete(Paths.get(file.getAbsolutePath()));\r
74                 }\r
75                 file = new File("./log-Append" + ending + "_1.log");\r
76                 if (file.exists()) {\r
77                         Files.delete(Paths.get(file.getAbsolutePath()));\r
78                 }\r
79                 file = new File("./Append" + ending + "_0.log");\r
80                 if (file.exists()) {\r
81                         Files.delete(Paths.get(file.getAbsolutePath()));\r
82                 }\r
83                 file = new File("./Append" + ending + "_1.log");\r
84                 if (file.exists()) {\r
85                         Files.delete(Paths.get(file.getAbsolutePath()));\r
86                 }\r
87         }\r
88 \r
89 }\r