-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathfeature_test.dart
More file actions
213 lines (184 loc) · 5.54 KB
/
feature_test.dart
File metadata and controls
213 lines (184 loc) · 5.54 KB
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
import 'package:bdd_widget_test/src/feature_file.dart';
import 'package:test/test.dart';
import 'util/testing_data.dart';
void main() {
const expectedComment = '''
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint, type=warning
''';
const expectedImports = '''
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
''';
const expectedHeader = '''$expectedComment$expectedImports''';
test('Empty feature file', () {
const expectedFeatureDart = '''
$expectedComment$expectedImports
void main() {
}
''';
final feature = FeatureFile(
featureDir: 'test.feature',
package: 'test',
input: '',
);
expect(feature.dartContent, expectedFeatureDart);
});
test('simplest feature file parses', () {
const expectedFeatureDart = '''
${expectedHeader}import './step/the_app_is_running.dart';
void main() {
group(\'\'\'Testing feature\'\'\', () {
testWidgets(\'\'\'Testing scenario\'\'\', (tester) async {
await theAppIsRunning(tester);
});
});
}
''';
final feature = FeatureFile(
featureDir: 'test.feature',
package: 'test',
input: minimalFeatureFile,
);
expect(feature.dartContent, expectedFeatureDart);
});
test('Step with parameters', () {
const expectedFeatureDart = '''
${expectedHeader}import './step/the_app_is_running.dart';
import './step/i_see_text.dart';
import './step/i_see_icon.dart';
void main() {
group(\'\'\'Testing feature\'\'\', () {
testWidgets(\'\'\'Testing scenario\'\'\', (tester) async {
await theAppIsRunning(tester);
await iSeeText(tester, 'nice param');
await iSeeIcon(tester, Icons.add);
});
});
}
''';
final feature = FeatureFile(
featureDir: 'test.feature',
package: 'test',
input: featureFile,
);
expect(feature.dartContent, expectedFeatureDart);
});
test('Several features in one file', () {
const expectedFeatureDart = '''
$expectedComment// some comment
${expectedImports}import './step/the_app_is_running.dart';
void main() {
group(\'\'\'First testing feature\'\'\', () {
testWidgets(\'\'\'First testing scenario\'\'\', (tester) async {
await theAppIsRunning(tester);
});
});
group(\'\'\'Second testing feature\'\'\', () {
testWidgets(\'\'\'First testing scenario\'\'\', (tester) async {
await theAppIsRunning(tester);
});
testWidgets(\'\'\'Second testing scenario\'\'\', (tester) async {
await theAppIsRunning(tester);
});
});
}
''';
final feature = FeatureFile(
featureDir: 'test.feature',
package: 'test',
input: bigFeatureFile,
);
expect(feature.dartContent, expectedFeatureDart);
});
test('Feature with special characters in names', () {
const expectedFeatureDart = '''
$expectedComment// some comment
${expectedImports}import './step/the_app_is_running.dart';
import './step/i_see_text.dart';
void main() {
group(\'\'\'"Testing" <Special> {Characters}\'\'\', () {
testWidgets(\'\'\'Test's "special" characters\'\'\', (tester) async {
await theAppIsRunning(tester);
await iSeeText(tester, 'test');
});
});
}
''';
final feature = FeatureFile(
featureDir: 'test.feature',
package: 'test',
input: '''
// some comment
Feature: "Testing" <Special> {Characters}
Scenario: Test's "special" characters
Given the app is running
Then I see {'test'} text
''',
);
expect(feature.dartContent, expectedFeatureDart);
});
test('Feature with very long step description', () {
const expectedFeatureDart = '''
${expectedHeader}import './step/the_app_is_running.dart';
import './step/i_verify_that_this_is_a_very_long_step_description_that_tests_whether_the_framework_can_handle_extremely_long_step_names_without_issues.dart';
void main() {
group(\'\'\'Testing feature\'\'\', () {
testWidgets(\'\'\'Testing scenario\'\'\', (tester) async {
await theAppIsRunning(tester);
await iVerifyThatThisIsAVeryLongStepDescriptionThatTestsWhetherTheFrameworkCanHandleExtremelyLongStepNamesWithoutIssues(tester);
});
});
}
''';
final feature = FeatureFile(
featureDir: 'test.feature',
package: 'test',
input: '''
Feature: Testing feature
Scenario: Testing scenario
Given the app is running
Then I verify that this is a very long step description that tests whether the framework can handle extremely long step names without issues
''',
);
expect(feature.dartContent, expectedFeatureDart);
});
test('Multiple scenarios in single feature', () {
const expectedFeatureDart = '''
${expectedHeader}import './step/the_app_is_running.dart';
import './step/i_see_text.dart';
import './step/i_tap_icon.dart';
void main() {
group(\'\'\'Login feature\'\'\', () {
testWidgets(\'\'\'Successful login\'\'\', (tester) async {
await theAppIsRunning(tester);
await iSeeText(tester, 'Login');
});
testWidgets(\'\'\'Failed login\'\'\', (tester) async {
await theAppIsRunning(tester);
await iSeeText(tester, 'Error');
});
testWidgets(\'\'\'Logout\'\'\', (tester) async {
await iTapIcon(tester, Icons.logout);
});
});
}
''';
final feature = FeatureFile(
featureDir: 'test.feature',
package: 'test',
input: '''
Feature: Login feature
Scenario: Successful login
Given the app is running
Then I see {'Login'} text
Scenario: Failed login
Given the app is running
Then I see {'Error'} text
Scenario: Logout
When I tap {Icons.logout} icon
''',
);
expect(feature.dartContent, expectedFeatureDart);
});
}