Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | tests++ | Maximilian Hils | 2016-05-20 | 2 | -98/+218 |
| | |||||
* | improve MultiDict, add ImmutableMultiDict, adjust response.cookies | Maximilian Hils | 2016-05-18 | 4 | -25/+27 |
| | |||||
* | test flow export with duplicate query string | Maximilian Hils | 2016-05-18 | 4 | -3/+21 |
| | |||||
* | add MultiDict | Maximilian Hils | 2016-05-18 | 9 | -103/+56 |
| | | | | | | | | This commit introduces MultiDict, a multi-dictionary similar to ODict, but with improved semantics (as in the Headers class). MultiDict fixes a few issues that were present in the Request/Response API. In particular, `request.cookies["foo"] = "bar"` has previously been a no-op, as the cookies property returned a mutable _copy_ of the cookies. | ||||
* | tests: xfail -> skip | Maximilian Hils | 2016-05-18 | 1 | -3/+3 |
| | |||||
* | remove debug print | Thomas Kriechbaumer | 2016-05-17 | 1 | -1/+0 |
| | |||||
* | http2: add connection-lost test | Thomas Kriechbaumer | 2016-05-17 | 1 | -0/+48 |
| | |||||
* | Fix broken test_flow_export tests | Aldo Cortesi | 2016-05-18 | 1 | -34/+27 |
| | | | | | | | - Make the tests safe for concurrency - Fix a test that only passed due to prior modification of global state This also fixes the project generally for parallel test execution. | ||||
* | Clean up flow export tests | Aldo Cortesi | 2016-05-18 | 11 | -262/+242 |
| | | | | | - Externalise test data - Define a less finicky comparator for Python code | ||||
* | fix naming which caused overwriting of functions | Thomas Kriechbaumer | 2016-05-15 | 1 | -1/+1 |
| | |||||
* | http2: improve header tests (#1143) (#1144) | Thomas Kriechbaumer | 2016-05-14 | 1 | -6/+11 |
| | |||||
* | Sanitize Print (#1135) | Maximilian Hils | 2016-05-12 | 1 | -0/+15 |
| | | | | | | | | * sanitize strings with shell control characters * netlib: add utilities to safe-print bytes * escaped str: add TODO for multi-byte chars | ||||
* | disable http2 header encoding, use bytes everywhere | Thomas Kriechbaumer | 2016-05-11 | 1 | -2/+6 |
| | |||||
* | Merge pull request #1121 from Kriechi/fix-cookies | Thomas Kriechbaumer | 2016-05-11 | 4 | -5/+29 |
|\ | | | | | improve cookie parsing | ||||
| * | replace SimpleCookie with our own parser lib | Thomas Kriechbaumer | 2016-05-11 | 1 | -1/+16 |
| | | |||||
| * | improve cookie parsing | Thomas Kriechbaumer | 2016-05-10 | 3 | -4/+13 |
| | | | | | | | | | | allows '/' to be within a cookie name removes deprecated cookie getter/setter fixes #1118 | ||||
* | | improve script loading | Maximilian Hils | 2016-05-11 | 3 | -18/+20 |
| | | |||||
* | | actually fix tests | Maximilian Hils | 2016-05-10 | 1 | -2/+2 |
| | | |||||
* | | Revert "fix tests" | Maximilian Hils | 2016-05-10 | 1 | -2/+2 |
| | | | | | | | | This reverts commit f315dc1eb9f4701548fd57bbb38de1e9caa34e40. | ||||
* | | fix tests | Maximilian Hils | 2016-05-10 | 1 | -2/+2 |
|/ | |||||
* | fix #1120 | Maximilian Hils | 2016-05-09 | 1 | -0/+12 |
| | |||||
* | stateobject: support lists | Maximilian Hils | 2016-04-29 | 1 | -0/+63 |
| | |||||
* | mitmdump: don't fail for other flowtypes | Maximilian Hils | 2016-04-29 | 1 | -1/+1 |
| | |||||
* | remove netlib version check | Maximilian Hils | 2016-04-29 | 1 | -13/+0 |
| | |||||
* | FlowReadError -> FlowReadException | Maximilian Hils | 2016-04-29 | 2 | -8/+6 |
| | |||||
* | support for setting/sending multiple cookies (#1091) | Steven Van Acker | 2016-04-22 | 1 | -0/+19 |
| | | | | | | * support for setting/sending multiple cookies * py.test for multiple cookie support | ||||
* | silence flaky pathod test | Maximilian Hils | 2016-04-21 | 1 | -0/+1 |
| | |||||
* | downgrade pyparsing to fix #1087 and #1090 | Maximilian Hils | 2016-04-21 | 1 | -3/+9 |
| | |||||
* | cleanup mitmproxy.controller, raise Kill in Channel (#1085) | Maximilian Hils | 2016-04-14 | 4 | -18/+109 |
| | |||||
* | py3++ | Maximilian Hils | 2016-04-13 | 3 | -6/+6 |
| | |||||
* | peer_address -> ip_address | Maximilian Hils | 2016-04-11 | 1 | -1/+1 |
| | |||||
* | server replay: keep --kill active | Maximilian Hils | 2016-04-09 | 2 | -12/+3 |
| | |||||
* | Merge branch 'better-replace' | Maximilian Hils | 2016-04-03 | 3 | -4/+23 |
|\ | |||||
| * | improve .replace() and move it into netlib | Maximilian Hils | 2016-04-02 | 3 | -4/+23 |
| | | |||||
* | | Merge pull request #1074 from mitmproxy/move-response-refresh | Thomas Kriechbaumer | 2016-04-03 | 3 | -32/+39 |
|\ \ | | | | | | | move HTTPResponse.refresh into netlib | ||||
| * | | move HTTPResponse.refresh into netlib | Maximilian Hils | 2016-04-02 | 3 | -32/+39 |
| | | | |||||
* | | | Merge pull request #1073 from mitmproxy/first-line-format | Thomas Kriechbaumer | 2016-04-03 | 2 | -14/+14 |
|\ \ \ | | | | | | | | | form_(in|out) -> first_line_format | ||||
| * | | | form_(in|out) -> first_line_format | Maximilian Hils | 2016-04-02 | 2 | -14/+14 |
| |/ / | |||||
* / / | response.msg -> response.reason | Maximilian Hils | 2016-04-02 | 1 | -2/+2 |
|/ / | |||||
* / | fix FlowMaster.create_request, add test | Maximilian Hils | 2016-04-02 | 1 | -0/+5 |
|/ | |||||
* | add Serializeable.copy | Maximilian Hils | 2016-04-02 | 1 | -0/+27 |
| | |||||
* | merge | Zohar Lorberbaum | 2016-03-28 | 1 | -1/+0 |
| | |||||
* | Merge remote-tracking branch 'mitmproxy/master' | Zohar Lorberbaum | 2016-03-28 | 1 | -1/+0 |
| | | | | Merge with master | ||||
* | Merge with master | Zohar Lorberbaum | 2016-03-28 | 5 | -13/+35 |
| | |||||
* | cleaner target url | Zohar Lorberbaum | 2016-03-28 | 1 | -6/+6 |
| | |||||
* | locust_task re-use locust_code. | Zohar Lorberbaum | 2016-03-27 | 1 | -15/+14 |
| | |||||
* | pep8 | Zohar Lorberbaum | 2016-03-25 | 1 | -12/+12 |
| | |||||
* | Add UI shortcuts. | Zohar Lorberbaum | 2016-03-24 | 1 | -0/+9 |
| | |||||
* | Flow export to locust.io load test tool. | Zohar Lorberbaum | 2016-03-23 | 1 | -2/+187 |
| | |||||
* | netlib: request.path can be None | Maximilian Hils | 2016-03-20 | 1 | -1/+6 |
| |