aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-11-14 17:38:30 +0300
committerFrederick Muriuki Muriithi2022-11-14 17:38:30 +0300
commit7ef618e88c4a6b04ca477213858810fc95685f4e (patch)
tree99e2df435c48bdef6d8b9489016229b31867cb31 /tests/unit
parent06b9089e4db442767573bf1eead8b5c050437071 (diff)
downloadgenenetwork3-7ef618e88c4a6b04ca477213858810fc95685f4e.tar.gz
Migrations: Create `user_roles` table
* migrations/auth/20221114_05_hQun6-create-user-roles-table.py: new migration * tests/unit/auth/test_migrations_create_tables.py: test new migration * tests/unit/auth/test_migrations_indexes.py: test new migration
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/auth/test_migrations_create_tables.py3
-rw-r--r--tests/unit/auth/test_migrations_indexes.py4
2 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/auth/test_migrations_create_tables.py b/tests/unit/auth/test_migrations_create_tables.py
index 314ade5..2d690da 100644
--- a/tests/unit/auth/test_migrations_create_tables.py
+++ b/tests/unit/auth/test_migrations_create_tables.py
@@ -24,7 +24,8 @@ migrations_and_tables = (
("20221110_07_7WGa1-create-role-privileges-table.py", "role_privileges"),
("20221114_01_n8gsF-create-generic-role-privileges-table.py",
"generic_role_privileges"),
- ("20221114_03_PtWjc-create-group-roles-table.py", "group_roles"))
+ ("20221114_03_PtWjc-create-group-roles-table.py", "group_roles"),
+ ("20221114_05_hQun6-create-user-roles-table.py", "user_roles"))
@pytest.mark.unit_test
@pytest.mark.parametrize("migration_file,the_table", migrations_and_tables)
diff --git a/tests/unit/auth/test_migrations_indexes.py b/tests/unit/auth/test_migrations_indexes.py
index b83b374..bf3cf18 100644
--- a/tests/unit/auth/test_migrations_indexes.py
+++ b/tests/unit/auth/test_migrations_indexes.py
@@ -21,7 +21,9 @@ migrations_tables_and_indexes = (
"generic_role_privileges",
"idx_tbl_generic_role_privileges_cols_generic_role_id"),
("20221114_03_PtWjc-create-group-roles-table.py", "group_roles",
- "idx_tbl_group_roles_cols_group_id"))
+ "idx_tbl_group_roles_cols_group_id"),
+ ("20221114_06_VNFqI-create-user-roles-table.py", "user_roles",
+ "idx_tbl_user_roles_cols_user_id"))
@pytest.mark.unit_test
@pytest.mark.parametrize(