Mastodon.py/tests/README.markdown

53 wiersze
2.0 KiB
Markdown

2017-11-28 13:11:00 +00:00
## Running
To run this test suite, install the testing dependencies:
pip install -e .[test,webpush,blurhash]
2017-11-28 13:11:00 +00:00
Then, run `pytest`.
If you wish to check test coverage:
pytest --cov=mastodon
And if you want a complete HTML coverage report:
pytest --cov=mastodon --cov-report html:coverage
# then open coverage/index.html in your favourite web browser
2018-05-06 22:55:13 +00:00
Note that some tests are slightly unstable, as they require sidekiq to do things at the right time, and will thus sometimes break.
2017-11-28 13:11:00 +00:00
## Contributing
[VCR.py]: https://vcrpy.readthedocs.io/
This test suite uses [VCR.py][] to record requests to Mastodon and replay them in successive runs.
2022-11-28 22:50:02 +00:00
If you want to add or change tests, you will need a Mastodon development server running on `http://localhost:3000`.
To set this up, follow the development guide at https://docs.joinmastodon.org/dev/setup/ .
2017-11-28 13:11:00 +00:00
2022-11-28 22:50:02 +00:00
It also needs various things to be set up for it. The following command will do the trick:
2017-11-28 13:11:00 +00:00
2022-11-10 22:21:00 +00:00
sudo redis-cli flushall && sleep 3 && \
sudo /etc/init.d/redis-server restart && \
RAILS_ENV=development rails db:setup && \
RAILS_ENV=development bin/tootctl accounts create admin2 --email zerocool@example.com --confirmed --role Owner && \
RAILS_ENV=development bin/tootctl accounts create mastodonpy_test --email mastodonpy_test@localhost:3000 --confirmed && \
RAILS_ENV=development bin/tootctl accounts create mastodonpy_test_2 --email mastodonpy_test_2@localhost:3000 --confirmed && \
2022-11-13 11:14:34 +00:00
psql -d mastodon_development < ~/masto/Mastodon.py/tests/setup.sql && sleep 4 && \
2022-11-10 22:21:00 +00:00
RAILS_ENV=development DB_PASS="" foreman start
You _may_ additionally have to set up a database password and pass it as DB_PASS for the streaming tests to function.
2017-11-28 13:11:00 +00:00
2022-11-28 22:50:02 +00:00
Tests that send requests to Mastodon should be marked as needing VCR with the `pytest.mark.vcr` decorator. Streaming tests use a
heavily monkeypatched version of VCR.py to work and may behave in weird ways sometimes.
2017-11-28 13:11:00 +00:00
```python
import pytest
@pytest.mark.vcr()
def test_fun_new_feature(api):
foo = api.fun_new_feature()
assert foo = "bar"
```