summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManoop Talasila <talasila@research.att.com>2018-10-09 21:34:25 +0000
committerGerrit Code Review <gerrit@onap.org>2018-10-09 21:34:25 +0000
commit2c658b3e35fa4f0c7b87bbd211de6bedbbe13852 (patch)
tree8fdc58b9e982a4a3954bc09f4540c5ccdb990aa6
parent3df71561a2d7577d36f9d777f4cb66ae3f52cc47 (diff)
parenta4633f87da4f97cc2ff72a806d9ea01cb0daeaa2 (diff)
Merge "added a test in CustomLogginFilterTest.java"
-rw-r--r--ecomp-portal-BE-common/src/test/java/org/onap/portalapp/portal/utils/CustomLoggingFilterTest.java74
1 files changed, 43 insertions, 31 deletions
diff --git a/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/portal/utils/CustomLoggingFilterTest.java b/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/portal/utils/CustomLoggingFilterTest.java
index 1dba3167..be819498 100644
--- a/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/portal/utils/CustomLoggingFilterTest.java
+++ b/ecomp-portal-BE-common/src/test/java/org/onap/portalapp/portal/utils/CustomLoggingFilterTest.java
@@ -4,6 +4,8 @@
* ===================================================================
* Copyright © 2018 AT&T Intellectual Property. All rights reserved.
* ===================================================================
+ * Modifications Copyright © 2018 IBM.
+ * ===================================================================
*
* Unless otherwise specified, all software contained herein is licensed
* under the Apache License, Version 2.0 (the "License");
@@ -47,35 +49,45 @@ import ch.qos.logback.core.spi.FilterReply;
public class CustomLoggingFilterTest {
- @Test
- public void decideTest(){
- ILoggingEvent event = Mockito.mock(ILoggingEvent.class);
- Mockito.when(event.getLevel()).thenReturn(Level.ERROR);
- Mockito.when(event.getThreadName()).thenReturn("UEBConsumerThread");
- Mockito.when(event.getLoggerName()).thenReturn("org.onap.nsa");
- CustomLoggingFilter customLoggingFilter = new CustomLoggingFilter();
- FilterReply reply = customLoggingFilter.decide(event);
- Assert.assertEquals( FilterReply.DENY, reply);
- }
-
- @Test
- public void decideNEUTRALTest(){
- ILoggingEvent event = Mockito.mock(ILoggingEvent.class);
- Mockito.when(event.getLevel()).thenReturn(Level.ERROR);
- Mockito.when(event.getThreadName()).thenReturn("UEBConsumerThread");
- Mockito.when(event.getLoggerName()).thenReturn("test");
- CustomLoggingFilter customLoggingFilter = new CustomLoggingFilter();
- FilterReply reply = customLoggingFilter.decide(event);
- Assert.assertEquals( FilterReply.NEUTRAL, reply);
- }
-
- @Test
- public void decideExceptionTest(){
- ILoggingEvent event = Mockito.mock(ILoggingEvent.class);
- Mockito.when(event.getLevel()).thenReturn(Level.ERROR);
- Mockito.when(event.getThreadName()).thenReturn("UEBConsumerThread");
- CustomLoggingFilter customLoggingFilter = new CustomLoggingFilter();
- FilterReply reply = customLoggingFilter.decide(event);
- Assert.assertEquals( FilterReply.NEUTRAL, reply);
- }
+ @Test
+ public void decideTest(){
+ ILoggingEvent event = Mockito.mock(ILoggingEvent.class);
+ Mockito.when(event.getLevel()).thenReturn(Level.ERROR);
+ Mockito.when(event.getThreadName()).thenReturn("UEBConsumerThread");
+ Mockito.when(event.getLoggerName()).thenReturn("org.onap.nsa");
+ CustomLoggingFilter customLoggingFilter = new CustomLoggingFilter();
+ FilterReply reply = customLoggingFilter.decide(event);
+ Assert.assertEquals( FilterReply.DENY, reply);
+ }
+
+ @Test
+ public void decideNEUTRALTest(){
+ ILoggingEvent event = Mockito.mock(ILoggingEvent.class);
+ Mockito.when(event.getLevel()).thenReturn(Level.ERROR);
+ Mockito.when(event.getThreadName()).thenReturn("UEBConsumerThread");
+ Mockito.when(event.getLoggerName()).thenReturn("test");
+ CustomLoggingFilter customLoggingFilter = new CustomLoggingFilter();
+ FilterReply reply = customLoggingFilter.decide(event);
+ Assert.assertEquals( FilterReply.NEUTRAL, reply);
+ }
+
+ @Test
+ public void decideExceptionTest(){
+ ILoggingEvent event = Mockito.mock(ILoggingEvent.class);
+ Mockito.when(event.getLevel()).thenReturn(Level.ERROR);
+ Mockito.when(event.getThreadName()).thenReturn("UEBConsumerThread");
+ CustomLoggingFilter customLoggingFilter = new CustomLoggingFilter();
+ FilterReply reply = customLoggingFilter.decide(event);
+ Assert.assertEquals( FilterReply.NEUTRAL, reply);
+ }
+
+ @Test
+ public void decideExceptionTestWithLevelWarn(){
+ ILoggingEvent event = Mockito.mock(ILoggingEvent.class);
+ Mockito.when(event.getLevel()).thenReturn(Level.WARN);
+ Mockito.when(event.getThreadName()).thenReturn("org.apache.http");
+ CustomLoggingFilter customLoggingFilter = new CustomLoggingFilter();
+ FilterReply reply = customLoggingFilter.decide(event);
+ Assert.assertEquals( FilterReply.NEUTRAL, reply);
+ }
}