forked from Behat/Behat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.feature
265 lines (210 loc) · 10.5 KB
/
i18n.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
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
Feature: I18n
In order to write i18nal features
As a feature writer
I need to have i18n support
Background:
Given a file named "features/bootstrap/FeatureContext.php" with:
"""
<?php
use Behat\Behat\Context\Context,
Behat\Behat\Tester\Exception\PendingException;
use Behat\Gherkin\Node\PyStringNode,
Behat\Gherkin\Node\TableNode;
class FeatureContext implements Context
{
private $value = 0;
/**
* @Given /Я ввел (\d+)/
*/
public function iHaveEntered($number) {
$this->value = intval($number);
}
/**
* @Then /Я должен иметь (\d+)/
*/
public function iShouldHave($number) {
PHPUnit\Framework\Assert::assertEquals(intval($number), $this->value);
}
/**
* @When /Я добавлю (\d+)/
*/
public function iAdd($number) {
$this->value += intval($number);
}
/**
* @When /^Что-то еще не сделано$/
*/
public function somethingNotDone() {
throw new PendingException();
}
}
"""
And a file named "features/World.feature" with:
"""
# language: ru
Функционал: Постоянство мира
Чтобы поддерживать стабильными тесты
Как разработчик функционала
Я хочу чтобы Мир сбрасывался между сценариями
Предыстория:
Если Я ввел 10
Сценарий: Неопределен
То Я должен иметь 10
И Добавить "нормальное" число
То Я должен иметь 10
Сценарий: В ожидании
То Я должен иметь 10
И Что-то еще не сделано
То Я должен иметь 10
Сценарий: Провален
Если Я добавлю 4
То Я должен иметь 13
Структура сценария: Пройдено и Провалено
Допустим Я должен иметь 10
Если Я добавлю <значение>
То Я должен иметь <результат>
Примеры:
| значение | результат |
| 5 | 16 |
| 10 | 20 |
| 23 | 32 |
"""
Scenario: Pretty
When I run "behat --no-colors -f pretty --lang=ru --snippets-for=FeatureContext --snippets-type=regex"
Then it should fail with:
"""
Функционал: Постоянство мира
Чтобы поддерживать стабильными тесты
Как разработчик функционала
Я хочу чтобы Мир сбрасывался между сценариями
Предыстория: # features/World.feature:7
Если Я ввел 10 # FeatureContext::iHaveEntered()
Сценарий: Неопределен # features/World.feature:10
То Я должен иметь 10 # FeatureContext::iShouldHave()
И Добавить "нормальное" число
То Я должен иметь 10 # FeatureContext::iShouldHave()
Сценарий: В ожидании # features/World.feature:15
То Я должен иметь 10 # FeatureContext::iShouldHave()
И Что-то еще не сделано # FeatureContext::somethingNotDone()
TODO: write pending definition
То Я должен иметь 10 # FeatureContext::iShouldHave()
Сценарий: Провален # features/World.feature:20
Если Я добавлю 4 # FeatureContext::iAdd()
То Я должен иметь 13 # FeatureContext::iShouldHave()
Failed asserting that 14 matches expected 13.
Структура сценария: Пройдено и Провалено # features/World.feature:24
Допустим Я должен иметь 10 # FeatureContext::iShouldHave()
Если Я добавлю <значение> # FeatureContext::iAdd()
То Я должен иметь <результат> # FeatureContext::iShouldHave()
Примеры:
| значение | результат |
| 5 | 16 |
Failed asserting that 15 matches expected 16.
| 10 | 20 |
| 23 | 32 |
Failed asserting that 33 matches expected 32.
--- Проваленные сценарии:
features/World.feature:20
features/World.feature:31
features/World.feature:33
6 сценариев (1 пройден, 3 провалено, 1 не определен, 1 в ожидании)
23 шага (16 пройдено, 3 провалено, 1 не определен, 1 в ожидании, 2 пропущено)
--- FeatureContext не содержит необходимых определений. Вы можете добавить их используя шаблоны:
/**
* @Then /^Добавить "([^"]*)" число$/
*/
public function dobavitChislo($arg1)
{
throw new PendingException();
}
"""
Scenario: Progress
When I run "behat --no-colors -f progress --lang=ru --snippets-for=FeatureContext --snippets-type=regex"
Then it should fail with:
"""
..U-..P-..F...F.......F
--- Проваленные шаги:
001 Сценарий: Провален # features/World.feature:20
То Я должен иметь 13 # features/World.feature:22
Failed asserting that 14 matches expected 13.
002 Example: | 5 | 16 | # features/World.feature:31
То Я должен иметь 16 # features/World.feature:27
Failed asserting that 15 matches expected 16.
003 Example: | 23 | 32 | # features/World.feature:33
То Я должен иметь 32 # features/World.feature:27
Failed asserting that 33 matches expected 32.
--- Шаги в ожидании:
001 Сценарий: В ожидании # features/World.feature:15
И Что-то еще не сделано # FeatureContext::somethingNotDone()
TODO: write pending definition
6 сценариев (1 пройден, 3 провалено, 1 не определен, 1 в ожидании)
23 шага (16 пройдено, 3 провалено, 1 не определен, 1 в ожидании, 2 пропущено)
--- FeatureContext не содержит необходимых определений. Вы можете добавить их используя шаблоны:
/**
* @Then /^Добавить "([^"]*)" число$/
*/
public function dobavitChislo($arg1)
{
throw new PendingException();
}
"""
Scenario: Progress with unexisting locale
When I run "behat --no-colors -f progress --lang=xx --snippets-for=FeatureContext --snippets-type=regex"
Then it should fail with:
"""
..U-..P-..F...F.......F
--- Failed steps:
001 Сценарий: Провален # features/World.feature:20
То Я должен иметь 13 # features/World.feature:22
Failed asserting that 14 matches expected 13.
002 Example: | 5 | 16 | # features/World.feature:31
То Я должен иметь 16 # features/World.feature:27
Failed asserting that 15 matches expected 16.
003 Example: | 23 | 32 | # features/World.feature:33
То Я должен иметь 32 # features/World.feature:27
Failed asserting that 33 matches expected 32.
--- Pending steps:
001 Сценарий: В ожидании # features/World.feature:15
И Что-то еще не сделано # FeatureContext::somethingNotDone()
TODO: write pending definition
6 scenarios (1 passed, 3 failed, 1 undefined, 1 pending)
23 steps (16 passed, 3 failed, 1 undefined, 1 pending, 2 skipped)
--- FeatureContext has missing steps. Define them with these snippets:
/**
* @Then /^Добавить "([^"]*)" число$/
*/
public function dobavitChislo($arg1)
{
throw new PendingException();
}
"""
Scenario: Progress with unexisting locale
When I run "behat --no-colors -f progress --lang=xx --snippets-for=FeatureContext --snippets-type=regex"
Then it should fail with:
"""
..U-..P-..F...F.......F
--- Failed steps:
001 Сценарий: Провален # features/World.feature:20
То Я должен иметь 13 # features/World.feature:22
Failed asserting that 14 matches expected 13.
002 Example: | 5 | 16 | # features/World.feature:31
То Я должен иметь 16 # features/World.feature:27
Failed asserting that 15 matches expected 16.
003 Example: | 23 | 32 | # features/World.feature:33
То Я должен иметь 32 # features/World.feature:27
Failed asserting that 33 matches expected 32.
--- Pending steps:
001 Сценарий: В ожидании # features/World.feature:15
И Что-то еще не сделано # FeatureContext::somethingNotDone()
TODO: write pending definition
6 scenarios (1 passed, 3 failed, 1 undefined, 1 pending)
23 steps (16 passed, 3 failed, 1 undefined, 1 pending, 2 skipped)
--- FeatureContext has missing steps. Define them with these snippets:
/**
* @Then /^Добавить "([^"]*)" число$/
*/
public function dobavitChislo($arg1)
{
throw new PendingException();
}
"""