This repository was archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathSystemContext.php
More file actions
232 lines (203 loc) · 5.72 KB
/
SystemContext.php
File metadata and controls
232 lines (203 loc) · 5.72 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
<?php
namespace Sanpi\Behatch\Context;
use Behat\Behat\Context\Step;
use Behat\Behat\Context\Context;
use Behat\Gherkin\Node\PyStringNode;
class SystemContext implements Context
{
private $root;
private $output;
private $lastExecutionTime;
private $lastReturnCode;
private $createdFiles = [];
public function __construct($root = '.')
{
$this->root = $root;
}
public static function getTranslationResources()
{
return glob(__DIR__ . '/../../i18n/*.xliff');
}
/**
* Uploads a file using the specified input field
*
* @When (I )put the file :file into :field
*/
public function putFileIntoField($file, $field)
{
$path = $this->root . DIRECTORY_SEPARATOR . $file;
return [
new Step\When("I attach the file '$path' to '$field'")
];
}
/**
* Execute a command
*
* @Given (I )execute :command
*/
public function iExecute($cmd)
{
$start = microtime(true);
$this->output = [];
exec($cmd, $this->output, $this->lastReturnCode);
$this->lastExecutionTime = microtime(true) - $start;
}
/**
* Execute a command from project root
*
* @Given (I )execute :command from project root
*/
public function iExecuteFromProjectRoot($cmd)
{
$cmd = $this->root . DIRECTORY_SEPARATOR . $cmd;
$this->iExecute($cmd);
}
/**
* Command should succeed
*
* @Then command should succeed
*/
public function commandShouldSucceed() {
if ($this->lastReturnCode !== 0) {
$this->printOutput();
throw new \Exception(sprintf("Command should succeed %b", $this->lastReturnCode));
};
}
/**
* Command should fail
*
* @Then command should fail
*/
public function commandShouldFail() {
if ($this->lastReturnCode === 0) {
$this->printOutput();
throw new \Exception(sprintf("Command should fail %b", $this->lastReturnCode));
};
}
/**
* Command should last less than
*
* @Then command should last less than :seconds seconds
*/
public function commandShouldLastLessThan($seconds)
{
if ($this->lastExecutionTime > $seconds) {
throw new \Exception(sprintf("Last command last %s which is more than %s seconds", $lastExecutionTime, $seconds));
}
}
/**
* Command should last more than
*
* @Then command should last more than :seconds seconds
*/
public function commandShouldMoreLessThan($seconds)
{
if ($this->lastExecutionTime < $seconds) {
throw new \Exception(sprintf("Last command last %s which is less than %s seconds", $lastExecutionTime, $seconds));
}
}
/**
* Checks, that output contains specified text.
*
* @Then output should contain :text
*/
public function outputShouldContain($text)
{
$regex = '~'.$text.'~ui';
$check = false;
foreach ($this->output as $line) {
if (preg_match($regex, $line) === 1) {
$check = true;
break;
}
}
if ($check === false) {
throw new \Exception(sprintf("The text '%s' was not found anywhere on output of command.\n%s", $text, implode("\n", $this->output)));
}
}
/**
* Checks, that output not contains specified text.
*
* @Then output should not contain :text
*/
public function ouputShouldNotContain($text)
{
$regex = '~'.$text.'~ui';
foreach ($this->output as $line) {
if (preg_match($regex, $line) === 1) {
throw new \Exception(sprintf("The text '%s' was found somewhere on output of command.\n%s", $text, implode("\n", $this->output)));
}
}
}
/**
* @Given output should be:
*/
public function outputShouldBe(PyStringNode $string)
{
$expected = $string->getStrings();
foreach ($this->output as $index => $line) {
if ($line !== $expected[$index]) {
throw new \Exception(sprintf("instead of\n%s", implode("\n", $this->output)));
}
}
}
/**
* @Given output should not be:
*/
public function outputShouldNotBe(PyStringNode $string)
{
$expected = $string->getStrings();
$check = false;
foreach ($this->output as $index => $line) {
if ($line !== $expected[$index]) {
$check = true;
break;
}
}
if ($check === false) {
throw new \Exception("Output should not be");
}
}
/**
* @Then print output
*/
public function printOutput()
{
echo implode("\n", $this->output);
}
/**
* @Given (I )create the file :filename containing:
* @Given (I )create the file :filename contening:
*/
public function iCreateTheFileContaining($filename, PyStringNode $string)
{
if (!is_file($filename)) {
file_put_contents($filename, $string);
$this->createdFiles[] = $filename;
}
else {
throw new \RuntimeException("'$filename' already exists.");
}
}
/**
* @Then print the content of :filename file
*/
public function printTheContentOfFile($filename)
{
if (is_file($filename)) {
echo file_get_contents($filename);
}
else {
throw new \RuntimeException("'$filename' doesn't exists.");
}
}
/**
* @AfterScenario
*/
public function after()
{
foreach ($this->createdFiles as $filename) {
unlink($filename);
}
}
}