diff options
-rw-r--r-- | src/test/java/org/onap/clamp/clds/it/AuthorizationControllerItCase.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/java/org/onap/clamp/clds/it/AuthorizationControllerItCase.java b/src/test/java/org/onap/clamp/clds/it/AuthorizationControllerItCase.java index 3406042c1..207e93684 100644 --- a/src/test/java/org/onap/clamp/clds/it/AuthorizationControllerItCase.java +++ b/src/test/java/org/onap/clamp/clds/it/AuthorizationControllerItCase.java @@ -6,6 +6,7 @@ * reserved. * ================================================================================ * Modifications Copyright (c) 2019 Samsung + * Modifications Copyright (C) 2020 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -32,6 +33,7 @@ import static org.junit.Assert.assertTrue; import java.util.Arrays; import java.util.Collection; import org.apache.camel.Exchange; +import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; @@ -111,6 +113,12 @@ public class AuthorizationControllerItCase { } + @AfterClass + + public static void afterCleanup() { + sc.setAuthentication(null); + } + @Test public void testIsUserPermitted() { assertEquals(AuthorizationController.getPrincipalName(sc),"admin"); |