2015-09-06 01:20:58 +00:00
|
|
|
.. _testing:
|
|
|
|
|
|
|
|
Testing
|
|
|
|
=======
|
|
|
|
|
|
|
|
All the mitmproxy projects strive to maintain 100% code coverage. In general,
|
|
|
|
patches and pull requests will be declined unless they're accompanied by a
|
|
|
|
suitable extension to the test suite.
|
|
|
|
|
2015-09-21 16:31:30 +00:00
|
|
|
Our tests are written for the `py.test`_ or nose_ test frameworks.
|
2015-09-06 01:20:58 +00:00
|
|
|
At the point where you send your pull request, a command like this:
|
|
|
|
|
2016-10-19 22:56:38 +00:00
|
|
|
>>> py.test --cov mitmproxy
|
2015-09-06 01:20:58 +00:00
|
|
|
|
|
|
|
Should give output something like this:
|
|
|
|
|
|
|
|
.. code-block:: none
|
|
|
|
|
|
|
|
> ---------- coverage: platform darwin, python 2.7.2-final-0 --
|
|
|
|
> Name Stmts Miss Cover Missing
|
|
|
|
> ----------------------------------------------------
|
2016-02-16 19:49:10 +00:00
|
|
|
> mitmproxy/__init__ 0 0 100%
|
|
|
|
> mitmproxy/app 4 0 100%
|
|
|
|
> mitmproxy/cmdline 100 0 100%
|
|
|
|
> mitmproxy/controller 69 0 100%
|
|
|
|
> mitmproxy/dump 150 0 100%
|
|
|
|
> mitmproxy/encoding 39 0 100%
|
2016-10-04 12:50:42 +00:00
|
|
|
> mitmproxy/flowfilter 201 0 100%
|
2016-02-16 19:49:10 +00:00
|
|
|
> mitmproxy/flow 891 0 100%
|
|
|
|
> mitmproxy/proxy 427 0 100%
|
|
|
|
> mitmproxy/script 27 0 100%
|
|
|
|
> mitmproxy/utils 133 0 100%
|
|
|
|
> mitmproxy/version 4 0 100%
|
2015-09-06 01:20:58 +00:00
|
|
|
> ----------------------------------------------------
|
|
|
|
> TOTAL 2045 0 100%
|
|
|
|
> ----------------------------------------------------
|
|
|
|
> Ran 251 tests in 11.864s
|
|
|
|
|
|
|
|
|
|
|
|
There are exceptions to the coverage requirement - for instance, much of the
|
|
|
|
console interface code can't sensibly be unit tested. These portions are
|
|
|
|
excluded from coverage analysis either in the **.coveragerc** file, or using
|
|
|
|
**#pragma no-cover** directives. To keep our coverage analysis relevant, we use
|
|
|
|
these measures as sparingly as possible.
|
|
|
|
|
2015-09-07 08:52:18 +00:00
|
|
|
.. _nose: https://nose.readthedocs.org/en/latest/
|
2015-09-21 16:31:30 +00:00
|
|
|
.. _py.test: https://pytest.org/
|