3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
16 def test_create_user_with_roles(userverifier):
17 userverifier.verify_create_user_with_roles()
20 def test_delete_users(userverifier):
21 userverifier.verify_delete_users()
24 def test_corrupted_user_list(userverifier):
25 userverifier.verify_corrupted_user_list()
28 def test_user_with_roles_raises(userverifier):
29 userverifier.verify_user_with_roles_notexist()
32 def test_user_roles_duplicates(userverifier):
33 userverifier.verify_user_roles_duplicates()
36 def test_one_user_per_roles(userverifier):
37 userverifier.verify_one_user_per_roles()
40 def test_all_roles(userverifier):
41 userverifier.verify_all_roles()
44 def test_no_roles(userverifier):
45 userverifier.verify_no_roles()
48 def test_special_roles_raises(userverifier):
49 userverifier.verify_special_roles_raises()