-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunSuite.spec.ts
359 lines (324 loc) · 8.46 KB
/
runSuite.spec.ts
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
import { Type } from '@sinclair/typebox'
import assert from 'assert/strict'
import { randomUUID } from 'node:crypto'
import { describe, it } from 'node:test'
import path from 'path'
import { codeBlockOrThrow } from './codeBlockOrThrow.js'
import {
loadFeatureFile,
parseFeaturesInFolder,
} from './parseFeaturesInFolder.js'
import { regExpMatchedStep } from './regExpMatchedStep.js'
import {
runSuite,
type FeatureResult,
type ScenarioResult,
type StepResult,
type StepRunner,
} from './runSuite.js'
describe('runSuite()', () => {
it('should run a simple test suite', async () => {
const simpleFeature = await loadFeatureFile(
path.join(
process.cwd(),
'runner',
'test-data',
'runSuite',
'Example.feature.md',
),
)
const runner = runSuite([simpleFeature], 'Example')
runner.addStepRunners({
match: () => true,
run: async () => undefined,
})
const result = await runner.run()
assert.equal(result.ok, true)
assert.equal(result.name, 'Example')
assert.deepEqual(result.summary.failed, 0)
assert.deepEqual(result.summary.passed, 1)
assert.deepEqual(result.summary.total, 1)
assert.equal('duration' in result.summary, true)
})
it('should mark features as skipped, if they depend on a feature that failed', async () => {
const runner = runSuite(
await parseFeaturesInFolder(
path.join(
process.cwd(),
'runner',
'test-data',
'runSuite',
'skip-if-dependency-failed',
),
),
'Example',
)
runner.addStepRunners({
match: () => true,
run: async () => {
throw new Error(`Fail!`)
},
})
const result = await runner.run()
assert.equal(result.ok, false)
assert.equal(result.name, 'Example')
assert.deepEqual(result.summary.failed, 1)
assert.deepEqual(result.summary.passed, 0)
assert.deepEqual(result.summary.skipped, 1)
assert.deepEqual(result.summary.total, 2)
})
it('should fail if the suite has no features', async () => {
const runner = runSuite(
await parseFeaturesInFolder(
path.join(
process.cwd(),
'runner',
'test-data',
'runSuite',
'no-features',
),
),
'Example',
)
const result = await runner.run()
assert.equal(result.ok, false)
})
describe('run: only', () => {
it('if a feature is marked with `run: only` all other features should not be run', async () => {
const runner = runSuite(
await parseFeaturesInFolder(
path.join(process.cwd(), 'runner', 'test-data', 'runSuite', 'only'),
),
'Example',
)
runner.addStepRunners({
match: () => true,
run: async () => undefined,
})
const result = await runner.run()
assert.equal(result.ok, true)
assert.deepEqual(result.summary.failed, 0)
assert.deepEqual(result.summary.passed, 1)
assert.deepEqual(result.summary.skipped, 1)
assert.deepEqual(result.summary.total, 2)
})
it('dependencies should be run', async () => {
const runner = runSuite(
await parseFeaturesInFolder(
path.join(
process.cwd(),
'runner',
'test-data',
'runSuite',
'only-with-dependencies',
),
),
'Example',
)
runner.addStepRunners({
match: () => true,
run: async () => undefined,
})
const result = await runner.run()
assert.equal(result.ok, true)
assert.deepEqual(result.summary.failed, 0)
assert.deepEqual(result.summary.passed, 2)
assert.deepEqual(result.summary.skipped, 1)
assert.deepEqual(result.summary.total, 3)
})
})
it('should share context', async () => {
const runner = runSuite(
await parseFeaturesInFolder(
path.join(
process.cwd(),
'runner',
'test-data',
'runSuite',
'shareContextBetweenFeatures',
),
),
'Example',
)
runner.addStepRunners(
...(<StepRunner[]>[
regExpMatchedStep(
{
regExp: /^I store a random string in `(?<storageName>[^`]+)`$/,
schema: Type.Object({
storageName: Type.String(),
}),
},
async ({ match: { storageName }, context }) => {
context[storageName ?? ''] = randomUUID()
},
),
regExpMatchedStep(
{
regExp: /^`(?<value>[^`]+)` should not be empty$/,
schema: Type.Object({
value: Type.String(),
}),
},
async ({ match: { value } }) => {
assert.equal(value.length, 36)
},
),
{
match: (title) => /^it should be replaced in this JSON$/.test(title),
run: async ({ step }) => {
assert.equal(
JSON.parse(codeBlockOrThrow(step).code).aStringParameter.length,
36,
)
},
},
]),
)
const result = await runner.run()
assert.equal(result.ok, true)
assert.deepEqual(result.summary.failed, 0)
assert.deepEqual(result.summary.passed, 2)
assert.deepEqual(result.summary.skipped, 0)
assert.deepEqual(result.summary.total, 2)
})
describe('variants', () => {
it('should run features for every variant', async () => {
const runner = runSuite(
await parseFeaturesInFolder(
path.join(
process.cwd(),
'runner',
'test-data',
'runSuite',
'variants',
),
),
'Variants example',
)
const titles: string[] = []
const variants: Record<string, string>[] = []
runner.addStepRunners(
...(<StepRunner[]>[
{
match: () => true,
run: async ({ step: { title }, feature: { variant } }) => {
titles.push(title)
variants.push(variant)
return
},
},
]),
)
const result = await runner.run()
assert.equal(result.ok, true)
assert.deepEqual(result.summary.failed, 0)
assert.deepEqual(result.summary.passed, 2)
assert.deepEqual(result.summary.skipped, 0)
assert.deepEqual(result.summary.total, 2)
// ${variant.nw}
assert.equal(titles[0], 'network is `ltem` and modem is `LTE-M`')
assert.deepEqual(variants[0], {
nw: 'ltem',
modem: 'LTE-M',
})
assert.equal(titles[3], 'network is `nbiot` and modem is `NB-IoT`')
assert.deepEqual(variants[3], {
nw: 'nbiot',
modem: 'NB-IoT',
})
// <variant.nw>
assert.equal(titles[1], 'network is `ltem` and modem is `LTE-M`')
assert.deepEqual(variants[1], {
nw: 'ltem',
modem: 'LTE-M',
})
assert.equal(titles[3], 'network is `nbiot` and modem is `NB-IoT`')
assert.deepEqual(variants[3], {
nw: 'nbiot',
modem: 'NB-IoT',
})
// Embedded placeholders
assert.equal(
titles[2],
'the placeholder `ltem` is embedded in another placeholder: `some-device/pgps/get`',
)
assert.deepEqual(variants[2], {
nw: 'ltem',
modem: 'LTE-M',
})
})
})
it('should not run scenarios after a failed scenario', async () => {
const runner = runSuite(
await parseFeaturesInFolder(
path.join(
process.cwd(),
'runner',
'test-data',
'runSuite',
'skip-remaining-scenarios-after-failure',
),
),
'Skipped scenarios example',
)
runner.addStepRunners(
...(<StepRunner[]>[
{
match: () => true,
run: () => {
throw new Error(`Failure!`)
},
},
]),
)
const result = await runner.run()
assert.equal(result.ok, false)
const featureResult = result.results[0]?.[1] as FeatureResult
const scenario1 = featureResult.results[0]?.[1] as ScenarioResult
const scenario2 = featureResult.results[1]?.[1] as ScenarioResult
// First scenario should fail
assert.equal(scenario1.ok, false)
assert.equal(scenario1.skipped, false)
// Second scenario should be skipped
assert.equal(scenario1.ok, false)
assert.equal(scenario2.skipped, true, 'Skip the second scenario')
})
it('should not run steps after a failed step in a scenario', async () => {
const runner = runSuite(
await parseFeaturesInFolder(
path.join(
process.cwd(),
'runner',
'test-data',
'runSuite',
'skip-remaining-steps-after-failure',
),
),
'Skipped steps example',
)
runner.addStepRunners(
...(<StepRunner[]>[
{
match: () => true,
run: () => {
throw new Error(`Failure!`)
},
},
]),
)
const result = await runner.run()
assert.equal(result.ok, false)
const featureResult = result.results[0]?.[1] as FeatureResult
const scenario = featureResult.results[0]?.[1] as ScenarioResult
const step1 = scenario.results[0]?.[1] as StepResult
const step2 = scenario.results[1]?.[1] as StepResult
// First scenario should fail
assert.equal(scenario.ok, false)
// Second step should be skipped
assert.equal(scenario.ok, false)
assert.equal(step1.skipped, false)
assert.equal(step1.ok, false)
assert.equal(step2.skipped, true, 'Skip the second step')
})
})