-
- Downloads
Add pytest fixture to allow mocking requests with data file
Roughly, the idea is that http queries are transformed into file queries within http context. If found, the data file is served or not (404). This translates into query response so that the code can actually complete as usual. For technical reasons the pytest plugin is in a dedicated non-swh module. This is actually required for the pytest plugin loading mecanism to work without hijacking the loading of swh packages. See [1] for more details. [1] https://github.com/pytest-dev/pytest/issues/2042
Showing
- MANIFEST.in 2 additions, 0 deletionsMANIFEST.in
- setup.py 3 additions, 0 deletionssetup.py
- swh/core/pytest_plugin.py 175 additions, 0 deletionsswh/core/pytest_plugin.py
- swh/core/tests/data/example.com/file.json 3 additions, 0 deletionsswh/core/tests/data/example.com/file.json
- swh/core/tests/data/example.com/file.json_visit1 3 additions, 0 deletionsswh/core/tests/data/example.com/file.json_visit1
- swh/core/tests/data/example.com/other.json 1 addition, 0 deletionsswh/core/tests/data/example.com/other.json
- swh/core/tests/fixture/__init__.py 0 additions, 0 deletionsswh/core/tests/fixture/__init__.py
- swh/core/tests/fixture/conftest.py 16 additions, 0 deletionsswh/core/tests/fixture/conftest.py
- swh/core/tests/fixture/data/example.com/file.json 3 additions, 0 deletionsswh/core/tests/fixture/data/example.com/file.json
- swh/core/tests/fixture/test_pytest_plugin.py 25 additions, 0 deletionsswh/core/tests/fixture/test_pytest_plugin.py
- swh/core/tests/test_pytest_plugin.py 90 additions, 0 deletionsswh/core/tests/test_pytest_plugin.py
setup.py
100644 → 100755
swh/core/pytest_plugin.py
0 → 100644
swh/core/tests/data/example.com/file.json
0 → 100644
swh/core/tests/data/example.com/other.json
0 → 100644
swh/core/tests/fixture/__init__.py
0 → 100644
swh/core/tests/fixture/conftest.py
0 → 100644
swh/core/tests/fixture/test_pytest_plugin.py
0 → 100644
swh/core/tests/test_pytest_plugin.py
0 → 100644
Please register or sign in to comment