ParserExceptionsTest.php
5.55 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
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
<?php
namespace Tests\Behat\Gherkin;
use Behat\Gherkin\Lexer;
use Behat\Gherkin\Parser;
use Behat\Gherkin\Keywords\ArrayKeywords;
class ParserExceptionsTest extends \PHPUnit_Framework_TestCase
{
/**
* @var Parser
*/
private $gherkin;
protected function setUp()
{
$keywords = new ArrayKeywords(array(
'en' => array(
'feature' => 'Feature',
'background' => 'Background',
'scenario' => 'Scenario',
'scenario_outline' => 'Scenario Outline',
'examples' => 'Examples',
'given' => 'Given',
'when' => 'When',
'then' => 'Then',
'and' => 'And',
'but' => 'But'
),
'ru' => array(
'feature' => 'Функционал',
'background' => 'Предыстория',
'scenario' => 'Сценарий',
'scenario_outline' => 'Структура сценария',
'examples' => 'Значения',
'given' => 'Допустим',
'when' => 'То',
'then' => 'Если',
'and' => 'И',
'but' => 'Но'
)
));
$this->gherkin = new Parser(new Lexer($keywords));
}
public function testStepRightAfterFeature()
{
$feature = <<<GHERKIN
Feature: Some feature
Given some step-like line
GHERKIN;
$parsed = $this->gherkin->parse($feature);
$this->assertEquals("\n Given some step-like line", $parsed->getDescription());
}
public function testTextInBackground()
{
$feature = <<<GHERKIN
Feature: Behat bug test
Background: remove X to couse bug
Step is red form is not valid
asd
asd
as
da
sd
as
das
d
Scenario: bug user edit date
GHERKIN;
$this->gherkin->parse($feature);
}
public function testTextInScenario()
{
$feature = <<<GHERKIN
Feature: Behat bug test
Scenario: remove X to cause bug
Step is red form is not valid
asd
asd
as
da
sd
as
das
d
Scenario Outline: bug user edit date
Step is red form is not valid
asd
asd
as
da
sd
as
das
d
Examples:
||
GHERKIN;
$feature = $this->gherkin->parse($feature);
$this->assertCount(2, $scenarios = $feature->getScenarios());
$firstTitle = <<<TEXT
remove X to cause bug
Step is red form is not valid
asd
asd
as
da
sd
as
das
d
TEXT;
$this->assertEquals($firstTitle, $scenarios[0]->getTitle());
$secondTitle = <<<TEXT
bug user edit date
Step is red form is not valid
asd
asd
as
da
sd
as
das
d
TEXT;
$this->assertEquals($secondTitle, $scenarios[1]->getTitle());
}
/**
* @expectedException \Behat\Gherkin\Exception\ParserException
*/
public function testAmbigiousLanguage()
{
$feature = <<<GHERKIN
# language: en
# language: ru
Feature: Some feature
Given something wrong
GHERKIN;
$this->gherkin->parse($feature);
}
/**
* @expectedException \Behat\Gherkin\Exception\ParserException
*/
public function testEmptyOutline()
{
$feature = <<<GHERKIN
Feature: Some feature
Scenario Outline:
GHERKIN;
$this->gherkin->parse($feature);
}
/**
* @expectedException \Behat\Gherkin\Exception\ParserException
*/
public function testWrongTagPlacement()
{
$feature = <<<GHERKIN
Feature: Some feature
Scenario:
Given some step
@some_tag
Then some additional step
GHERKIN;
$this->gherkin->parse($feature);
}
/**
* @expectedException \Behat\Gherkin\Exception\ParserException
*/
public function testBackgroundWithTag()
{
$feature = <<<GHERKIN
Feature: Some feature
@some_tag
Background:
Given some step
GHERKIN;
$this->gherkin->parse($feature);
}
/**
* @expectedException \Behat\Gherkin\Exception\ParserException
*/
public function testEndlessPyString()
{
$feature = <<<GHERKIN
Feature:
Scenario:
Given something with:
"""
some text
GHERKIN;
$this->gherkin->parse($feature);
}
/**
* @expectedException \Behat\Gherkin\Exception\ParserException
*/
public function testWrongStepType()
{
$feature = <<<GHERKIN
Feature:
Scenario:
Given some step
Aaand some step
GHERKIN;
$this->gherkin->parse($feature);
}
/**
* @expectedException \Behat\Gherkin\Exception\ParserException
*/
public function testMultipleBackgrounds()
{
$feature = <<<GHERKIN
Feature:
Background:
Given some step
Background:
Aaand some step
GHERKIN;
$this->gherkin->parse($feature);
}
/**
* @expectedException \Behat\Gherkin\Exception\ParserException
*/
public function testMultipleFeatures()
{
$feature = <<<GHERKIN
Feature:
Feature:
GHERKIN;
$this->gherkin->parse($feature);
}
/**
* @expectedException \Behat\Gherkin\Exception\ParserException
*/
public function testTableWithoutRightBorder()
{
$feature = <<<GHERKIN
Feature:
Scenario:
Given something with:
| foo | bar
| 42 | 42
GHERKIN;
$this->gherkin->parse($feature);
}
}