diff options
author | Frederick Muriuki Muriithi | 2022-11-16 10:22:22 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-11-16 13:03:56 +0300 |
commit | c18e2485caa34a4ec978605b50a2e314441a78b1 (patch) | |
tree | 5cf387729195a32848f042aedfc5039493c8778f /tests | |
parent | 749537c1831afb5644aba70eb24def39aef26104 (diff) | |
download | genenetwork3-c18e2485caa34a4ec978605b50a2e314441a78b1.tar.gz |
tests: Test role creation
* tests/unit/auth/test_roles.py: new tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/auth/test_roles.py | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/unit/auth/test_roles.py b/tests/unit/auth/test_roles.py new file mode 100644 index 0000000..091a8b0 --- /dev/null +++ b/tests/unit/auth/test_roles.py @@ -0,0 +1,43 @@ +"""Test functions dealing with group management.""" +import uuid + +import pytest + +from gn3.auth import db +from gn3.auth.authorisation.privileges import Privilege +from gn3.auth.authorisation.roles import Role, create_role + +create_role_failure = { + "status": "error", + "message": "Unauthorised: Could not create role" +} + +uuid_fn = lambda : uuid.UUID("d32611e3-07fc-4564-b56c-786c6db6de2b") + +PRIVILEGES = ( + Privilege(uuid.uuid4(), "view-resource"), + Privilege(uuid.uuid4(), "edit-resource")) + +@pytest.mark.unit_test +@pytest.mark.parametrize( + "user_id,expected", ( + ("ecb52977-3004-469e-9428-2a1856725c7f", Role( + uuid.UUID("d32611e3-07fc-4564-b56c-786c6db6de2b"), "a_test_role", + PRIVILEGES)), + ("21351b66-8aad-475b-84ac-53ce528451e3", create_role_failure), + ("ae9c6245-0966-41a5-9a5e-20885a96bea7", create_role_failure), + ("9a0c7ce5-2f40-4e78-979e-bf3527a59579", create_role_failure), + ("e614247d-84d2-491d-a048-f80b578216cb", create_role_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 role + THEN: verify they are only able to create the role 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.UUID(user_id) + with db.connection(auth_testdb_path) as conn: + assert create_role(conn, "a_test_role") == expected |