summaryrefslogtreecommitdiff
path: root/tests/test_common.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary workaround for bytes typeJon Dufresne2018-09-141-9/+4
| | | | | | | The type 'bytes' is available on all supported Pythons. Likewise the byte literal b'...' is available on all supported Pythons. Use idiomatic Python and remove workaround for an issue that no longer exists. Makes the code more forward compatible with Python 3.
* Remove headers from request attributesJonathan Huot2018-08-181-0/+5
|
* $ and ' are allowed to be unencoded in query strings (#564)Chris Utz2018-08-121-0/+2
|
* Sorted imports.Omer Katz2017-09-171-12/+6
|
* Update proxy keys on CaseInsensitiveDict.update()Kevin Vance2017-02-231-0/+5
|
* Merge pull request #417 from bjmc/sanitize-loggingOmer Katz2016-04-281-0/+22
|\ | | | | Improves sanitizing sensitive data from Request.__repr__
| * Tests for new sanitizationBrendan McCollam2016-04-251-0/+22
| |
* | Tests for `/` and `?` characters in query.eofs2016-03-111-1/+2
| |
* | Add unit test for urldecodeJulien Meyer2015-08-181-0/+1
|/
* Add tests when Request body has passwordHsiaoming Yang2015-07-021-0/+9
|
* #340 - raise AttributeError from common.Request.__getattr__+ add testsKyle2015-05-091-0/+14
|
* Allow unescaped @ in urlencoded parametersRyan Hiebert2014-08-241-0/+1
| | | | | | | | At least Internet Explorer does not url encode the @ symbol, such as when in an email address, in it's form uploading from HTML. Since the @ symbol doesn't have any special meaning in the querystring of a URL, not encoding it shouldn't present any problems. Thus, we should add @ to the list of allowed characters in form urlencoded data.
* Refactor common tests into subject area tests.Ib Lundgren2013-09-131-58/+93
|
* Add star to the set of safe characters in urlsMathieu Alorent2013-07-241-0/+1
|
* add comma to the set of safe characters in urlsMassimiliano2013-07-091-0/+1
|
* Added generate_client_id function to commonWiliam Souza2013-02-271-0/+11
|
* Request now use a CaseInsensitiveDict. Fix #121.Ib Lundgren2013-02-211-0/+11
|
* Revert default urlencodingIb Lundgren2013-02-051-4/+4
|
* Automatic urlencoding of input (#96).Ib Lundgren2013-01-291-5/+5
|
* Experimental default unicode conversion (#53, #68, #86)Ib Lundgren2013-01-071-2/+1
|
* Unicode decoding crash'n'burn style, default off, #53, #68.Ib Lundgren2012-11-191-0/+17
|
* Fix issue #62Ib Lundgren2012-11-081-15/+15
|
* Support Python 3Michael Terry2012-08-311-20/+20
| | | | | | These are mostly unicode string related changes and a few syntax ones. https://github.com/idan/oauthlib/issues/55
* Move shared functionality (#30)Ib Lundgren2012-06-131-0/+25
|
* Refactor utility methods, improve robustness of OAuth1 Client.signIdan Gazit2012-05-011-17/+25
| | | | | | | | | * Move quote, unquote, urldecode to oauthlib.common * Use urldecode for extract_params * Simplify request logic: store body and decoded_body instead of body_has_params * Document steps in Client.sign * Properly validate requests in Client.sign
* Add Request representationIdan Gazit2012-04-231-0/+74