|
13 | 13 | from cryptojwt.jwt import utc_time_sans_frac |
14 | 14 | from cryptojwt.utils import as_bytes |
15 | 15 | from cryptojwt.utils import b64e |
| 16 | +from oidcmsg.exception import ParameterError |
| 17 | +from oidcmsg.exception import URIError |
| 18 | +from oidcmsg.oauth2 import AuthorizationErrorResponse |
| 19 | +from oidcmsg.oauth2 import ResponseMessage |
| 20 | +from oidcmsg.oidc import AuthorizationRequest |
| 21 | +from oidcmsg.oidc import AuthorizationResponse |
| 22 | +from oidcmsg.oidc import verified_claim_name |
| 23 | +from oidcmsg.oidc import verify_id_token |
| 24 | +from oidcmsg.time_util import in_a_while |
| 25 | + |
16 | 26 | from oidcendpoint.common.authorization import FORM_POST |
17 | 27 | from oidcendpoint.common.authorization import join_query |
18 | 28 | from oidcendpoint.common.authorization import verify_uri |
|
41 | 51 | from oidcendpoint.user_authn.user import NoAuthn |
42 | 52 | from oidcendpoint.user_authn.user import UserAuthnMethod |
43 | 53 | from oidcendpoint.user_info import UserInfo |
44 | | -from oidcmsg.exception import ParameterError |
45 | | -from oidcmsg.exception import URIError |
46 | | -from oidcmsg.oauth2 import AuthorizationErrorResponse |
47 | | -from oidcmsg.oauth2 import ResponseMessage |
48 | | -from oidcmsg.oidc import AuthorizationRequest |
49 | | -from oidcmsg.oidc import AuthorizationResponse |
50 | | -from oidcmsg.oidc import verified_claim_name |
51 | | -from oidcmsg.oidc import verify_id_token |
52 | | -from oidcmsg.time_util import in_a_while |
53 | 54 |
|
54 | 55 | KEYDEFS = [ |
55 | 56 | {"type": "RSA", "key": "", "use": ["sig"]} |
@@ -1584,8 +1585,8 @@ def test_setup_auth_login_hint2acrs(self): |
1584 | 1585 | assert res["method"].user == "knoll" |
1585 | 1586 | self._reset() |
1586 | 1587 |
|
1587 | | - def test_post_logout_uri(self): |
1588 | | - pass |
| 1588 | + # def test_post_logout_uri(self): |
| 1589 | + # pass |
1589 | 1590 |
|
1590 | 1591 | def test_parse_request(self): |
1591 | 1592 | _jwt = JWT(key_jar=self.rp_keyjar, iss="client_1", sign_alg="HS256") |
|
0 commit comments