Changed audit API of logger
[sdc.git] / openecomp-be / lib / openecomp-sdc-logging-lib / openecomp-sdc-logging-core / src / test / java / org / openecomp / sdc / logging / LogFileCreationTest.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.logging;
18
19 import org.openecomp.sdc.logging.api.AuditData;
20 import org.openecomp.sdc.logging.api.Logger;
21 import org.openecomp.sdc.logging.api.LoggerFactory;
22 import org.testng.annotations.Test;
23
24 public class LogFileCreationTest {
25     private static final boolean ENABLED = false; // for manual testing change to 'true'
26     private static final Logger LOGGER = LoggerFactory.getLogger(LogFileCreationTest.class);
27
28     @Test(enabled = ENABLED)
29     public void testMetrics() {
30         LOGGER.metrics("This is metrics");
31     }
32
33     @Test(enabled = ENABLED)
34     public void testAudit() {
35         SpyAuditData auditData = new SpyAuditData();
36         LOGGER.audit(auditData);
37     }
38
39     @Test(enabled = ENABLED)
40     public void testDebug() {
41         LOGGER.debug("This is debug");
42     }
43
44     @Test(enabled = ENABLED)
45     public void testInfo() {
46         LOGGER.info("This is info");
47     }
48
49     @Test(enabled = ENABLED)
50     public void testWarn() {
51         LOGGER.warn("This is warning");
52     }
53
54     @Test(enabled = ENABLED)
55     public void testError() {
56         LOGGER.error("This is error");
57     }
58
59     private class SpyAuditData implements AuditData {
60         @Override
61         public long getStartTime() {
62
63             return 0;
64
65         }
66
67         @Override
68         public long getEndTime(){
69
70             return 0;
71         }
72
73         @Override
74         public StatusCode getStatusCode(){
75
76             return null;
77
78         }
79
80         @Override
81         public String getResponseCode(){
82
83             return null;
84
85         }
86
87         @Override
88         public String getResponseDescription(){
89
90             return null;
91
92         }
93
94         @Override
95         public String getClientIpAddress(){
96
97             return null;
98
99         }
100     }
101 }