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 204
Expand file tree
/
Copy pathRestContext.php
More file actions
289 lines (246 loc) · 8.49 KB
/
Copy pathRestContext.php
File metadata and controls
289 lines (246 loc) · 8.49 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
<?php
namespace Sanpi\Behatch\Context;
use Behat\Behat\Context\Step;
use Behat\Gherkin\Node\TableNode;
use Behat\Gherkin\Node\PyStringNode;
use Behat\Mink\Exception\ExpectationException;
class RestContext extends BaseContext
{
/**
* Sends a HTTP request
*
* @Given I send a :method request to :url
*/
public function iSendARequestTo($method, $url)
{
$client = $this->getSession()->getDriver()->getClient();
// intercept redirection
$client->followRedirects(false);
$client->request($method, $this->locatePath($url));
$client->followRedirects(true);
return $this->getSession()->getPage();
}
/**
* Sends a HTTP request with a some parameters
*
* @Given I send a :method request to :url with parameters:
*/
public function iSendARequestToWithParameters($method, $url, TableNode $datas)
{
$client = $this->getSession()->getDriver()->getClient();
// intercept redirection
$client->followRedirects(false);
$parameters = array();
foreach ($datas->getHash() as $row) {
if (!isset($row['key']) || !isset($row['value'])) {
throw new \Exception("You must provide a 'key' and 'value' column in your table node.");
}
if (is_string($row['value']) && substr($row['value'], 0, 1) == '@') {
$row['value'] = '@'.rtrim($this->getMinkParameter('files_path'), DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.substr($row['value'],1);
}
$parameters[] = sprintf('%s=%s', $row['key'], $row['value']);
}
parse_str(implode('&', $parameters), $parameters);
if (stristr($method, 'GET')) {
$parametersArray = array();
foreach ($parameters as $key => $value) {
$parametersArray[] = $key.'='.$value;
}
$url .= (!strstr($url, '?') ? '?' : '&').implode('&', $parametersArray);
$parameters = array();
}
$client->request($method, $this->locatePath($url), $parameters);
$client->followRedirects(true);
return $this->getSession()->getPage();
}
/**
* Sends a HTTP request with a body
*
* @Given I send a :method request to :url with body:
*/
public function iSendARequestToWithBody($method, $url, PyStringNode $body)
{
$client = $this->getSession()->getDriver()->getClient();
// intercept redirection
$client->followRedirects(false);
$client->request($method, $this->locatePath($url),
array(), array(), array(), $body->getRaw());
$client->followRedirects(true);
return $this->getSession()->getPage();
}
/**
* Checks, whether the response content is equal to given text
*
* @Then the response should be equal to
*/
public function theResponseShouldBeEqualTo(PyStringNode $expected)
{
$expected = str_replace('\\"', '"', $expected);
$actual = $this->getSession()->getPage()->getContent();
$message = sprintf('The string "%s" is not equal to the response of the current page', $expected);
$this->assertEquals($expected, $actual, $message);
}
/**
* Checks, whether the response content is null or empty string
*
* @Then the response should be empty
*/
public function theResponseShouldBeEmpty()
{
$actual = $this->getSession()->getPage()->getContent();
$message = 'The response of the current page is not empty';
$this->assertTrue(null === $actual || "" === $actual, $message);
}
/**
* Checks, whether the header name is equal to given text
*
* @Then the header :name should be equal to :value
*/
public function theHeaderShouldBeEqualTo($name, $value)
{
$actual = $this->getHttpHeader($name);
$this->assertEquals($value, $actual,
sprintf('The header "%s" is equal to "%s"', $name, $actual)
);
}
/**
* Checks, whether the header name contains the given text
*
* @Then the header :name should contain :value
*/
public function theHeaderShouldBeContains($name, $value)
{
$this->assertContains($value, $this->getHttpHeader($name),
sprintf('The header "%s" doesn\'t contain "%s"', $name, $value)
);
}
/**
* Checks, whether the header name doesn't contain the given text
*
* @Then the header :name should not contain :value
*/
public function theHeaderShouldNotContain($name, $value)
{
$this->assertNotContains($value, $this->getHttpHeader($name),
sprintf('The header "%s" contains "%s"', $name, $value)
);
}
/**
* Checks, whether the header not exist
*
* @Then the header :name should not exist
*/
public function theHeaderShouldNotExist($name)
{
try {
$this->getHttpHeader($name);
$message = sprintf('The header "%s" exist', $name);
throw new ExpectationException($message, $this->getSession());
}
catch (\OutOfBoundsException $e) {
}
}
/**
* Checks, that the response header expire is in the future
*
* @Then the response should expire in the future
*/
public function theResponseShouldExpireInTheFuture()
{
$date = new \DateTime($this->getHttpHeader('Date'));
$expires = new \DateTime($this->getHttpHeader('Expires'));
$this->assertSame(1, $expires->diff($date)->invert,
sprintf(sprintf('The response doesn\'t expire in the future (%s)', $expires->format(DATE_ATOM)))
);
}
/**
* Add an header element in a request
*
* @Then I add :name header equal to :value
*/
public function iAddHeaderEqualTo($name, $value)
{
$this->getSession()->setRequestHeader($name, $value);
}
/**
* @Then the response should be encoded in :encoding
*/
public function theResponseShouldBeEncodedIn($encoding)
{
$content = $this->getSession()->getPage()->getContent();
if (!mb_check_encoding($content, $encoding)) {
throw new \Exception("The response is not encoded in $encoding");
}
$this->theHeaderShouldBeContains('Content-Type', "charset=$encoding");
}
/**
* @Then print last response headers
*/
public function printLastResponseHeaders()
{
$text = '';
$headers = $this->getHttpHeaders();
foreach ($headers as $name => $value) {
$text .= $name . ': '. $this->getHttpHeader($name) . "\n";
}
echo $text;
}
/**
* @Then print the corresponding curl command
*/
public function printTheCorrespondingCurlCommand()
{
$request = $this->getSession()->getDriver()->getClient()->getRequest();
$method = $request->getMethod();
$url = $request->getUri();
$headers = '';
foreach ($request->getServer() as $name => $value) {
if (substr($name, 0, 5) !== 'HTTP_' && $name !== 'HTTPS') {
$headers .= " -H '$name: $value'";
}
}
$data = '';
$params = $request->getParameters();
if (!empty($params)) {
$query = http_build_query($params);
$data = " --data '$query'" ;
}
echo "curl -X $method$data$headers '$url'";
}
private function getHttpHeader($name)
{
$name = strtolower($name);
$header = $this->getHttpHeaders();
if (isset($header[$name])) {
if (is_array($header[$name])) {
$value = implode(', ', $header[$name]);
}
else {
$value = $header[$name];
}
}
else {
throw new \OutOfBoundsException(
sprintf('The header "%s" doesn\'t exist', $name)
);
}
return $value;
}
private function getHttpHeaders()
{
return array_change_key_case(
$this->getSession()->getResponseHeaders(),
CASE_LOWER
);
}
/**
* @Then /^the response should contain '([^']*)'$/
*/
public function theResponseShouldContain($expected)
{
$expected = str_replace('\\"', '"', $expected);
$actual = $this->getSession()->getPage()->getContent();
$message = sprintf('The string "%s" is not containd by the response of the current request', $expected);
$this->assertContains($expected, $actual, $message);
}
}