summaryrefslogtreecommitdiff
path: root/yarns/900-implements.yarn
blob: 5468a6c7d3f6f4d7d97736872c6852b94ffc620d (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
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
<!--

Copyright 2017-2018 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)

## Data file creation

    IMPLEMENTS WHEN user creates a blob named (\S+) with random data
    filename = get_next_match()
    n = 16
    blob = os.urandom(n)
    write(filename, blob)

## HTTP requests of various kinds

    IMPLEMENTS WHEN (\S+) makes request GET (\S+)
    user = get_next_match()
    path = get_next_match()
    token = get_token(user)
    url = vars['url']
    http(vars, get, url + path, token=token)

    IMPLEMENTS WHEN (\S+) retrieves (\S+) from artifact store
    user = get_next_match()
    path = get_next_match()
    token = get_token(user)
    url = vars['bsurl']
    http(vars, get_blob, url + path, token=token)

    IMPLEMENTS WHEN (\S+) makes request GET (\S+) with an invalid token
    user = get_next_match()
    path = get_next_match()
    token = get_token(user)
    url = vars['url']
    http(vars, get, url + path, token='invalid')

    IMPLEMENTS WHEN (\S+) makes request POST (\S+) with a valid token and body (.+)
    user = get_next_match()
    path = get_next_match()
    body = get_next_match()
    token = get_token(user)
    url = vars['url']
    http(vars, post, url + path, body=body, token=token)

    IMPLEMENTS WHEN (\S+) makes request POST (\S+) with an invalid token and body (.+)
    user = get_next_match()
    path = get_next_match()
    body = get_next_match()
    token = get_token(user)
    url = vars['url']
    http(vars, post, url + path, body=body, token='invalid')

    IMPLEMENTS WHEN (\S+) makes request PUT (\S+) with a valid token and body (.+)
    user = get_next_match()
    path = get_next_match()
    body = get_next_match()
    token = get_token(user)
    url = vars['url']
    http(vars, put, url + path, body=body, token=token)

    IMPLEMENTS WHEN (\S+) sends blob (\S+) to artifact store as (\S+)
    user = get_next_match()
    filename = get_next_match()
    path = get_next_match()
    body = cat(filename)
    token = get_token(user)
    url = vars['bsurl']
    http(vars, put_blob, url + path, body=body, token=token)

    IMPLEMENTS WHEN (\S+) makes request PUT (\S+) with an invalid token
    user = get_next_match()
    path = get_next_match()
    body = '{}'
    token = get_token(user)
    url = vars['url']
    http(vars, put, url + path, body=body, token='invalid')

    IMPLEMENTS WHEN (\S+) makes request DELETE (\S+)
    user = get_next_match()
    path = get_next_match()
    token = get_token(user)
    url = vars['url']
    http(vars, delete, url + path, token=token)

## HTTP response inspection

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

    IMPLEMENTS THEN body matches (.+)
    expected_text = get_next_match()
    expected = json.loads(expected_text)
    actual = json.loads(vars['body'])
    print 'expected'
    json.dump(expected, sys.stdout, indent=4, sort_keys=True)
    print
    print 'actual'
    json.dump(actual, sys.stdout, indent=4, sort_keys=True)
    print
    diff = dict_diff(expected, actual)
    if diff is not None:
        print(diff)
        assert 0

    IMPLEMENTS THEN body text contains "(.*)"
    pattern = unescape(get_next_match())
    text = vars['body']
    print 'pattern:', repr(pattern)
    print 'text:', text
    assertTrue(pattern in text)

    IMPLEMENTS THEN body is the same as the blob (\S+)
    filename = get_next_match()
    blob = cat(filename)
    body = vars['body']
    assertEqual(body, blob)

    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+)
    name = get_next_match()
    value = get_next_match()
    headers = vars['headers']
    assertEqual(headers[name].lower(), value.lower())

    IMPLEMENTS THEN result is step (.+)
    step = json.loads(get_next_match())
    print('expected step', step)
    body = json.loads(vars['body'])
    print('actual body', body)
    actual_step = body['step']
    print('actual step', actual_step)
    diff = dict_diff(step, actual_step)
    print('diff', diff)
    assertEqual(diff, None)

    IMPLEMENTS WHEN (\S+) requests list of builds
    user = get_next_match()
    token = get_token(user)
    url = vars['url']
    path = '/builds'
    http(vars, get, url + path, token=token)

    IMPLEMENTS THEN the list of builds is (.+)
    expected = set(json.loads(get_next_match()))
    print('expected', expected)
    body = json.loads(vars['body'])['builds']
    print('body', body)
    builds = set(build['build_id'] for build in body)
    assertEqual(builds, expected)