canaille-globuzma/tests/test_bad_flows.py
Éloi Rivard b9376512cd wip
2021-02-01 11:07:57 +01:00

12 lines
394 B
Python

def test_incomplete_requests(testclient, slapd_connection, logged_user, client):
testclient.get(
"/oauth/authorize", params=dict(response_type="code",), status=400,
)
def test_bad_client(testclient, slapd_connection, logged_user, client):
testclient.get(
"/oauth/authorize",
params=dict(response_type="code", clienrt_id="nope",),
status=400,
)