forked from Github-Mirrors/canaille
19 lines
466 B
Python
19 lines
466 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,
|
|
)
|