Passed
Push — master ( fa46b3...ce6672 )
by Ylva
05:16 queued 02:30
created

FlatFileContentControllerTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 17
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
nc 1
nop 0
dl 0
loc 17
c 1
b 0
f 0
cc 1
rs 10
1
<?php
2
3
namespace Anax\Controller;
4
5
use Anax\DI\DIFactoryConfig;
0 ignored issues
show
Bug introduced by
The type Anax\DI\DIFactoryConfig was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
6
use PHPUnit\Framework\TestCase;
7
8
/**
9
 * Test the FlatFileContentController.
10
 */
11
class FlatFileContentControllerTest extends TestCase
12
{
13
    
14
    // Create the di container.
15
    protected $di;
16
    protected $controller;
17
18
19
20
    /**
21
     * Prepare before each test.
22
     */
23
    protected function setUp()
24
    {
25
        global $di;
26
27
        // Setup di
28
        $this->di = new DIFactoryConfig();
29
        $this->di->loadServices(ANAX_INSTALL_PATH . "/config/di");
30
31
        // Use a different cache dir for unit test
32
        $this->di->get("cache")->setPath(ANAX_INSTALL_PATH . "/test/cache");
33
34
        // View helpers uses the global $di so it needs its value
35
        $di = $this->di;
36
37
        // Setup the controller
38
        $this->controller = new FlatFileContentController();
39
        $this->controller->setDI($this->di);
40
        //$this->controller->initialize();
41
    }
42
43
44
45
    /**
46
     * Test the route "index".
47
     */
48
    public function testIndexAction()
49
    {
50
        $res = $this->controller->catchAll();
51
        $this->assertInstanceOf("\Anax\Response\Response", $res);
52
53
        $body = $res->getBody();
54
        $exp = "| ramverk1</title>";
55
        $this->assertContains($exp, $body);
56
    }
57
}
58