From a4633f87da4f97cc2ff72a806d9ea01cb0daeaa2 Mon Sep 17 00:00:00 2001 From: asgar Date: Wed, 3 Oct 2018 19:42:39 +0530 Subject: [PATCH] added a test in CustomLogginFilterTest.java Change-Id: Ib801f9ab42486d51fa64b6575124e5668a48c853 Issue-ID: PORTAL-427 Signed-off-by: Mohamed Asgar Samiulla --- .../portal/utils/CustomLoggingFilterTest.java | 74 +++++++++++++--------- 1 file 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); + } } -- 2.16.6