1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace PhalconExt\Test; |
4
|
|
|
|
5
|
|
|
use PHPUnit\Framework\TestCase; |
6
|
|
|
|
7
|
|
|
class WebTestCase extends TestCase |
8
|
|
|
{ |
9
|
|
|
protected $app; |
10
|
|
|
|
11
|
|
|
public function setUp() |
12
|
|
|
{ |
13
|
|
|
// A new instance of fully configured app :) |
14
|
|
|
$this->app = include __DIR__ . '/../example/index.php'; |
15
|
|
|
} |
16
|
|
|
|
17
|
|
|
/** |
18
|
|
|
* This is stripped down barebone version for our example/ endpoints. |
19
|
|
|
*/ |
20
|
|
|
protected function doRequest(string $uri, array $parameters = []): self |
21
|
|
|
{ |
22
|
|
|
\Phalcon\Di::reset(); |
|
|
|
|
23
|
|
|
\Phalcon\Di::setDefault($this->app->getDI()); |
24
|
|
|
|
25
|
|
|
$parameters['_url'] = $uri; |
26
|
|
|
|
27
|
|
|
$_SERVER['REQUEST_METHOD'] = 'GET'; |
28
|
|
|
$_SERVER['QUERY_STRING'] = http_build_query($parameters); |
29
|
|
|
$_SERVER['REQUEST_URI'] = '/?' . $_SERVER['QUERY_STRING']; |
30
|
|
|
$_GET = $parameters; |
31
|
|
|
|
32
|
|
|
$this->response = null; |
|
|
|
|
33
|
|
|
|
34
|
|
|
ob_start(); |
35
|
|
|
$this->app->handle($uri); |
36
|
|
|
$content = ob_get_clean(); |
37
|
|
|
|
38
|
|
|
$response = $this->app->getDI()->getShared('response'); |
39
|
|
|
|
40
|
|
|
if (empty($response->getContent())) { |
41
|
|
|
$response->setContent($content); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
$this->response = $response; |
45
|
|
|
|
46
|
|
|
return $this; |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
protected function configure(array $config): self |
50
|
|
|
{ |
51
|
|
|
$this->app->getDI()->getShared('config')->merge($config); |
52
|
|
|
|
53
|
|
|
return $this; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
protected function assertResponseOk(): self |
57
|
|
|
{ |
58
|
|
|
$this->assertContains($this->responseCode(), [null, 200]); |
59
|
|
|
|
60
|
|
|
return $this; |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
protected function assertResponseNotOk(): self |
64
|
|
|
{ |
65
|
|
|
$this->assertNotContains($this->responseCode(), [null, 200]); |
66
|
|
|
|
67
|
|
|
return $this; |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
protected function assertHeaderContains(string $header, string $value): self |
71
|
|
|
{ |
72
|
|
|
$headers = $this->response->getHeaders()->toArray(); |
73
|
|
|
|
74
|
|
|
$this->assertArrayHasKey($header, $headers); |
75
|
|
|
$this->assertContains($value, $headers[$header]); |
76
|
|
|
|
77
|
|
|
return $this; |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
protected function assertHeaderKeys(array $keys): self |
81
|
|
|
{ |
82
|
|
|
$headers = $this->response->getHeaders(); |
83
|
|
|
|
84
|
|
|
foreach ($keys as $key) { |
85
|
|
|
$this->assertArrayHasKey($key, $headers); |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
return $this; |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
protected function assertResponseContains(string $part): self |
92
|
|
|
{ |
93
|
|
|
$this->assertContains($part, $this->response->getContent()); |
94
|
|
|
|
95
|
|
|
return $this; |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
protected function assertStatusCode(int $code): self |
99
|
|
|
{ |
100
|
|
|
$this->assertEquals($code, $this->responseCode()); |
101
|
|
|
|
102
|
|
|
return $this; |
103
|
|
|
} |
104
|
|
|
|
105
|
|
|
protected function assertResponseJson(): self |
106
|
|
|
{ |
107
|
|
|
$this->assertHeaderContains('Content-Type', 'application/json'); |
108
|
|
|
|
109
|
|
|
return $this; |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
protected function responseCode(): int |
113
|
|
|
{ |
114
|
|
|
$code = $this->response->getStatusCode(); |
115
|
|
|
|
116
|
|
|
return $code === null ? 200 : (int) substr($code, 0, 3); |
117
|
|
|
} |
118
|
|
|
} |
119
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths