aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
...
* Make WSGI apps work in transparent mode.Aldo Cortesi2012-07-101-0/+8
|
* Test replay corner cases. Fix discovered bugs.Aldo Cortesi2012-07-091-0/+12
|
* Unit test request replay thread.Aldo Cortesi2012-07-091-0/+10
| | | | | | This is a small patch, but is the culmination of lots of work: we can now unit test the deep innards of mitmproxy, with coverage. There's a lot more to come in this vein.
* Refator server tests to use flow.FlowMaster and flow.StateAldo Cortesi2012-07-093-43/+33
|
* Add streaming to FlowMasterAldo Cortesi2012-07-091-1/+27
|
* Remove ODict tests. ODict is now in netlib.Aldo Cortesi2012-07-091-111/+0
|
* Add a domain match filter (~d regex)Aldo Cortesi2012-07-061-0/+6
|
* Fix error when serializing reverted SSL flows.Aldo Cortesi2012-07-051-0/+7
|
* Catch and handle SSL connection errors.Aldo Cortesi2012-07-011-1/+3
|
* Beef up logging substantially.Aldo Cortesi2012-07-011-3/+3
|
* Handle invalid data more gracefully.Aldo Cortesi2012-06-301-1/+14
| | | | Fixes #47
* Serialization and de-serialization of new cert format.Aldo Cortesi2012-06-282-12/+4
|
* Remove certutils from mitmproxy.Aldo Cortesi2012-06-273-256/+0
|
* Remove -T and -U command-line options.Aldo Cortesi2012-06-261-8/+0
| | | | They're redundant convenience options, and we need more space.
* Adapt for API changes in netlib.Aldo Cortesi2012-06-231-1/+0
|
* Move wsgi to netlib.Aldo Cortesi2012-06-192-110/+13
|
* Extract protocol and tcp server implementations into netlib.Aldo Cortesi2012-06-192-256/+0
|
* Refactor protocol.py to remove dependence on flow and utils.Aldo Cortesi2012-06-172-33/+31
|
* Pull out protocol components into protocol.pyAldo Cortesi2012-06-163-137/+139
|
* Test suite and refactoring for netlib.Aldo Cortesi2012-06-161-1/+81
|
* Rename our tcpserver to netlib, expand to include client network functions.Aldo Cortesi2012-06-162-11/+15
|
* Fix a problem in ODictCaseless that could cause duplicate headers.Aldo Cortesi2012-06-151-0/+6
|
* Basic transparent mode.Aldo Cortesi2012-06-152-1/+32
|
* Refactor test suite to make room for transparent mode tests.Aldo Cortesi2012-06-152-37/+56
|
* First draft conversion of server to PyOpenSSL.Aldo Cortesi2012-06-132-1/+4
|
* Fix an exception when replaying a flow with no response.Aldo Cortesi2012-06-102-5/+2
|
* Localise client connection object manipulation.Aldo Cortesi2012-06-101-12/+16
| | | | This simplifies the call signature for a bunch of functions.
* Add HTTP version to response objects.Aldo Cortesi2012-06-103-5/+6
| | | | Another change in the serialization format.
* Refactoring of proxy.pyAldo Cortesi2012-06-102-6/+14
| | | | | - Correctly pass HTTP request version on to upstream servers - Adjust tests not to hang due to a pathod response with no content-length
* Add HTTP version to flow.RequestAldo Cortesi2012-06-103-12/+13
| | | | | This is a serialization format change, that makes us incompatible with previous versions.
* Consolidate HTTP major and minor versions into a single variable.Aldo Cortesi2012-06-101-10/+7
|
* Add proxy.should_connection_close, and strip out unused code.Aldo Cortesi2012-06-101-27/+9
|
* Reverse proxy testing.Aldo Cortesi2012-06-092-15/+43
|
* Move from requests to human_curl.Aldo Cortesi2012-06-091-9/+12
| | | | | It turns out that _none_ of the Python stdlib or anything that relies on it supports CONNECT through a proxy. Beggars belief, but there you go.
* Nose mopup: docs, no cover pragmas, a few missing path specs.Aldo Cortesi2012-06-092-2/+2
|
* Port mitmproxy test suite entirely to nose.Aldo Cortesi2012-06-0913-490/+401
|
* Move pathod service testing truss to nose.Aldo Cortesi2012-06-092-43/+32
|
* Start conversion to nose.Aldo Cortesi2012-06-094-173/+178
| | | | RIP pry.
* Shift mitmproxy test suite over to pathod.Aldo Cortesi2012-06-086-161/+52
| | | | This opens a whole brave new world of testing for mitmproxy.
* Split parsing of intial line into separate protocols.Aldo Cortesi2012-06-031-0/+52
|
* Add unit tests for console/help.pyAldo Cortesi2012-06-031-0/+25
|
* Fix a crashing bug when replacing text in a flow with unicode bodies.Aldo Cortesi2012-05-252-0/+10
|
* Refuse to replay a request with missing content.Aldo Cortesi2012-05-161-0/+10
|
* Add the ability to flag content as missing in a request or a response.Aldo Cortesi2012-05-161-0/+6
| | | | | | | We'll use this in a number of situations. First, we'll soon have response streaming that directly pipes responses to clients. These will be content-less from mitmproxy's perspective. Second, we'll be growing new events that fire after headers are received, but before content is read.
* Internal error page for WSGI.Aldo Cortesi2012-04-271-5/+61
| | | | Also, 100% test coverage.
* Add a WSGI adapter that lets us serve a WSGI app out of mitmproxy.Aldo Cortesi2012-04-242-0/+70
| | | | | | | | This commit adds: - A WSGI App adapter for mitmproxy - An app registry in the proxy instance that lets us link WSGI apps with (hostname, port) combinations. - Fixes for a number of bugs discovered while creating this feature.
* Serialized data version check.Aldo Cortesi2012-04-111-1/+12
|
* Add an "f" shortcut key to load full body contents.Aldo Cortesi2012-04-081-32/+39
|
* XML/HTML pretty view tweaks.Aldo Cortesi2012-04-071-8/+7
|
* Integrate lxml for pretty-printing HTML and XML.Aldo Cortesi2012-04-072-61/+20
| | | | | Tackling the pretty-printing performance problem head-on, at the cost of a major dependency.