|
@ -1,5 +1,6 @@ |
|
|
from typing import Optional |
|
|
from typing import Optional |
|
|
|
|
|
|
|
|
|
|
|
import pytest |
|
|
from dirty_equals import IsDict |
|
|
from dirty_equals import IsDict |
|
|
from fastapi import Depends, FastAPI, Security |
|
|
from fastapi import Depends, FastAPI, Security |
|
|
from fastapi.security import OAuth2, OAuth2PasswordRequestFormStrict |
|
|
from fastapi.security import OAuth2, OAuth2PasswordRequestFormStrict |
|
@ -141,10 +142,18 @@ def test_strict_login_no_grant_type(): |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_strict_login_incorrect_grant_type(): |
|
|
@pytest.mark.parametrize( |
|
|
|
|
|
argnames=["grant_type"], |
|
|
|
|
|
argvalues=[ |
|
|
|
|
|
pytest.param("incorrect", id="incorrect value"), |
|
|
|
|
|
pytest.param("passwordblah", id="password with suffix"), |
|
|
|
|
|
pytest.param("blahpassword", id="password with prefix"), |
|
|
|
|
|
], |
|
|
|
|
|
) |
|
|
|
|
|
def test_strict_login_incorrect_grant_type(grant_type: str): |
|
|
response = client.post( |
|
|
response = client.post( |
|
|
"/login", |
|
|
"/login", |
|
|
data={"username": "johndoe", "password": "secret", "grant_type": "incorrect"}, |
|
|
data={"username": "johndoe", "password": "secret", "grant_type": grant_type}, |
|
|
) |
|
|
) |
|
|
assert response.status_code == 422 |
|
|
assert response.status_code == 422 |
|
|
assert response.json() == IsDict( |
|
|
assert response.json() == IsDict( |
|
@ -153,9 +162,9 @@ def test_strict_login_incorrect_grant_type(): |
|
|
{ |
|
|
{ |
|
|
"type": "string_pattern_mismatch", |
|
|
"type": "string_pattern_mismatch", |
|
|
"loc": ["body", "grant_type"], |
|
|
"loc": ["body", "grant_type"], |
|
|
"msg": "String should match pattern 'password'", |
|
|
"msg": "String should match pattern '^password$'", |
|
|
"input": "incorrect", |
|
|
"input": grant_type, |
|
|
"ctx": {"pattern": "password"}, |
|
|
"ctx": {"pattern": "^password$"}, |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
@ -165,9 +174,9 @@ def test_strict_login_incorrect_grant_type(): |
|
|
"detail": [ |
|
|
"detail": [ |
|
|
{ |
|
|
{ |
|
|
"loc": ["body", "grant_type"], |
|
|
"loc": ["body", "grant_type"], |
|
|
"msg": 'string does not match regex "password"', |
|
|
"msg": 'string does not match regex "^password$"', |
|
|
"type": "value_error.str.regex", |
|
|
"type": "value_error.str.regex", |
|
|
"ctx": {"pattern": "password"}, |
|
|
"ctx": {"pattern": "^password$"}, |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
@ -252,7 +261,7 @@ def test_openapi_schema(): |
|
|
"properties": { |
|
|
"properties": { |
|
|
"grant_type": { |
|
|
"grant_type": { |
|
|
"title": "Grant Type", |
|
|
"title": "Grant Type", |
|
|
"pattern": "password", |
|
|
"pattern": "^password$", |
|
|
"type": "string", |
|
|
"type": "string", |
|
|
}, |
|
|
}, |
|
|
"username": {"title": "Username", "type": "string"}, |
|
|
"username": {"title": "Username", "type": "string"}, |
|
|