diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cassettes/test_health.yaml | 30 | ||||
-rw-r--r-- | tests/test_instance.py | 4 |
2 files changed, 34 insertions, 0 deletions
diff --git a/tests/cassettes/test_health.yaml b/tests/cassettes/test_health.yaml new file mode 100644 index 0000000..ff8e97d --- /dev/null +++ b/tests/cassettes/test_health.yaml | |||
@@ -0,0 +1,30 @@ | |||
1 | interactions: | ||
2 | - request: | ||
3 | body: null | ||
4 | headers: | ||
5 | Accept: ['*/*'] | ||
6 | Accept-Encoding: ['gzip, deflate'] | ||
7 | Authorization: [Bearer __MASTODON_PY_TEST_ACCESS_TOKEN] | ||
8 | Connection: [keep-alive] | ||
9 | User-Agent: [python-requests/2.18.4] | ||
10 | method: GET | ||
11 | uri: http://localhost:3000/health | ||
12 | response: | ||
13 | body: {string: success} | ||
14 | headers: | ||
15 | Cache-Control: ['max-age=0, private, must-revalidate'] | ||
16 | Content-Type: [text/plain; charset=utf-8] | ||
17 | Last-Modified: ['Sat, 12 Oct 2019 18:23:49 GMT'] | ||
18 | Referrer-Policy: [strict-origin-when-cross-origin] | ||
19 | Transfer-Encoding: [chunked] | ||
20 | Vary: [Accept-Encoding] | ||
21 | X-Content-Type-Options: [nosniff] | ||
22 | X-Download-Options: [noopen] | ||
23 | X-Frame-Options: [SAMEORIGIN] | ||
24 | X-Permitted-Cross-Domain-Policies: [none] | ||
25 | X-Request-Id: [13fff315-deaa-47c3-9138-d61d02c5063e] | ||
26 | X-Runtime: ['0.311003'] | ||
27 | X-XSS-Protection: [1; mode=block] | ||
28 | content-length: ['7'] | ||
29 | status: {code: 200, message: OK} | ||
30 | version: 1 | ||
diff --git a/tests/test_instance.py b/tests/test_instance.py index 0eebc57..a304585 100644 --- a/tests/test_instance.py +++ b/tests/test_instance.py | |||
@@ -32,3 +32,7 @@ def test_low_version(api_low_version): | |||
32 | @pytest.mark.vcr() | 32 | @pytest.mark.vcr() |
33 | def test_emoji(api): | 33 | def test_emoji(api): |
34 | assert len(api.custom_emojis()) == 0 | 34 | assert len(api.custom_emojis()) == 0 |
35 | |||
36 | @pytest.mark.vcr() | ||
37 | def test_health(api): | ||
38 | assert api.instance_health() == True | ||