summaryrefslogtreecommitdiff
path: root/yarns/900-implements.yarn
blob: 49c68b25c69af54eec407c141ca60d4a65964b30 (plain)
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
<!--

Copyright 2017 Lars Wirzenius

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

-->

# Scenario step implementations (local and remote instances)

## HTTP requests of various kinds

    IMPLEMENTS WHEN user makes request GET (\S+)
    path = get_next_match()
    token = cat('token.jwt')
    url = vars['url']
    status, content_type, body = get(url + path, token)
    vars['status_code'] = status
    vars['content_type'] = content_type
    vars['body'] = body

    IMPLEMENTS WHEN user makes request POST (\S+) (.+)
    path = get_next_match()
    body_text = get_next_match()
    print('path', path)
    print('body', body_text)
    token = cat('token.jwt')
    url = vars['url']
    status, content_type, body = post(url + path, body_text, token)
    vars['status_code'] = status
    vars['content_type'] = content_type
    vars['body'] = body

    IMPLEMENTS WHEN user makes request PUT (\S+) (.+)
    path = get_next_match()
    body_text = get_next_match()
    print('path', path)
    print('body', body_text)
    token = cat('token.jwt')
    url = vars['url']
    status, content_type, body = put(url + path, body_text, token)
    vars['status_code'] = status
    vars['content_type'] = content_type
    vars['body'] = body

    IMPLEMENTS WHEN user makes request DELETE (\S+)
    path = get_next_match()
    token = cat('token.jwt')
    url = vars['url']
    status, content_type, body = delete(url + path, token)
    vars['status_code'] = status
    vars['content_type'] = content_type
    vars['body'] = body

    IMPLEMENTS WHEN worker-manager makes request POST (/\S+) (.+)
    assert 0

    IMPLEMENTS WHEN worker-manager makes request GET (/\S+)
    assert 0

## HTTP response inspection

    IMPLEMENTS THEN result has status code (\d+)
    print(cat('token.jwt'))
    expected = int(get_next_match())
    assertEqual(expected, vars['status_code'])

    IMPLEMENTS THEN body matches (.+)
    expected_text = get_next_match()
    expected = json.loads(expected_text)
    print('actual body', repr(vars['body']))
    actual = json.loads(vars['body'])
    assertEqual(expected, actual)

    IMPLEMENTS THEN version in body matches version from setup.py
    body = vars['body']
    obj = json.loads(body)
    actual = obj['version']
    setup_py = os.path.join(srcdir, 'setup.py')
    wanted = cliapp.runcmd(['python3', setup_py, '--version']).strip()
    assertTrue(wanted.startswith(actual))

    IMPLEMENTS THEN result has header (\S+): (\S+)
    assert 0