(client, db)
| 79 | |
| 80 | @pytest.fixture(autouse=True) |
| 81 | def client(client, db): |
| 82 | client.set_client_metadata( |
| 83 | { |
| 84 | "redirect_uris": ["https://client.test"], |
| 85 | "scope": "profile address", |
| 86 | "token_endpoint_auth_method": "client_secret_basic", |
| 87 | "response_types": ["code"], |
| 88 | "grant_types": ["authorization_code"], |
| 89 | "jwks": read_file_path("jwks_public.json"), |
| 90 | "require_signed_request_object": False, |
| 91 | } |
| 92 | ) |
| 93 | db.session.add(client) |
| 94 | db.session.commit() |
| 95 | return client |
| 96 | |
| 97 | |
| 98 | def register_request_object_extension( |
nothing calls this directly
no test coverage detected
searching dependent graphs…