Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / misc / env / src / test / java / org / onap / aaf / misc / env / JU_LogTargetTest.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;\r
22 \r
23 import static org.junit.Assert.assertFalse;\r
24 import static org.junit.Assert.assertTrue;\r
25 import static org.mockito.Mockito.mock;\r
26 import static org.mockito.Mockito.times;\r
27 import static org.mockito.Mockito.verify;\r
28 \r
29 import java.util.Date;\r
30 \r
31 import org.junit.Before;\r
32 import org.junit.Test;\r
33 import org.mockito.Mock;\r
34 \r
35 public class JU_LogTargetTest {\r
36 \r
37     @Mock\r
38     Throwable t;\r
39 \r
40     @Before\r
41     public void setup() {\r
42         t = mock(Throwable.class);\r
43     }\r
44 \r
45     @Test\r
46     public void testLogTargetNull() {\r
47         LogTarget nullTarget = LogTarget.NULL;\r
48 \r
49         // Expect methods doing nothing as no implemenation provided.\r
50         nullTarget.log(new Throwable(), null, null);\r
51         nullTarget.log("String", null);\r
52         nullTarget.printf(null, null, null);\r
53 \r
54         assertFalse(nullTarget.isLoggable());\r
55     }\r
56 \r
57     @Test\r
58     public void testLogTargetSysOut() {\r
59         LogTarget outTarget = LogTarget.SYSOUT;\r
60 \r
61         outTarget.printf("format", new Date());\r
62         outTarget.log("null", null, null);\r
63 \r
64         outTarget.log(t);\r
65         outTarget.log(t, "First String Object");\r
66 \r
67         assertTrue(outTarget.isLoggable());\r
68 \r
69         verify(t, times(2)).printStackTrace(System.out);\r
70     }\r
71 \r
72     @Test\r
73     public void testLogTargetSysErr() {\r
74         LogTarget errTarget = LogTarget.SYSERR;\r
75 \r
76         errTarget.printf("format", new Date());\r
77         errTarget.log("null", "null");\r
78 \r
79         errTarget.log(t);\r
80         errTarget.log(t, "First String Object");\r
81 \r
82         assertTrue(errTarget.isLoggable());\r
83 \r
84         verify(t, times(2)).printStackTrace(System.err);\r
85     }\r
86 \r
87 }\r