()
| 110 | |
| 111 | |
| 112 | def test_implicit_id_token(): |
| 113 | claims = ImplicitIDToken( |
| 114 | { |
| 115 | "iss": "1", |
| 116 | "sub": "1", |
| 117 | "aud": "1", |
| 118 | "exp": 10000, |
| 119 | "iat": 100, |
| 120 | "nonce": "a", |
| 121 | }, |
| 122 | {}, |
| 123 | ) |
| 124 | claims.params = {"access_token": "a"} |
| 125 | with pytest.raises(MissingClaimError): |
| 126 | claims.validate(1000) |
| 127 | |
| 128 | |
| 129 | def test_hybrid_id_token(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…