aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-08-07 12:17:08 +0300
committerFrederick Muriuki Muriithi2023-08-07 12:29:09 +0300
commit91061a7b4af2aaa7c7c97d0cd215a0dc28a42419 (patch)
tree59ae52f8ebebb86ec3917ad387d9b7d136480dcc /tests
parentaf9ab012a3763e3046d8c42a8af8fd5c06e3df04 (diff)
downloadgn-auth-91061a7b4af2aaa7c7c97d0cd215a0dc28a42419.tar.gz
Fix tests
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/auth/test_token.py2
-rw-r--r--tests/unit/conftest.py5
2 files changed, 4 insertions, 3 deletions
diff --git a/tests/unit/auth/test_token.py b/tests/unit/auth/test_token.py
index f66954f..971e4de 100644
--- a/tests/unit/auth/test_token.py
+++ b/tests/unit/auth/test_token.py
@@ -53,7 +53,7 @@ def test_token(fxtr_app, fxtr_oauth2_clients, test_data, expected):
"username": email, "password": password}
with fxtr_app.test_client() as client, db.cursor(conn) as cursor:
- res = client.post("/api/oauth2/token", data=data)
+ res = client.post("/auth/token", data=data)
# cleanup db
cursor.execute("DELETE FROM oauth2_tokens WHERE access_token=?",
(gen_token(None, None, None, None),))
diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py
index 4180528..2230f7a 100644
--- a/tests/unit/conftest.py
+++ b/tests/unit/conftest.py
@@ -5,7 +5,7 @@ from tempfile import TemporaryDirectory
import pytest
-from gn_auth.app import create_app
+from gn_auth import create_app
@pytest.fixture(scope="session")
def fxtr_app():
@@ -16,7 +16,8 @@ def fxtr_app():
f'testdb_{datetime.now().strftime("%Y%m%dT%H%M%S")}')
app = create_app({
"TESTING": True, "AUTH_DB": testdb,
- "OAUTH2_ACCESS_TOKEN_GENERATOR": "tests.unit.auth.test_token.gen_token"
+ "OAUTH2_ACCESS_TOKEN_GENERATOR": "tests.unit.auth.test_token.gen_token",
+ "SECRET_KEY": "qQIrgiK29kXZU6v8D09y4uw_sk8I4cqgNZniYUrRoUk"
})
app.testing = True
yield app