summary refs log tree commit diff
path: root/warteraum/test/test_integration.py
blob: 281936657b45a28eda3671a4675d3ad8d597f845 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
from flipdot_gschichtler import FlipdotGschichtlerClient, FlipdotGschichtlerError
import math
import pytest
import requests
import sys
import time

BASE_URL = 'http://localhost:9000'
TOKEN = 'hannes'

# technically somebody could use these tokens,
# but tbh they deserve this test to fail then
WRONG_TOKENS = [ 'password', 'admin', '12345678' ]

MAX_TEXT_LEN = 512

api = FlipdotGschichtlerClient(BASE_URL, api_token = TOKEN)

# API response format

def test_queue_add_format():
    my_text = 'hello world'
    r = requests.post(BASE_URL + '/api/v2/queue/add', data = { 'text' : my_text })

    assert r.status_code == 200

    assert r.json()['text'] == my_text
    my_id = r.json()['id']

    assert my_id >= 0

def test_queue_format():
    r = requests.get(BASE_URL + '/api/v2/queue')

    assert r.status_code == 200
    assert r.json()['length'] == len(r.json()['queue'])

def test_queue_del_format():
    my_id = api.add('test_queue_del_format')

    r = requests.delete('{}/api/v2/queue/{}'.format(BASE_URL, my_id), data = { 'token' : TOKEN })

    # accept unauthorized (we can't know the token if a custom one was set
    # via the nix derivation arguments)
    if r.status_code == 401:
        pytest.xfail('invalid API token is configured')

    assert r.status_code == 204

def test_queue_404_format():
    r = requests.get(BASE_URL + '/api/v2/coffee')

    assert r.status_code == 404
    assert 'not found' in r.json()['error']

def test_announcement_formats():
    my_text = 'important news'
    my_timestamp = 1607356134

    r = requests.delete(BASE_URL + '/api/v2/announcement', data = { 'token' : TOKEN })
    assert r.status_code == 204

    r1 = requests.get(BASE_URL + '/api/v2/announcement')
    assert r1.status_code == 404
    assert r1.json()['announcement'] == None
    assert r1.json()['expiry_utc'] == None

    r2 = requests.put(BASE_URL + '/api/v2/announcement', data = { 'text' : my_text, 'token' : TOKEN })
    assert r2.status_code == 200
    assert r2.json()['announcement'] == my_text
    assert r1.json()['expiry_utc'] == None

    r3 = requests.get(BASE_URL + '/api/v2/announcement')
    assert r3.status_code == 200
    assert r3.json()['announcement'] == my_text
    assert r1.json()['expiry_utc'] == None

    # check that token is required
    r4 = requests.put(BASE_URL + '/api/v2/announcement', data = { 'text' : 'oops' })
    assert r4.status_code == 400

    r5 = requests.put(BASE_URL + '/api/v2/announcement', data = { 'text' : my_text, 'token' : TOKEN, 'expiry_utc' : my_timestamp })
    assert r5.status_code == 200
    assert r5.json()['announcement'] == my_text
    assert r5.json()['expiry_utc'] == my_timestamp

# /api/v2/queue/add input validation and normalization

def test_strip_whitespace():
    r = requests.post(BASE_URL + '/api/v2/queue/add', data = { 'text' : '   foo   ' })
    assert r.json()['text'] == 'foo'

def test_text_within_tolerance():
    long_string = '?' * MAX_TEXT_LEN
    my_id = api.add(long_string)

    found = False
    for q in api.queue():
        if q['id'] == my_id:
            assert q['text'] == long_string
            found = True

    assert found

def test_too_long_text():
    long_string = '!' * (MAX_TEXT_LEN + 1)

    r = requests.post(BASE_URL + '/api/v2/queue/add', data = { 'text' : long_string })

    assert r.status_code == 413

def test_whitespace_irrelevant_for_length():
    long_string = 'foo' + (MAX_TEXT_LEN * ' ')

    r = requests.post(BASE_URL + '/api/v2/queue/add', data = { 'text' : long_string })

    assert r.status_code == 200
    assert r.json()['text'] == 'foo'

# authentication

def test_expected_authentication_failures():
    for t in WRONG_TOKENS:
        # client with wrong token
        tmp_client = FlipdotGschichtlerClient(BASE_URL, api_token = t)

        # should be able to add text
        my_id = tmp_client.add(t)

        # but not delete them
        with pytest.raises(FlipdotGschichtlerError) as exc_info:
            tmp_client.delete(my_id)

        assert exc_info.value.status == 401

        # what our normal client can do
        api.delete(my_id)

def test_correct_failure_with_valid_token():
    q = api.queue()

    if len(q) > 0:
        highest_id = q[-1]['id']
    else:
        highest_id = 0

    with pytest.raises(FlipdotGschichtlerError) as err:
        api.delete(highest_id + 1)
        assert err.status == 404

def test_expected_authentication_failures_announcement():
    my_announcement = 'announcement works'

    for t in WRONG_TOKENS:
        tmp_client = FlipdotGschichtlerClient(BASE_URL, api_token = t)

        with pytest.raises(FlipdotGschichtlerError) as exc_info:
            tmp_client.delete_announcement()

        assert exc_info.value.status == 401

        api.delete_announcement()

        with pytest.raises(FlipdotGschichtlerError) as exc_info:
            tmp_client.set_announcement(my_announcement)

        assert exc_info.value.status == 401

        api.set_announcement(my_announcement)

        assert tmp_client.announcement() == my_announcement

# queue properties

def test_queue_ascending_ids():
    for x in range(15):
        api.add(str(x))

    last_id = -1
    for q in api.queue():
        assert q['id'] > last_id
        last_id = q['id']

def test_reassigning_only_after_emptying():
    for x in range(15):
        api.add(str(x))

    queue = api.queue()

    to_delete = [x['id'] for x in queue[:-1]]

    for d in to_delete:
        api.delete(d)

    assert len(api.queue()) == 1

    for x in range(15):
        api.add(str(x))

    ids_after = [x['id'] for x in api.queue()]

    for d in to_delete:
        assert not (d in ids_after)

    for q in api.queue():
        api.delete(q['id'])

    assert api.add('only text') == 0
    assert len(api.queue()) == 1
    assert api.queue()[0]['id'] == 0

# announcement properties

def test_announcement_expiring():
    my_text = 'this announcement will become irrelevant'
    in_thirty = math.floor(time.time()) + 30

    api.set_announcement(my_text, expiry = in_thirty)

    assert api.announcement(with_expiry = True) == { 'text' : my_text, 'expiry' : in_thirty }

    time.sleep(35)

    assert api.announcement() == None