aboutsummaryrefslogtreecommitdiffstats
path: root/datarouter-prov
diff options
context:
space:
mode:
authoregernug <gerard.nugent@est.tech>2019-07-17 09:00:04 +0000
committeregernug <gerard.nugent@est.tech>2019-07-17 09:00:04 +0000
commit5ad15107613e7aa41af1a0c1e61c3be2e608e4c4 (patch)
tree8e284aa74d9228f032175864d3944a8bf8223820 /datarouter-prov
parent98572b78fcce9ff28fa7429c9265812bd1e78bf2 (diff)
Logging changes and unit tests
Change-Id: Ic4644e7c4899b4b1261a8113679b531af1739c84 Issue-ID: DMAAP-1227 Signed-off-by: egernug <gerard.nugent@est.tech>
Diffstat (limited to 'datarouter-prov')
-rw-r--r--datarouter-prov/src/test/java/org/onap/dmaap/datarouter/provisioning/eelf/LogbackFilterTest.java104
1 files changed, 104 insertions, 0 deletions
diff --git a/datarouter-prov/src/test/java/org/onap/dmaap/datarouter/provisioning/eelf/LogbackFilterTest.java b/datarouter-prov/src/test/java/org/onap/dmaap/datarouter/provisioning/eelf/LogbackFilterTest.java
new file mode 100644
index 00000000..79e68a68
--- /dev/null
+++ b/datarouter-prov/src/test/java/org/onap/dmaap/datarouter/provisioning/eelf/LogbackFilterTest.java
@@ -0,0 +1,104 @@
+/*******************************************************************************
+ * ============LICENSE_START==================================================
+ * * org.onap.dmaap
+ * * ===========================================================================
+ * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+ * * ===========================================================================
+ * * Licensed under the Apache License, Version 2.0 (the "License");
+ * * you may not use this file except in compliance with the License.
+ * * You may obtain a copy of the License at
+ * *
+ * * http://www.apache.org/licenses/LICENSE-2.0
+ * *
+ * * Unless required by applicable law or agreed to in writing, software
+ * * distributed under the License is distributed on an "AS IS" BASIS,
+ * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * * See the License for the specific language governing permissions and
+ * * limitations under the License.
+ * * ============LICENSE_END====================================================
+ * *
+ * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * *
+ ******************************************************************************/
+
+package org.onap.dmaap.datarouter.provisioning.eelf;
+
+import static org.junit.Assert.assertEquals;
+import static org.onap.dmaap.datarouter.provisioning.eelf.EelfMsgs.MESSAGE_WITH_BEHALF;
+
+import ch.qos.logback.classic.Level;
+import ch.qos.logback.classic.spi.LoggingEvent;
+import ch.qos.logback.core.spi.FilterReply;
+import org.junit.Test;
+
+
+
+public class LogbackFilterTest {
+
+ @Test
+ public void Given_Event_with_invalid_logger_name_and_debug_level_then_debugtracefilter_DENY(){
+ final DebugTraceFilter filter = new DebugTraceFilter();
+ filter.start();
+ final LoggingEvent event = new LoggingEvent();
+ event.setLoggerName("InvalidLogger");
+ event.setLevel(Level.DEBUG);
+ assertEquals(FilterReply.DENY, filter.decide(event));
+
+ }
+
+ @Test
+ public void Given_Event_with_valid_logger_name_and_info_level_then_debugtracefilter_DENY(){
+ final DebugTraceFilter filter = new DebugTraceFilter();
+ filter.start();
+ final LoggingEvent event = new LoggingEvent();
+ event.setLoggerName("InternalLog");
+ event.setLevel(Level.INFO);
+ assertEquals(FilterReply.DENY, filter.decide(event));
+
+ }
+
+ @Test
+ public void Given_Event_with_valid_logger_name_and_debug_level_then_debugtracefilter_ACCEPT(){
+ final DebugTraceFilter filter = new DebugTraceFilter();
+ filter.start();
+ final LoggingEvent event = new LoggingEvent();
+ event.setLoggerName("InternalLog");
+ event.setLevel(Level.DEBUG);
+ assertEquals(FilterReply.ACCEPT, filter.decide(event));
+
+ }
+
+ @Test
+ public void Given_Event_with_valid_logger_name_and_trace_level_then_debugtracefilter_ACCEPT(){
+ final DebugTraceFilter filter = new DebugTraceFilter();
+ filter.start();
+ final LoggingEvent event = new LoggingEvent();
+ event.setLoggerName("InternalLog");
+ event.setLevel(Level.TRACE);
+ assertEquals(FilterReply.ACCEPT, filter.decide(event));
+
+ }
+
+ @Test
+ public void Given_Event_with_valid_jetty_string_then_jettyfilter_ACCEPT(){
+ final JettyFilter filter = new JettyFilter();
+ filter.start();
+ final LoggingEvent event = new LoggingEvent();
+ event.setLoggerName("org.eclipse.jetty");
+ assertEquals(FilterReply.ACCEPT, filter.decide(event));
+ }
+
+ @Test
+ public void Given_Event_with_invalid_jetty_string_then_jettyfilter_DENY(){
+ final JettyFilter filter = new JettyFilter();
+ filter.start();
+ final LoggingEvent event = new LoggingEvent();
+ event.setLoggerName("org.invalid.jetty");
+ assertEquals(FilterReply.DENY, filter.decide(event));
+ }
+
+ @Test
+ public void Given_Call_to_EelfMsgs_return_the_correct_enum(){
+ assertEquals(MESSAGE_WITH_BEHALF.toString(), "MESSAGE_WITH_BEHALF");
+ }
+}