blob: 519e135fcd46c4e0a943726f23aa5832ca7726cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
as testid@aaf.att.com
# TC_NSdelete1.20.1.POS Create valid Role in my Namespace
expect 201
role create com.test.TC_NSdelete1.@[user.name].app.r.A
# TC_NSdelete1.20.2.POS Create valid permission
expect 201
perm create com.test.TC_NSdelete1.@[user.name].app.p.A myInstance myAction
# TC_NSdelete1.20.3.POS Add credential to my namespace
expect 201
user cred add m99990@app.@[user.name].TC_NSdelete1.test.com password123
# TC_NSdelete1.20.10.NEG Delete Program Should fail because of attached credential
expect 424
ns delete com.test.TC_NSdelete1.@[user.name].app
# TC_NSdelete1.20.11.POS Delete Credential
expect 200
set force=true
user cred del m99990@app.@[user.name].TC_NSdelete1.test.com
# TC_NSdelete1.20.12.NEG Delete Program with role and permission attached
expect 424
ns delete com.test.TC_NSdelete1.@[user.name].app
# TC_NSdelete1.20.20.POS Expect role and permission to move to parent ns
expect 200
set force=move ns list name com.test.TC_NSdelete1.@[user.name]
|