summaryrefslogtreecommitdiff
path: root/openid/test
Commit message (Collapse)AuthorAgeFilesLines
* Fix normalization of non-ASCII query strings on Python 2Colin Watson2020-08-171-0/+8
| | | | | | | | | | urinorm currently deals with encoding issues when normalizing the path, but not the query string. However, in some cases it can happen that the query string contains non-ASCII characters, particularly if using https://openid.net/specs/openid-simple-registration-extension-1_0.html in which case the user's full name may very well not be entirely ASCII; on Python 2 this resulted in a UnicodeEncodeError in urlencode. Work around this.
* Fix isortVlastimil Zíma2020-07-091-2/+3
|
* Fix urinorm - return plain sub delimiters in path, refs #41Vlastimil Zíma2020-07-021-1/+7
|
* Fix flake8 complaintsColin Watson2020-06-042-3/+3
| | | | | flake8 complained about "[E741] ambiguous variable name 'l'" in a few places.
* Fix TestRequestsFetcher failuresColin Watson2020-03-021-5/+9
| | | | | | | | | `responses` needs the content type to be set using the `content_type` keyword argument; using `headers` for this results in responses with `Content-Type: text/plain, text/plain`. test_invalid_url needs a slight adjustment to pass on Python 2, due to the different `repr` for text strings.
* Quieten some noisy deprecation warnings in testsColin Watson2020-03-021-14/+19
|
* Fix false positive redirect when verifying consumerVlastimil Zíma2019-10-081-0/+20
|
* Fix flake8 warningsVlastimil Zíma2019-06-171-10/+4
|
* Fix #29 - Fix assoc type as bytes in AssociationVlastimil Zíma2019-06-171-0/+6
|
* Fix isortVlastimil Zíma2019-06-171-0/+2
|
* Fix new flake8 warningsVlastimil Zíma2018-11-141-14/+0
|
* Convert data values for extensions to textVlastimil Zíma2018-08-283-1/+37
|
* Make DiffieHellman.get_shared_secret privateVlastimil Zíma2018-07-111-3/+3
|
* Fix #13 - Base64 based API for Diffie-HellmanVlastimil Zíma2018-07-113-51/+41
|
* Use base64 encoded Diffie-Hellman modulus and generatorVlastimil Zíma2018-07-114-15/+36
|
* Fix #21 - Update log message levelsVlastimil Zíma2018-06-295-18/+18
|
* Drop hash utilitiesVlastimil Zíma2018-06-251-1/+6
|
* Use cryptography for hash algorithms in DHVlastimil Zíma2018-06-253-12/+76
|
*-. Merge branches 'fix-dh-mac-secret', 'check-empty-identifiers' and ↵Vlastimil Zíma2018-06-252-0/+42
|\ \ | | | | | | | | | 'refactor-associate-script'
| | * Check empty identifiersVlastimil Zíma2018-06-081-0/+22
| |/ |/| | | | | | | | | Check if identifiers are defined instead of whether they're empty. See http://openid.net/specs/openid-authentication-2_0.html#rfc.section.9.1
| * Add fix_btwoc utility functionVlastimil Zíma2018-06-081-0/+20
|/
* Clean unclosed file warningsVlastimil Zíma2018-05-315-26/+42
|
* Clean deprecation for test assertsVlastimil Zíma2018-05-319-28/+32
|
* Clean up URL encoded messagesVlastimil Zíma2018-05-312-1/+2
|
* Capture deprecation warnings in testsVlastimil Zíma2018-05-313-9/+42
|
* Drop randrange functionVlastimil Zíma2018-05-231-18/+0
|
* Use cryptography for DH key exchangeVlastimil Zíma2018-05-231-19/+74
|
* Use cryptography for DH keysVlastimil Zíma2018-05-234-43/+34
|
* Use cryptography for DH parametersVlastimil Zíma2018-05-231-3/+13
|
* Refactor bytes <-> int conversionsVlastimil Zíma2018-05-221-0/+21
|
* Drop getBytes functionVlastimil Zíma2018-05-161-6/+0
|
* Drop randomString functionVlastimil Zíma2018-05-162-7/+5
|
* Split function for nonce salt generationVlastimil Zíma2018-05-161-1/+17
|
* Prefer stronger association methodsVlastimil Zíma2018-05-161-18/+17
|
* Fix print statementVlastimil Zíma2018-05-114-11/+16
|
* Fix exception handlingVlastimil Zíma2018-05-112-3/+5
|
* Update urinorm for python3Vlastimil Zíma2018-05-112-2/+15
|
* Fix test data loadingVlastimil Zíma2018-05-116-18/+19
|
* Use long depending on python versionVlastimil Zíma2018-05-112-9/+14
|
* Update python builtin functionsVlastimil Zíma2018-05-117-13/+13
|
* Make iterators python3 compatibleVlastimil Zíma2018-05-115-24/+12
|
* Use six imports for fetchersVlastimil Zíma2018-05-111-10/+11
|
* Use StringIO and BytesIO from sixVlastimil Zíma2018-05-112-2/+2
|
* Use six for URL utilitiesVlastimil Zíma2018-05-116-16/+17
|
* Transform remaining API to text stringsVlastimil Zíma2018-05-1117-63/+76
|
* Transform Extensions API to text stringsVlastimil Zíma2018-05-115-2/+10
|
* Transform Yadis API to text stringsVlastimil Zíma2018-05-117-16/+30
|
* Transform Association API to text stringsVlastimil Zíma2018-05-111-22/+15
|
* Update strings in cryptography and utilities APIVlastimil Zíma2018-05-117-39/+53
|
* Drop unused toUnicode utility functionVlastimil Zíma2018-05-111-13/+0
|