Remove Tabs, per Jococo
[aaf/authz.git] / misc / env / src / test / java / org / onap / aaf / misc / env / JU_JavaUtilLogTarget.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.misc.env;
23
24 import static org.junit.Assert.assertFalse;
25 import static org.mockito.MockitoAnnotations.initMocks;
26
27 import java.util.logging.Level;
28 import java.util.logging.Logger;
29
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.mockito.Mock;
33 import org.mockito.Mockito;
34 import org.onap.aaf.misc.env.impl.JavaUtilLogTarget;
35
36 public class JU_JavaUtilLogTarget {
37
38     @Mock
39     Level level;
40
41     @Mock
42     Logger log;
43
44     @Before
45     public void setup() {
46         initMocks(this);
47     }
48
49     @Test
50     public void testLoggable() {
51         JavaUtilLogTarget logObj = new JavaUtilLogTarget( log, level);
52         boolean retVal = logObj.isLoggable();
53         
54         assertFalse(retVal);
55     }
56
57     @Test
58     public void testLog() {
59         JavaUtilLogTarget logObj = new JavaUtilLogTarget( log, level);
60         Mockito.doReturn(false).when(log).isLoggable(level);
61         logObj.log(new Object[] {"test","test2",""});
62         Mockito.doReturn(true).when(log).isLoggable(level);
63         logObj.log(new Object[] {"test","test2",""});
64         
65     }
66     
67     @Test
68     public void testLogThrowable() {
69         JavaUtilLogTarget logObj = new JavaUtilLogTarget( log, level);
70         
71         Mockito.doReturn(true).when(log).isLoggable(level);
72         logObj.log(new Throwable("test exception"), new Object[] {"test","test2",""});
73         logObj.log(new Throwable(), new Object[] {"test","test2",""});
74     }
75     
76     @Test
77     public void testPrintf() {
78         JavaUtilLogTarget logObj = new JavaUtilLogTarget( log, level);
79         
80         Mockito.doReturn(true).when(log).isLoggable(level);
81         logObj.printf("test", new Object[] {"test","test2",""});
82
83         Mockito.doReturn(false).when(log).isLoggable(level);
84         logObj.printf("test", new Object[] {"test","test2",""});
85     }
86 }