1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Anax\Controller; |
4
|
|
|
|
5
|
|
|
use Anax\DI\DIFactoryConfig; |
|
|
|
|
6
|
|
|
use PHPUnit\Framework\TestCase; |
7
|
|
|
|
8
|
|
|
/** |
9
|
|
|
* Test the SampleController. |
10
|
|
|
*/ |
11
|
|
|
class SampleControllerTest extends TestCase |
12
|
|
|
{ |
13
|
|
|
/** |
14
|
|
|
* Test the route "index". |
15
|
|
|
*/ |
16
|
|
|
public function testIndexAction() |
17
|
|
|
{ |
18
|
|
|
$controller = new SampleController(); |
19
|
|
|
$controller->initialize(); |
20
|
|
|
$res = $controller->indexAction(); |
21
|
|
|
$this->assertContains("db is active", $res); |
22
|
|
|
} |
23
|
|
|
|
24
|
|
|
|
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Test the route "info". |
28
|
|
|
*/ |
29
|
|
|
public function testInfoActionGet() |
30
|
|
|
{ |
31
|
|
|
$controller = new SampleController(); |
32
|
|
|
$controller->initialize(); |
33
|
|
|
$res = $controller->infoActionGet(); |
34
|
|
|
$this->assertContains("db is active", $res); |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
|
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* Test the route "dump-di". |
41
|
|
|
*/ |
42
|
|
|
public function testDumpDiActionGet() |
43
|
|
|
{ |
44
|
|
|
// Setup di |
45
|
|
|
$di = new DIFactoryConfig(); |
46
|
|
|
$di->loadServices(ANAX_INSTALL_PATH . "/config/di"); |
47
|
|
|
|
48
|
|
|
// Use a different cache dir for unit test |
49
|
|
|
$di->get("cache")->setPath(ANAX_INSTALL_PATH . "/test/cache"); |
50
|
|
|
|
51
|
|
|
// Setup the controller |
52
|
|
|
$controller = new SampleController(); |
53
|
|
|
$controller->setDI($di); |
54
|
|
|
$controller->initialize(); |
55
|
|
|
|
56
|
|
|
// Do the test and assert it |
57
|
|
|
$res = $controller->dumpDiActionGet(); |
58
|
|
|
$this->assertContains("di contains", $res); |
59
|
|
|
$this->assertContains("configuration", $res); |
60
|
|
|
$this->assertContains("request", $res); |
61
|
|
|
$this->assertContains("response", $res); |
62
|
|
|
} |
63
|
|
|
} |
64
|
|
|
|
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