Skip to content
This repository was archived by the owner on Jun 12, 2021. It is now read-only.

Commit 78baa6b

Browse files
committed
Getting Travis testing to work.
1 parent 78314a8 commit 78baa6b

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

tests/test_24_oidc_authorization_endpoint.py

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@
1313
from cryptojwt.jwt import utc_time_sans_frac
1414
from cryptojwt.utils import as_bytes
1515
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+
1626
from oidcendpoint.common.authorization import FORM_POST
1727
from oidcendpoint.common.authorization import join_query
1828
from oidcendpoint.common.authorization import verify_uri
@@ -41,15 +51,6 @@
4151
from oidcendpoint.user_authn.user import NoAuthn
4252
from oidcendpoint.user_authn.user import UserAuthnMethod
4353
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
5354

5455
KEYDEFS = [
5556
{"type": "RSA", "key": "", "use": ["sig"]}
@@ -1584,8 +1585,8 @@ def test_setup_auth_login_hint2acrs(self):
15841585
assert res["method"].user == "knoll"
15851586
self._reset()
15861587

1587-
def test_post_logout_uri(self):
1588-
pass
1588+
# def test_post_logout_uri(self):
1589+
# pass
15891590

15901591
def test_parse_request(self):
15911592
_jwt = JWT(key_jar=self.rp_keyjar, iss="client_1", sign_alg="HS256")

0 commit comments

Comments
 (0)