Skip to content

Commit 1271dea

Browse files
committed
WIP:fixit
1 parent 5b3f58f commit 1271dea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/cmd/policy.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -50,20 +50,20 @@ os::cmd::expect_failure_and_text 'oc policy add-role-to-user' 'you must specify
5050
os::cmd::expect_failure_and_text 'oc policy add-role-to-user -z NamespaceWithoutRole' 'you must specify a role'
5151
os::cmd::expect_failure_and_text 'oc policy add-role-to-user view' 'you must specify at least one user or service account'
5252

53-
os::cmd::expect_success_and_text 'oc policy add-role-to-group cluster-admin system:unauthenticated' 'role "cluster-admin" added: "system:unauthenticated"'
54-
os::cmd::expect_success_and_text 'oc policy add-role-to-user cluster-admin system:no-user' 'role "cluster-admin" added: "system:no-user"'
53+
os::cmd::expect_success_and_text 'oc policy add-role-to-group cluster-admin --rolebinding-name cluster-admin system:unauthenticated' 'role "cluster-admin" added: "system:unauthenticated"'
54+
os::cmd::expect_success_and_text 'oc policy add-role-to-user --rolebinding-name cluster-admin cluster-admin system:no-user' 'role "cluster-admin" added: "system:no-user"'
5555
os::cmd::expect_success 'oc get rolebinding/cluster-admin --no-headers'
5656
os::cmd::expect_success_and_text 'oc get rolebinding/cluster-admin --no-headers' 'system:no-user'
5757

58-
os::cmd::expect_success_and_text 'oc policy add-role-to-user cluster-admin -z=one,two --serviceaccount=three,four' 'role "cluster-admin" added: \["one" "two" "three" "four"\]'
58+
os::cmd::expect_success_and_text 'oc policy add-role-to-user --rolebinding-name cluster-admin cluster-admin -z=one,two --serviceaccount=three,four' 'role "cluster-admin" added: \["one" "two" "three" "four"\]'
5959
os::cmd::expect_success 'oc get rolebinding/cluster-admin --no-headers'
6060
os::cmd::expect_success_and_text 'oc get rolebinding/cluster-admin --no-headers' 'one'
6161
os::cmd::expect_success_and_text 'oc get rolebinding/cluster-admin --no-headers' 'four'
6262

63-
os::cmd::expect_success_and_text 'oc policy remove-role-from-group cluster-admin system:unauthenticated' 'role "cluster-admin" removed: "system:unauthenticated"'
63+
os::cmd::expect_success_and_text 'oc policy remove-role-from-group --rolebinding-name cluster-admin cluster-admin system:unauthenticated' 'role "cluster-admin" removed: "system:unauthenticated"'
6464

65-
os::cmd::expect_success_and_text 'oc policy remove-role-from-user cluster-admin system:no-user' 'role "cluster-admin" removed: "system:no-user"'
66-
os::cmd::expect_success_and_text 'oc policy remove-role-from-user cluster-admin -z=one,two --serviceaccount=three,four' 'role "cluster-admin" removed: \["one" "two" "three" "four"\]'
65+
os::cmd::expect_success_and_text 'oc policy remove-role-from-user --rolebinding-name cluster-admin cluster-admin system:no-user' 'role "cluster-admin" removed: "system:no-user"'
66+
os::cmd::expect_success_and_text 'oc policy remove-role-from-user --rolebinding-name cluster-admin cluster-admin -z=one,two --serviceaccount=three,four' 'role "cluster-admin" removed: \["one" "two" "three" "four"\]'
6767
os::cmd::expect_success 'oc get rolebinding/cluster-admin --no-headers'
6868
os::cmd::expect_success_and_not_text 'oc get rolebinding/cluster-admin --no-headers' 'four'
6969

0 commit comments

Comments
 (0)