| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Replace the use of external 'mock' package with built-in Python
unittest.mock (present since py3.3). This also fixes all test failures
for me.
|
|
|
|
| |
Closes #631
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The nose project has ceased development. From their docs page:
https://nose.readthedocs.io/
> Note to Users
>
> Nose has been in maintenance mode for the past several years and will
> likely cease without a new person/team to take over maintainership.
> New projects should consider using Nose2, py.test, or just plain
> unittest/unittest2.
Simplify test infrastructure by using the stdlib unittest discover
command. One fewer dependency.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add JWT token with it the server knows how to validate this new type of token in resource requests
* Change find_token_type sorted function to reverse result and choose the valued estimated token handler
* Add validate_id_token method to RequestValidator
* Added unittest for JWTToken model
* Updated version of Mock
* Add get_jwt_bearer_token and validate_jwt_bearer_token oauthlib.oauth2.RequestValidator and change oauthlib.oauth2.tokens JWTToken to use it
* Change to improve token type estimate test
* Add a note in RequestValidator.validate_jwt_bearer_token about error 5xx rather 4xx
|
| |
|
|
.travis.yml
|