forked from cucumber/cucumber-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom_formatter.feature
124 lines (105 loc) · 3.76 KB
/
custom_formatter.feature
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
@node-6
Feature: custom formatter
Background:
Given a file named "features/a.feature" with:
"""
Feature: a feature
Scenario: a scenario
Given an undefined step
"""
Scenario: extending Formatter
Given a file named "simple_formatter.js" with:
"""
import {Formatter} from 'cucumber'
class SimpleFormatter extends Formatter {
constructor(options) {
super(options)
options.eventBroadcaster
.on('test-case-started', ::this.logTestCaseName)
.on('test-step-finished', ::this.logTestStep)
.on('test-case-finished', ::this.logSeparator)
.on('test-run-finished', ::this.logTestRunResult)
}
logTestCaseName({sourceLocation}) {
const {gherkinDocument, pickle} = this.eventDataCollector.getTestCaseData(sourceLocation)
this.log(gherkinDocument.feature.name + ' / ' + pickle.name + '\n');
}
logTestStep({testCase, index, result}) {
const {gherkinKeyword, pickleStep, testStep} = this.eventDataCollector.getTestStepData({testCase, index})
if (pickleStep) {
this.log(' ' + gherkinKeyword + pickleStep.text + ' - ' + result.status + '\n');
} else {
this.log(' Hook - ' + result.status + '\n');
}
}
logSeparator() {
this.log('\n');
}
logTestRunResult({result}) {
this.log(result.success ? 'SUCCESS' : 'FAILURE');
}
}
module.exports = SimpleFormatter
"""
When I run cucumber-js with `--format ./simple_formatter.js`
Then it fails
And it outputs the text:
"""
a feature / a scenario
Given an undefined step - undefined
FAILURE
"""
Scenario: extending SummaryFormatter
Given a file named "features/a.feature" with:
"""
Feature: a feature
Scenario: a scenario
Given an undefined step
"""
And a file named "simple_formatter.js" with:
"""
import {SummaryFormatter} from 'cucumber'
class SimpleFormatter extends SummaryFormatter {
constructor(options) {
super(options)
options.eventBroadcaster
.on('test-case-started', ::this.logTestCaseName)
.on('test-step-finished', ::this.logTestStep)
.on('test-case-finished', ::this.logSeparator)
}
logTestCaseName({sourceLocation}) {
const {gherkinDocument, pickle} = this.eventDataCollector.getTestCaseData(sourceLocation)
this.log(gherkinDocument.feature.name + ' / ' + pickle.name + '\n');
}
logTestStep({testCase, index, result}) {
const {gherkinKeyword, pickleStep, testStep} = this.eventDataCollector.getTestStepData({testCase, index})
if (pickleStep) {
this.log(' ' + gherkinKeyword + pickleStep.text + ' - ' + result.status + '\n');
} else {
this.log(' Hook - ' + result.status + '\n');
}
}
logSeparator() {
this.log('\n');
}
}
module.exports = SimpleFormatter
"""
When I run cucumber-js with `--format ./simple_formatter.js`
Then it fails
And it outputs the text:
"""
a feature / a scenario
Given an undefined step - undefined
Warnings:
1) Scenario: a scenario # features/a.feature:2
? Given an undefined step
Undefined. Implement with the following snippet:
Given('an undefined step', function (callback) {
// Write code here that turns the phrase above into concrete actions
callback(null, 'pending');
});
1 scenario (1 undefined)
1 step (1 undefined)
<duration-stat>
"""