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