From fbc8d034a9a034aa37cc3bc3893b4c1344bd09ee Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Thu, 3 Nov 2022 13:29:28 +0300
Subject: Rename migration test.

---
 tests/unit/auth/test_init_database.py              | 29 ----------------
 .../unit/auth/test_migration_create_users_table.py | 39 ++++++++++++++++++++++
 2 files changed, 39 insertions(+), 29 deletions(-)
 delete mode 100644 tests/unit/auth/test_init_database.py
 create mode 100644 tests/unit/auth/test_migration_create_users_table.py

diff --git a/tests/unit/auth/test_init_database.py b/tests/unit/auth/test_init_database.py
deleted file mode 100644
index bf1ed1d..0000000
--- a/tests/unit/auth/test_init_database.py
+++ /dev/null
@@ -1,29 +0,0 @@
-"""Test the auth database initialisation migration."""
-from contextlib import closing
-
-import pytest
-import sqlite3
-
-from gn3.migrations import get_migration, apply_migrations, rollback_migrations
-from tests.unit.conftest import (
-    apply_single_migration, rollback_single_migration)
-
-migration_path = "migrations/auth/20221103_01_js9ub-initialise-the-auth-entic-oris-ation-database.py"
-
-@pytest.mark.unit_test
-def test_initialise_the_database(auth_testdb):
-    with closing(sqlite3.connect(auth_testdb)) as conn, closing(conn.cursor()) as cursor:
-        cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'")
-        result = cursor.fetchall()
-        assert "users" not in [row[0] for row in cursor.fetchall()]
-        apply_single_migration(auth_testdb, get_migration(migration_path))
-        cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'")
-        assert "users" in [row[0] for row in cursor.fetchall()]
-
-@pytest.mark.unit_test
-def test_rollback_initialise_the_database(auth_testdb):
-    with closing(sqlite3.connect(auth_testdb)) as conn, closing(conn.cursor()) as cursor:
-        apply_single_migration(auth_testdb, get_migration(migration_path))
-        rollback_single_migration(auth_testdb, get_migration(migration_path))
-        cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'")
-        assert "users" not in [row[0] for row in cursor.fetchall()]
diff --git a/tests/unit/auth/test_migration_create_users_table.py b/tests/unit/auth/test_migration_create_users_table.py
new file mode 100644
index 0000000..c97c050
--- /dev/null
+++ b/tests/unit/auth/test_migration_create_users_table.py
@@ -0,0 +1,39 @@
+"""Test the auth database initialisation migration."""
+from contextlib import closing
+
+import pytest
+import sqlite3
+
+from gn3.migrations import get_migration, apply_migrations, rollback_migrations
+from tests.unit.conftest import (
+    apply_single_migration, rollback_single_migration)
+
+migration_path = "migrations/auth/20221103_01_js9ub-initialise-the-auth-entic-oris-ation-database.py"
+
+@pytest.mark.unit_test
+def test_create_users_table(auth_testdb_path):
+    """
+    GIVEN: A database migration script to create the `users` table
+    WHEN: The migration is applied
+    THEN: Ensure that the table is created
+    """
+    with closing(sqlite3.connect(auth_testdb_path)) as conn, closing(conn.cursor()) as cursor:
+        cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'")
+        result = cursor.fetchall()
+        assert "users" not in [row[0] for row in cursor.fetchall()]
+        apply_single_migration(auth_testdb_path, get_migration(migration_path))
+        cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'")
+        assert "users" in [row[0] for row in cursor.fetchall()]
+
+@pytest.mark.unit_test
+def test_rollback_create_users_table(auth_testdb_path):
+    """
+    GIVEN: A database migration script to create the `users` table
+    WHEN: The migration is rolled back
+    THEN: Ensure that the `users` table no longer exists
+    """
+    with closing(sqlite3.connect(auth_testdb_path)) as conn, closing(conn.cursor()) as cursor:
+        apply_single_migration(auth_testdb_path, get_migration(migration_path))
+        rollback_single_migration(auth_testdb_path, get_migration(migration_path))
+        cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'")
+        assert "users" not in [row[0] for row in cursor.fetchall()]
-- 
cgit v1.2.3