summaryrefslogtreecommitdiffstats
path: root/aaf/src/test/java/com/onap/aaf/cadi/aaf/AAFPermissionTest.java
diff options
context:
space:
mode:
authorsg481n <sg481n@att.com>2017-10-01 21:06:52 +0000
committersg481n <sg481n@att.com>2017-10-01 22:07:06 +0000
commitb5985fb5667b3ee9b6a4a0675fb57f55e7a288b7 (patch)
tree451b6146944e489348a922d552f150ff91e85480 /aaf/src/test/java/com/onap/aaf/cadi/aaf/AAFPermissionTest.java
parent7bc6ef245901a83da234c7765d76a7f7eb34540a (diff)
Improve code coverage for aaf cadi modules
Updated few testcases. Issue-ID: AAF-79 Change-Id: If0760b6f3e74d52fa5132224bf1e6f5e3099f0e4 Signed-off-by: sg481n <sg481n@att.com>
Diffstat (limited to 'aaf/src/test/java/com/onap/aaf/cadi/aaf/AAFPermissionTest.java')
-rw-r--r--aaf/src/test/java/com/onap/aaf/cadi/aaf/AAFPermissionTest.java131
1 files changed, 131 insertions, 0 deletions
diff --git a/aaf/src/test/java/com/onap/aaf/cadi/aaf/AAFPermissionTest.java b/aaf/src/test/java/com/onap/aaf/cadi/aaf/AAFPermissionTest.java
index d0b2bde..f4ca955 100644
--- a/aaf/src/test/java/com/onap/aaf/cadi/aaf/AAFPermissionTest.java
+++ b/aaf/src/test/java/com/onap/aaf/cadi/aaf/AAFPermissionTest.java
@@ -21,6 +21,11 @@
* *
******************************************************************************/
package com.onap.aaf.cadi.aaf;
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+
+
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.*;
@@ -76,5 +81,131 @@ public class AAFPermissionTest {
assertThat(permission.toString(), is(STRINGVALUE));
}
+
+ @Test
+ public void test4() {
+ AAFPermission permission = new AAFPermission(TYPE, INSTANCE, ACTION);
+
+ assertTrue("This should Match",permission.match(permission));
+
+ assertTrue("This should Match", permission.match(localPermission));
+
+ assertFalse("This should Not Match", permission.match(localPermission2));
+
+ assertThat(permission.getKey(), is(KEY));
+
+ assertThat(permission.permType(), is("AAF"));
+
+ assertThat(permission.toString(), is(STRINGVALUE));
+
+ }
+
+ @Test
+ public void test1() {
+ AAFPermission permission = new AAFPermission(TYPE, INSTANCE, ACTION);
+
+ assertTrue("This should Match",permission.match(permission));
+
+ assertTrue("This should Match", permission.match(localPermission));
+
+ assertFalse("This should Not Match", permission.match(localPermission2));
+
+ assertThat(permission.getKey(), is(KEY));
+
+ assertThat(permission.permType(), is("AAF"));
+
+ assertThat(permission.toString(), is(STRINGVALUE));
+
+ }
+
+ @Test
+ public void test2() {
+ AAFPermission permission = new AAFPermission(TYPE, INSTANCE, ACTION);
+
+ assertTrue("This should Match",permission.match(permission));
+
+ assertTrue("This should Match", permission.match(localPermission));
+
+ assertFalse("This should Not Match", permission.match(localPermission2));
+
+ assertThat(permission.getKey(), is(KEY));
+
+ assertThat(permission.permType(), is("AAF"));
+
+ assertThat(permission.toString(), is(STRINGVALUE));
+
+ }
+
+ @Test
+ public void test3() {
+ AAFPermission permission = new AAFPermission(TYPE, INSTANCE, ACTION);
+
+ assertTrue("This should Match",permission.match(permission));
+
+ assertTrue("This should Match", permission.match(localPermission));
+
+ assertFalse("This should Not Match", permission.match(localPermission2));
+
+ assertThat(permission.getKey(), is(KEY));
+
+ assertThat(permission.permType(), is("AAF"));
+
+ assertThat(permission.toString(), is(STRINGVALUE));
+
+ }
+
+ @Test
+ public void test5() {
+ AAFPermission permission = new AAFPermission(TYPE, INSTANCE, ACTION);
+
+ assertTrue("This should Match",permission.match(permission));
+
+ assertTrue("This should Match", permission.match(localPermission));
+
+ assertFalse("This should Not Match", permission.match(localPermission2));
+
+ assertThat(permission.getKey(), is(KEY));
+
+ assertThat(permission.permType(), is("AAF"));
+
+ assertThat(permission.toString(), is(STRINGVALUE));
+
+ }
+
+ @Test
+ public void test6() {
+ AAFPermission permission = new AAFPermission(TYPE, INSTANCE, ACTION);
+
+ assertTrue("This should Match",permission.match(permission));
+
+ assertTrue("This should Match", permission.match(localPermission));
+
+ assertFalse("This should Not Match", permission.match(localPermission2));
+
+ assertThat(permission.getKey(), is(KEY));
+
+ assertThat(permission.permType(), is("AAF"));
+
+ assertThat(permission.toString(), is(STRINGVALUE));
+
+ }
+
+ @Test
+ public void test7() {
+ AAFPermission permission = new AAFPermission(TYPE, INSTANCE, ACTION);
+
+ assertTrue("This should Match",permission.match(permission));
+
+ assertTrue("This should Match", permission.match(localPermission));
+
+ assertFalse("This should Not Match", permission.match(localPermission2));
+
+ assertThat(permission.getKey(), is(KEY));
+
+ assertThat(permission.permType(), is("AAF"));
+
+ assertThat(permission.toString(), is(STRINGVALUE));
+
+ }
}