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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
"""Test functions dealing with group management."""
from uuid import UUID
import pytest
from gn3.auth import db
from gn3.auth.authorisation.groups import Group, create_group, create_group_role
create_group_failure = {
"status": "error",
"message": "Unauthorised: Failed to create group."
}
uuid_fn = lambda : UUID("d32611e3-07fc-4564-b56c-786c6db6de2b")
@pytest.mark.unit_test
@pytest.mark.parametrize(
"user_id,expected", (
("ecb52977-3004-469e-9428-2a1856725c7f", Group(
UUID("d32611e3-07fc-4564-b56c-786c6db6de2b"), "a_test_group")),
("21351b66-8aad-475b-84ac-53ce528451e3", create_group_failure),
("ae9c6245-0966-41a5-9a5e-20885a96bea7", create_group_failure),
("9a0c7ce5-2f40-4e78-979e-bf3527a59579", create_group_failure),
("e614247d-84d2-491d-a048-f80b578216cb", create_group_failure)))
def test_create_group(# pylint: disable=[too-many-arguments]
test_app, auth_testdb_path, mocker, test_users, user_id, expected):# pylint: disable=[unused-argument]
"""
GIVEN: an authenticated user
WHEN: the user attempts to create a group
THEN: verify they are only able to create the group if they have the
appropriate privileges
"""
mocker.patch("gn3.auth.authorisation.groups.uuid4", uuid_fn)
with test_app.app_context() as flask_context:
flask_context.g.user_id = UUID(user_id)
with db.connection(auth_testdb_path) as conn:
assert create_group(conn, "a_test_group") == expected
@pytest.mark.unit_test
@pytest.mark.parametrize(
"user_id,expected", (
("ecb52977-3004-469e-9428-2a1856725c7f", Group(
UUID("d32611e3-07fc-4564-b56c-786c6db6de2b"), "a_test_group")),
("21351b66-8aad-475b-84ac-53ce528451e3", create_group_failure),
("ae9c6245-0966-41a5-9a5e-20885a96bea7", create_group_failure),
("9a0c7ce5-2f40-4e78-979e-bf3527a59579", create_group_failure),
("e614247d-84d2-491d-a048-f80b578216cb", create_group_failure)))
def test_create_group_role(mocker, test_users_in_group, test_app, user_id, expected):
"""
GIVEN: an authenticated user
WHEN: the user attempts to create a role, attached to a group
THEN: verify they are only able to create the role if they have the
appropriate privileges and that the role is attached to the given group
"""
mocker.patch("gn3.auth.authorisation.groups.uuid4", uuid_fn)
mocker.patch("gn3.auth.authorisation.roles.uuid4", uuid_fn)
conn, group, users = test_users_in_group
with test_app.app_context() as flask_context:
flask_context.g.user_id = UUID(user_id)
assert create_group_role(conn, GROUP, "a_test_role", PRIVILEGES)
assert False, "NOT IMPLEMENTED"
|