diff options
author | xg353y <xg353y@intl.att.com> | 2019-03-12 13:07:46 +0100 |
---|---|---|
committer | xg353y <xg353y@intl.att.com> | 2019-03-13 11:59:04 +0100 |
commit | 4549fd92024cdadf3277d7cc364f33109ca22b59 (patch) | |
tree | 68a65abd2b9f6bba6235c8cee3515660539cedaa /src/test/java/org | |
parent | 6adb590f29c9f2ccd3270fc10334c1c0859d92e7 (diff) |
Add UI tests
Add test cases for propertyController.js
Issue-ID: CLAMP-310
Change-Id: I7ae2cc425d9a7343791bae9ab7704e09389f270a
Signed-off-by: xg353y <xg353y@intl.att.com>
Diffstat (limited to 'src/test/java/org')
-rw-r--r-- | src/test/java/org/onap/clamp/clds/it/AuthorizationControllerItCase.java | 3 |
1 files changed, 2 insertions, 1 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 477c71a0d..a15c556ed 100644 --- a/src/test/java/org/onap/clamp/clds/it/AuthorizationControllerItCase.java +++ b/src/test/java/org/onap/clamp/clds/it/AuthorizationControllerItCase.java @@ -25,6 +25,7 @@ package org.onap.clamp.clds.it; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; + import com.att.eelf.configuration.EELFLogger; import com.att.eelf.configuration.EELFManager; @@ -85,7 +86,7 @@ public class AuthorizationControllerItCase { Mockito.when(securityContext.getAuthentication()).thenReturn(authentication); PrincipalUtils.setSecurityContext(securityContext); - AuthorizationController auth = new AuthorizationController (); + AuthorizationController auth = new AuthorizationController(); assertTrue(auth.isUserPermittedNoException(new SecureServicePermission("permission-type-cl","dev","read"))); assertTrue(auth.isUserPermittedNoException(new SecureServicePermission("permission-type-cl-manage","dev","DEPLOY"))); assertTrue(auth.isUserPermittedNoException(new SecureServicePermission("permission-type-filter-vf","dev","12345-55555-55555-5555"))); |