diff options
author | codl <[email protected]> | 2017-11-30 01:54:52 +0100 |
---|---|---|
committer | codl <[email protected]> | 2017-11-30 01:54:52 +0100 |
commit | 9227528a1504ec79cf5af8e4aa15c702215abb3c (patch) | |
tree | 528d1c2cf26d44f10506a29b3134ccef46dcbfa1 /tests/cassettes/test_follow_request_authorize.yaml | |
parent | 2b4008981055f990c23bf42bb65f856231436422 (diff) | |
download | mastodon.py-9227528a1504ec79cf5af8e4aa15c702215abb3c.tar.gz |
add tests for follow request methods
Diffstat (limited to 'tests/cassettes/test_follow_request_authorize.yaml')
-rw-r--r-- | tests/cassettes/test_follow_request_authorize.yaml | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/tests/cassettes/test_follow_request_authorize.yaml b/tests/cassettes/test_follow_request_authorize.yaml new file mode 100644 index 0000000..0cb8487 --- /dev/null +++ b/tests/cassettes/test_follow_request_authorize.yaml | |||
@@ -0,0 +1,80 @@ | |||
1 | interactions: | ||
2 | - request: | ||
3 | body: null | ||
4 | headers: | ||
5 | Accept: ['*/*'] | ||
6 | Accept-Encoding: ['gzip, deflate'] | ||
7 | Authorization: [Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2] | ||
8 | Connection: [keep-alive] | ||
9 | Content-Length: ['0'] | ||
10 | User-Agent: [python-requests/2.18.4] | ||
11 | method: POST | ||
12 | uri: http://localhost:3000/api/v1/accounts/1234567890123456/follow | ||
13 | response: | ||
14 | body: {string: '{"id":"1234567890123456","following":false,"followed_by":false,"blocking":false,"muting":false,"requested":true,"domain_blocking":false}'} | ||
15 | headers: | ||
16 | Cache-Control: ['max-age=0, private, must-revalidate'] | ||
17 | Content-Type: [application/json; charset=utf-8] | ||
18 | ETag: [W/"39b04ee179b7c6820c81f24224090155"] | ||
19 | Transfer-Encoding: [chunked] | ||
20 | Vary: ['Accept-Encoding, Origin'] | ||
21 | X-Content-Type-Options: [nosniff] | ||
22 | X-Frame-Options: [SAMEORIGIN] | ||
23 | X-Request-Id: [ff6e83a7-8f9e-4e71-91fe-ab3d12a7b379] | ||
24 | X-Runtime: ['0.073482'] | ||
25 | X-XSS-Protection: [1; mode=block] | ||
26 | content-length: ['136'] | ||
27 | status: {code: 200, message: OK} | ||
28 | - request: | ||
29 | body: null | ||
30 | headers: | ||
31 | Accept: ['*/*'] | ||
32 | Accept-Encoding: ['gzip, deflate'] | ||
33 | Authorization: [Bearer __MASTODON_PY_TEST_ACCESS_TOKEN] | ||
34 | Connection: [keep-alive] | ||
35 | Content-Length: ['0'] | ||
36 | User-Agent: [python-requests/2.18.4] | ||
37 | method: POST | ||
38 | uri: http://localhost:3000/api/v1/follow_requests/1/authorize | ||
39 | response: | ||
40 | body: {string: '{}'} | ||
41 | headers: | ||
42 | Cache-Control: ['max-age=0, private, must-revalidate'] | ||
43 | Content-Type: [application/json; charset=utf-8] | ||
44 | ETag: [W/"25cc8a12b4a7526df56e78049197b9fc"] | ||
45 | Transfer-Encoding: [chunked] | ||
46 | Vary: ['Accept-Encoding, Origin'] | ||
47 | X-Content-Type-Options: [nosniff] | ||
48 | X-Frame-Options: [SAMEORIGIN] | ||
49 | X-Request-Id: [e7e70867-7816-42f7-bdfa-994f6bd2dbbc] | ||
50 | X-Runtime: ['0.040458'] | ||
51 | X-XSS-Protection: [1; mode=block] | ||
52 | content-length: ['2'] | ||
53 | status: {code: 200, message: OK} | ||
54 | - request: | ||
55 | body: null | ||
56 | headers: | ||
57 | Accept: ['*/*'] | ||
58 | Accept-Encoding: ['gzip, deflate'] | ||
59 | Authorization: [Bearer __MASTODON_PY_TEST_ACCESS_TOKEN_2] | ||
60 | Connection: [keep-alive] | ||
61 | Content-Length: ['0'] | ||
62 | User-Agent: [python-requests/2.18.4] | ||
63 | method: POST | ||
64 | uri: http://localhost:3000/api/v1/accounts/1234567890123456/unfollow | ||
65 | response: | ||
66 | body: {string: '{"id":"1234567890123456","following":false,"followed_by":false,"blocking":false,"muting":false,"requested":false,"domain_blocking":false}'} | ||
67 | headers: | ||
68 | Cache-Control: ['max-age=0, private, must-revalidate'] | ||
69 | Content-Type: [application/json; charset=utf-8] | ||
70 | ETag: [W/"fc9790ae7d4aa4b12007bc0900ea9c72"] | ||
71 | Transfer-Encoding: [chunked] | ||
72 | Vary: ['Accept-Encoding, Origin'] | ||
73 | X-Content-Type-Options: [nosniff] | ||
74 | X-Frame-Options: [SAMEORIGIN] | ||
75 | X-Request-Id: [a651ddce-80d0-484b-a2f2-6c5fb6377d06] | ||
76 | X-Runtime: ['0.040597'] | ||
77 | X-XSS-Protection: [1; mode=block] | ||
78 | content-length: ['137'] | ||
79 | status: {code: 200, message: OK} | ||
80 | version: 1 | ||