From bd890c575163e4d87ac24198b9c68a39cf4bbc4d Mon Sep 17 00:00:00 2001 From: sg481n Date: Mon, 28 Aug 2017 12:11:35 -0400 Subject: Update project structure to org.onap.aaf Update project structure of authz module in aaf from com.att to org.onap.aaf and add distribution management and repositories. Issue-id: AAF-21 Change-Id: Ia2486954e99f2bd60f18122ed60d32d5590781e9 Signed-off-by: sg481n --- authz-test/TestSuite/TC_Perm1/22_rename | 52 +++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 authz-test/TestSuite/TC_Perm1/22_rename (limited to 'authz-test/TestSuite/TC_Perm1/22_rename') diff --git a/authz-test/TestSuite/TC_Perm1/22_rename b/authz-test/TestSuite/TC_Perm1/22_rename new file mode 100644 index 00000000..e2495608 --- /dev/null +++ b/authz-test/TestSuite/TC_Perm1/22_rename @@ -0,0 +1,52 @@ +# TC_Perm1.22.1.NEG Try to rename permission without changing anything +expect 409 +perm rename com.test.TC_Perm1.@[user.name].p.B myInstance myAction com.test.TC_Perm1.@[user.name].p.B myInstance myAction + +# TC_Perm1.22.2.NEG Try to rename parent ns +expect 403 +perm rename com.test.TC_Perm1.@[user.name].p.B myInstance myAction com.att.TC_Perm1.@[user.name].p.C myInstance myAction + +# TC_Perm1.22.10.POS View permission in original state +expect 200 +ns list name com.test.TC_Perm1.@[user.name] + +# TC_Perm1.22.11.POS Rename permission instance +expect 200 +perm rename com.test.TC_Perm1.@[user.name].p.B myInstance myAction com.test.TC_Perm1.@[user.name].p.B yourInstance myAction + +# TC_Perm1.22.12.POS Verify change in permission instance +expect 200 +ns list name com.test.TC_Perm1.@[user.name] + +# TC_Perm1.22.13.POS Rename permission action +expect 200 +perm rename com.test.TC_Perm1.@[user.name].p.B yourInstance myAction com.test.TC_Perm1.@[user.name].p.B yourInstance yourAction + +# TC_Perm1.22.14.POS Verify change in permission action +expect 200 +ns list name com.test.TC_Perm1.@[user.name] + +# TC_Perm1.22.15.POS Rename permission type +expect 200 +perm rename com.test.TC_Perm1.@[user.name].p.B yourInstance yourAction com.test.TC_Perm1.@[user.name].p.yourB yourInstance yourAction + +# TC_Perm1.22.16.POS Verify change in permission type +expect 200 +ns list name com.test.TC_Perm1.@[user.name] + +# TC_Perm1.22.20.POS See permission is attached to this role +expect 200 +role list role com.test.TC_Perm1.@[user.name].r.A + +# TC_Perm1.22.21.POS Rename permission type, instance and action +expect 200 +perm rename com.test.TC_Perm1.@[user.name].p.yourB yourInstance yourAction com.test.TC_Perm1.@[user.name].p.B myInstance myAction + +# TC_Perm1.22.22.POS See permission stays attached after rename +expect 200 +role list role com.test.TC_Perm1.@[user.name].r.A + +# TC_Perm1.22.23.POS Verify permission is back to original state +expect 200 +ns list name com.test.TC_Perm1.@[user.name] + -- cgit 1.2.3-korg