2617559dd9fa7232ce2dd374dace54933bcda6e1
[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.impl;
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
35 public class JU_JavaUtilLogTarget {
36
37     @Mock
38     Level level;
39
40     @Mock
41     Logger log;
42
43     @Before
44     public void setup() {
45         initMocks(this);
46     }
47
48     @Test
49     public void testLoggable() {
50         JavaUtilLogTarget logObj = new JavaUtilLogTarget( log, level);
51         boolean retVal = logObj.isLoggable();
52         
53         assertFalse(retVal);
54     }
55
56     @Test
57     public void testLog() {
58         JavaUtilLogTarget logObj = new JavaUtilLogTarget( log, level);
59         Mockito.doReturn(false).when(log).isLoggable(level);
60         logObj.log(new Object[] {"test","test2",""});
61         Mockito.doReturn(true).when(log).isLoggable(level);
62         logObj.log(new Object[] {"test","test2",""});
63         
64     }
65     
66     @Test
67     public void testLogThrowable() {
68         JavaUtilLogTarget logObj = new JavaUtilLogTarget( log, level);
69         
70         Mockito.doReturn(true).when(log).isLoggable(level);
71         logObj.log(new Throwable("test exception"), new Object[] {"test","test2",""});
72         logObj.log(new Throwable(), new Object[] {"test","test2",""});
73     }
74     
75     @Test
76     public void testPrintf() {
77         JavaUtilLogTarget logObj = new JavaUtilLogTarget( log, level);
78         
79         Mockito.doReturn(true).when(log).isLoggable(level);
80         logObj.printf("test", new Object[] {"test","test2",""});
81
82         Mockito.doReturn(false).when(log).isLoggable(level);
83         logObj.printf("test", new Object[] {"test","test2",""});
84     }
85 }