|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* This file is part of Phiremock. |
|
4
|
|
|
* |
|
5
|
|
|
* Phiremock is free software: you can redistribute it and/or modify |
|
6
|
|
|
* it under the terms of the GNU Lesser General Public License as published by |
|
7
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
|
8
|
|
|
* (at your option) any later version. |
|
9
|
|
|
* |
|
10
|
|
|
* Phiremock is distributed in the hope that it will be useful, |
|
11
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13
|
|
|
* GNU General Public License for more details. |
|
14
|
|
|
* |
|
15
|
|
|
* You should have received a copy of the GNU General Public License |
|
16
|
|
|
* along with Phiremock. If not, see <http://www.gnu.org/licenses/>. |
|
17
|
|
|
*/ |
|
18
|
|
|
|
|
19
|
|
|
namespace Mcustiel\Phiremock\Common\Utils\V2; |
|
20
|
|
|
|
|
21
|
|
|
use Mcustiel\Phiremock\Common\Utils\BodyHelper; |
|
22
|
|
|
use Mcustiel\Phiremock\Common\Utils\V1\ArrayToHttpResponseConverter as ArrayToHttpResponseConverterV1; |
|
23
|
|
|
use Mcustiel\Phiremock\Domain\Http\Body; |
|
24
|
|
|
use Mcustiel\Phiremock\Domain\Http\Header; |
|
25
|
|
|
use Mcustiel\Phiremock\Domain\Http\HeaderName; |
|
26
|
|
|
use Mcustiel\Phiremock\Domain\Http\HeadersCollection; |
|
27
|
|
|
use Mcustiel\Phiremock\Domain\Http\HeaderValue; |
|
28
|
|
|
use Mcustiel\Phiremock\Domain\Http\StatusCode; |
|
29
|
|
|
use Mcustiel\Phiremock\Domain\HttpResponse; |
|
30
|
|
|
use Mcustiel\Phiremock\Domain\Options\Delay; |
|
31
|
|
|
use Mcustiel\Phiremock\Domain\Options\ScenarioState; |
|
32
|
|
|
use Mcustiel\Phiremock\Domain\Response; |
|
33
|
|
|
|
|
34
|
|
|
class ArrayToHttpResponseConverter extends ArrayToResponseConverter // extends ArrayToHttpResponseConverterV1 |
|
35
|
|
|
{ |
|
36
|
|
|
const ALLOWED_OPTIONS = [ |
|
37
|
|
|
'statusCode' => null, |
|
38
|
|
|
'body' => null, |
|
39
|
|
|
'headers' => null, |
|
40
|
|
|
]; |
|
41
|
|
|
const STRING_START = 0; |
|
42
|
|
|
|
|
43
|
15 |
|
protected function convertResponse( |
|
44
|
|
|
array $responseArray, |
|
45
|
|
|
?Delay $delay, |
|
46
|
|
|
?ScenarioState $newScenarioState |
|
47
|
|
|
): Response { |
|
48
|
15 |
|
$response = $responseArray['response']; |
|
49
|
|
|
|
|
50
|
15 |
|
if (!isset($responseArray['response'])) { |
|
51
|
|
|
$responseArray['response'] = []; |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
15 |
|
if (!\is_array($responseArray['response'])) { |
|
55
|
|
|
throw new \Exception('Invalid response definition: ' . var_export($responseArray['response'], true)); |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
15 |
|
$this->ensureNotInvalidOptionsAreProvided( |
|
59
|
15 |
|
$responseArray['response'], |
|
60
|
15 |
|
self::ALLOWED_OPTIONS |
|
61
|
|
|
); |
|
62
|
15 |
|
if (!isset($response['statusCode'])) { |
|
63
|
6 |
|
$response['statusCode'] = 200; |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
15 |
|
return new HttpResponse( |
|
67
|
15 |
|
new StatusCode((int) $response['statusCode']), |
|
68
|
15 |
|
$this->getBody($response), |
|
69
|
15 |
|
$this->getHeaders($response), |
|
70
|
5 |
|
$delay, |
|
71
|
5 |
|
$newScenarioState |
|
72
|
|
|
); |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
15 |
|
private function getHeaders(array $responseArray): ?HeadersCollection |
|
76
|
|
|
{ |
|
77
|
15 |
|
if (isset($responseArray['headers'])) { |
|
78
|
3 |
|
$headers = $responseArray['headers']; |
|
79
|
3 |
|
if (!empty($headers)) { |
|
80
|
3 |
|
if (!\is_array($headers)) { |
|
81
|
|
|
throw new \InvalidArgumentException('Response headers are invalid: ' . var_export($headers, true)); |
|
82
|
|
|
} |
|
83
|
|
|
|
|
84
|
3 |
|
return $this->convertHeaders($headers); |
|
85
|
|
|
} |
|
86
|
|
|
} |
|
87
|
|
|
|
|
88
|
12 |
|
return null; |
|
89
|
|
|
} |
|
90
|
|
|
|
|
91
|
15 |
|
private function getBody(array $responseArray): ?Body |
|
92
|
|
|
{ |
|
93
|
15 |
|
if (isset($responseArray['body'])) { |
|
94
|
3 |
|
$body = $responseArray['body']; |
|
95
|
3 |
|
if (\is_array($body)) { |
|
96
|
|
|
$body = json_encode($body); |
|
97
|
|
|
} |
|
98
|
|
|
|
|
99
|
3 |
|
return BodyHelper::getBodyObject($body); |
|
100
|
|
|
} |
|
101
|
|
|
|
|
102
|
12 |
|
return null; |
|
103
|
|
|
} |
|
104
|
|
|
|
|
105
|
3 |
|
private function convertHeaders(array $headers): HeadersCollection |
|
106
|
|
|
{ |
|
107
|
3 |
|
$headerCollection = new HeadersCollection(); |
|
108
|
3 |
|
foreach ($headers as $headerName => $headerValue) { |
|
109
|
3 |
|
$headerCollection->setHeader( |
|
110
|
3 |
|
new Header( |
|
111
|
3 |
|
new HeaderName($headerName), |
|
112
|
3 |
|
new HeaderValue($headerValue) |
|
113
|
|
|
) |
|
114
|
|
|
); |
|
115
|
|
|
} |
|
116
|
|
|
|
|
117
|
3 |
|
return $headerCollection; |
|
118
|
|
|
} |
|
119
|
|
|
} |
|
120
|
|
|
|