-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
issue_helpers_spec.ts
248 lines (216 loc) · 5.88 KB
/
issue_helpers_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
import { describe, it } from 'mocha'
import { expect } from 'chai'
import getColorFns from '../get_color_fns'
import { formatIssue } from './issue_helpers'
import figures from 'figures'
import { getTestCaseAttempts } from '../../../test/formatter_helpers'
import { getBaseSupportCodeLibrary } from '../../../test/fixtures/steps'
import FormatterBuilder from '../builder'
async function testFormatIssue(sourceData: string): Promise<string> {
const sources = [
{
data: sourceData,
uri: 'a.feature',
},
]
const supportCodeLibrary = getBaseSupportCodeLibrary()
const [testCaseAttempt] = await getTestCaseAttempts({
sources,
supportCodeLibrary,
})
return formatIssue({
cwd: 'project/',
colorFns: getColorFns(false),
number: 1,
snippetBuilder: FormatterBuilder.getStepDefinitionSnippetBuilder({
cwd: 'project/',
supportCodeLibrary,
}),
supportCodeLibrary,
testCaseAttempt,
})
}
describe('IssueHelpers', () => {
describe('formatIssue', () => {
describe('with a failed step', () => {
it('prints the scenario', async () => {
// Arrange
const sourceData = `\
Feature: my feature
Scenario: my scenario
Given a passing step
When a failing step
Then a passing step
`
// Act
const output = await testFormatIssue(sourceData)
// Assert
expect(output).to.eql(`\
1) Scenario: my scenario # a.feature:2
${figures.tick} Given a passing step # steps.ts:29
${figures.cross} When a failing step # steps.ts:9
error
- Then a passing step # steps.ts:29
`)
})
})
describe('with an ambiguous step', () => {
it('returns the formatted scenario', async () => {
// Arrange
const sourceData = `\
Feature: my feature
Scenario: my scenario
Given a passing step
When an ambiguous step
Then a passing step
`
// Act
const output = await testFormatIssue(sourceData)
// Assert
expect(output).to.eql(`\
1) Scenario: my scenario # a.feature:2
${figures.tick} Given a passing step # steps.ts:29
${figures.cross} When an ambiguous step
Multiple step definitions match:
an ambiguous step - steps.ts:13
/an? ambiguous step/ - steps.ts:14
- Then a passing step # steps.ts:29
`)
})
})
describe('with an undefined step', () => {
it('returns the formatted scenario', async () => {
// Arrange
const sourceData = `\
Feature: my feature
Scenario: my scenario
Given a passing step
When an undefined step
Then a passing step
`
// Act
const output = await testFormatIssue(sourceData)
// Assert
expect(output).to.eql(`\
1) Scenario: my scenario # a.feature:2
${figures.tick} Given a passing step # steps.ts:29
? When an undefined step
Undefined. Implement with the following snippet:
When('an undefined step', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
- Then a passing step # steps.ts:29
`)
})
})
describe('with a pending step', () => {
it('returns the formatted scenario', async () => {
// Arrange
const sourceData = `\
Feature: my feature
Scenario: my scenario
Given a passing step
When a pending step
Then a passing step
`
// Act
const output = await testFormatIssue(sourceData)
// Assert
expect(output).to.eql(`\
1) Scenario: my scenario # a.feature:2
${figures.tick} Given a passing step # steps.ts:29
? When a pending step # steps.ts:16
Pending
- Then a passing step # steps.ts:29
`)
})
})
describe('step with data table', () => {
it('returns the formatted scenario', async () => {
// Arrange
const sourceData = `\
Feature: my feature
Scenario: my scenario
Given a passing step
When a pending step
Then a passing step
|aaa|b|c|
|d|e|ff|
|gg|h|iii|
`
// Act
const output = await testFormatIssue(sourceData)
// Assert
expect(output).to.eql(`\
1) Scenario: my scenario # a.feature:2
${figures.tick} Given a passing step # steps.ts:29
? When a pending step # steps.ts:16
Pending
- Then a passing step # steps.ts:29
| aaa | b | c |
| d | e | ff |
| gg | h | iii |
`)
})
})
describe('step with doc string', () => {
it('returns the formatted scenario', async () => {
// Arrange
const sourceData = `\
Feature: my feature
Scenario: my scenario
Given a passing step
When a pending step
Then a passing step
"""
this is a multiline
doc string
:-)
"""
`
// Act
const output = await testFormatIssue(sourceData)
// Assert
expect(output).to.eql(`\
1) Scenario: my scenario # a.feature:2
${figures.tick} Given a passing step # steps.ts:29
? When a pending step # steps.ts:16
Pending
- Then a passing step # steps.ts:29
"""
this is a multiline
doc string
:-)
"""
`)
})
})
describe('step with attachment text', () => {
it('prints the scenario', async () => {
// Arrange
const sourceData = `\
Feature: my feature
Scenario: my scenario
Given attachment step1
When attachment step2
Then a passing step
`
// Act
const output = await testFormatIssue(sourceData)
// Assert
expect(output).to.eql(`\
1) Scenario: my scenario # a.feature:2
${figures.tick} Given attachment step1 # steps.ts:35
Attachment (text/plain): Some info
Attachment (application/json)
Attachment (image/png)
${figures.cross} When attachment step2 # steps.ts:41
Attachment (text/plain): Other info
error
- Then a passing step # steps.ts:29
`)
})
})
})
})