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
<?php
/**
* Class GherkinTest
* @group gherkin
*/
class GherkinTest extends \Codeception\Test\Unit
{
protected $feature;
public static $calls = '';
/**
* @var \Codeception\Test\Loader\Gherkin
*/
protected $loader;
protected function _before()
{
$this->loader = new \Codeception\Test\Loader\Gherkin(
[
'gherkin' => [
'contexts' => [
'default' => ['GherkinTestContext']
]
]
]
);
self::$calls = '';
}
protected function getServices()
{
return [
'di' => new \Codeception\Lib\Di(),
'dispatcher' => new \Codeception\Util\Maybe(),
'modules' => \Codeception\Util\Stub::makeEmpty('Codeception\Lib\ModuleContainer')
];
}
public function testLoadGherkin()
{
$this->loader->loadTests(codecept_data_dir('refund.feature'));
$tests = $this->loader->getTests();
$this->assertCount(1, $tests);
/** @var $test \Codeception\Test\Gherkin * */
$test = $tests[0];
$this->assertInstanceOf('\Codeception\Test\Gherkin', $test);
$this->assertEquals('Jeff returns a faulty microwave', $test->getFeature());
}
/**
* @depends testLoadGherkin
*/
public function testLoadWithContexts()
{
$this->loader->loadTests(codecept_data_dir('refund.feature'));
$test = $this->loader->getTests()[0];
/** @var $test \Codeception\Test\Gherkin * */
$test->getMetadata()->setServices($this->getServices());
$test->test();
$this->assertEquals('abc', self::$calls);
}
/**
* @depends testLoadGherkin
* @expectedException \Codeception\Exception\ParseException
*/
public function testBadRegex()
{
$this->loader = new \Codeception\Test\Loader\Gherkin(
[
'gherkin' => [
'contexts' => [
'default' => ['GherkinInvalidContext'],
]
]
]
);
$this->loader->loadTests(codecept_data_dir('refund.feature'));
$test = $this->loader->getTests()[0];
/** @var $test \Codeception\Test\Gherkin * */
$test->getMetadata()->setServices($this->getServices());
$test->test();
}
public function testTags()
{
$this->loader = new \Codeception\Test\Loader\Gherkin(
[
'gherkin' => [
'contexts' => [
'default' => ['GherkinTestContext'],
'tag' => [
'important' => ['TagGherkinContext']
]
]
]
]
);
$this->loader->loadTests(codecept_data_dir('refund.feature'));
$test = $this->loader->getTests()[0];
/** @var $test \Codeception\Test\Gherkin * */
$test->getMetadata()->setServices($this->getServices());
$test->test();
$this->assertEquals('aXc', self::$calls);
}
public function testRoles()
{
$this->loader = new \Codeception\Test\Loader\Gherkin(
[
'gherkin' => [
'contexts' => [
'default' => ['GherkinTestContext'],
'role' => [
'customer' => ['TagGherkinContext']
]
]
]
]
);
$this->loader->loadTests(codecept_data_dir('refund.feature'));
$test = $this->loader->getTests()[0];
/** @var $test \Codeception\Test\Gherkin * */
$test->getMetadata()->setServices($this->getServices());
$test->test();
$this->assertEquals('aXc', self::$calls);
}
public function testMatchingPatterns()
{
$pattern = 'hello :name, are you from :place?';
$regex = $this->loader->makePlaceholderPattern($pattern);
$this->assertRegExp($regex, 'hello "davert", are you from "kiev"?');
$this->assertNotRegExp($regex, 'hello davert, are you from "kiev"?');
$pattern = 'hello ":name", how are you';
$regex = $this->loader->makePlaceholderPattern($pattern);
$this->assertRegExp($regex, 'hello "davert", how are you');
$this->assertNotRegExp($regex, 'hello "davert", are you from "kiev"?');
$pattern = 'there should be :num cow(s)';
$regex = $this->loader->makePlaceholderPattern($pattern);
$this->assertRegExp($regex, 'there should be "1" cow');
$this->assertRegExp($regex, 'there should be "5" cows');
$this->assertRegExp($regex, 'there should be 1000 cows');
}
public function testGherkinCurrencySymbols()
{
$pattern = 'I have :money in my pocket';
$regex = $this->loader->makePlaceholderPattern($pattern);
$this->assertRegExp($regex, 'I have 3.5$ in my pocket');
$this->assertRegExp($regex, 'I have 3.5€ in my pocket');
$this->assertRegExp($regex, 'I have $3.5 in my pocket');
$this->assertRegExp($regex, 'I have £3.5 in my pocket');
$this->assertRegExp($regex, 'I have "35.10" in my pocket');
$this->assertRegExp($regex, 'I have 5 in my pocket');
$this->assertRegExp($regex, 'I have 5.1 in my pocket');
$this->assertNotRegExp($regex, 'I have 3.5 $ in my pocket');
$this->assertNotRegExp($regex, 'I have 3.5euro in my pocket');
// Issue #3156
$pattern = "there is a :arg1 product witch costs :arg2 €";
$regex = $this->loader->makePlaceholderPattern($pattern);
$this->assertRegExp($regex, 'there is a "football ball" product witch costs "1,5" €');
}
public function testMatchingEscapedPatterns()
{
$pattern = 'use password ":pass"';
$regex = $this->loader->makePlaceholderPattern($pattern);
$this->assertRegExp($regex, 'use password "fref\"fr"');
}
/**
* @Issue #3051
*/
public function testSimilarSteps()
{
$pattern = 'there is a User called :arg1';
$regex = $this->loader->makePlaceholderPattern($pattern);
$this->assertRegExp($regex, 'there is a User called "John"');
$this->assertNotRegExp($regex, 'there is a User called "John" and surname "Smith"');
}
public function testMultipleSteps()
{
$patterns = array_keys($this->loader->getSteps()['default']);
$this->assertContains('/^he returns the microwave$/u', $patterns);
$this->assertContains('/^microwave is brought back$/u', $patterns);
}
}
class GherkinTestContext
{
/**
* @Given Jeff has bought a microwave for :param
*/
public function hasBoughtMicrowave()
{
GherkinTest::$calls .= 'a';
}
/**
* @When he returns the microwave
* @Then microwave is brought back
*/
public function heReturns()
{
GherkinTest::$calls .= 'b';
}
/**
* @Then Jeff should be refunded $100
*/
public function beRefunded()
{
GherkinTest::$calls .= 'c';
}
}
class TagGherkinContext
{
/**
* @When he returns the microwave
*/
public function heReturns()
{
GherkinTest::$calls .= 'X';
}
}
class GherkinInvalidContext
{
/**
* @Given /I (?:use:am connected to) the database (?db:.+)/i
*/
public function notWorks()
{
}
}