summaryrefslogtreecommitdiff
path: root/cherrypy/test/test_auth_basic.py
Commit message (Collapse)AuthorAgeFilesLines
* Replace cherrypy.org to cherrypy.devManeesh Babu M2021-09-111-1/+1
|
* Add UTF-8 as a default charset for HTTP Auth credsSviatoslav Sydorenko2018-04-221-4/+12
|
* Add non-ASCII login/pass test into HTTP Basic AuthSviatoslav Sydorenko2018-04-221-0/+32
|
* Use bytes literals where appropriatev14.0.0Jason R. Coombs2018-02-041-1/+1
|
* Convert all strings to conform single-quoted styleSviatoslav Sydorenko2016-09-081-4/+4
| | | | pre-commit run double-quote-string-fixer --all-files
* Use decorators where appropriate.Jason R. Coombs2016-08-031-1/+1
|
* Use expose decorator throughout the codebase.Jason R. Coombs2016-06-051-3/+3
|
* Replace usage of md5 and sha with canonical importsJason R. Coombs2015-12-191-1/+3
|
* More PEP8 work.Gustavo Picon2014-01-121-9/+17
|
* Running: autopep8 -vvvvv -i `find . -name '*.py'`Gustavo Picon2014-01-121-8/+14
| | | | | --HG-- branch : autopep8
* Bye bye, py2/3.Robert Brewer2011-07-021-0/+79
|
* Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunkRobert Brewer2011-02-251-79/+0
| | | | goes in the py2 folder, and we can use a single setup.py to install either, depending on the version of Python that runs setup.py install.
* More Python 2.3 fixes.Robert Brewer2011-02-241-1/+2
|
* Freeow. The magic cherrypy/_cpcompat.py module to take all our py3k fears away.Robert Brewer2011-02-241-8/+3
|
* Removed test.py etc.Robert Brewer2010-04-271-5/+1
|
* Convert the tests to use nose instead of our own runner. This strips out ↵Joseph Tate2010-02-241-38/+36
| | | | | | much coverage and profiling (handled by nose) and lets you focus on writing tests. The biggest changes that have to be done in the tests classes is you have to put the "setup_server" method on the class(es) that need them when running. If you need it for multiple classes, you can use staticmethod() to attach it to multiple classes without using inheritance.
* trunk - adding test_auth_basic and test_auth_digest into the normal test ↵Lakin Wecker2009-06-011-1/+1
| | | | runs. Also fixing those tests for the new content-type header. Finally, flushing stdout in logtest and webtest.
* Name improvement for auth_basic and auth_digest toolsvisteya2009-05-111-2/+2
|
* Added improved Tools (and tests) for basic and digest authentication, as ↵visteya2009-05-111-0/+89
mentioned in tickets #913 and #914