Completed
Push — master ( bd630a...f47f8d )
by Steve
01:55
created

DiceAppTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 20

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 20
rs 9.6
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
use MeadSteve\DiceApi\Counters\NullCounter;
4
use MeadSteve\DiceApi\Dice\Factories\DiceFactoryCollection;
5
use MeadSteve\DiceApi\Dice\Factories\NumericDiceFactory;
6
use MeadSteve\DiceApi\Dice\Factories\SpecialDiceFactory;
7
use MeadSteve\DiceApi\Renderer\Html;
8
use MeadSteve\DiceApi\Renderer\Json;
9
use MeadSteve\DiceApi\Renderer\Plain;
10
use MeadSteve\DiceApi\UrlDiceGenerator;
11
use MeadSteve\DiceApi\DiceApp;
12
use MeadSteve\DiceApi\Renderer\RendererCollection;
13
use MeadSteve\DiceApi\RequestHandler\DiceRequestHandler;
14
use Slim\Http\Body;
15
use Slim\Http\Request;
16
use Slim\Http\Response;
17
18
class DiceAppTest extends PHPUnit_Framework_TestCase
19
{
20
    private $app;
21
22
23
    protected function setUp()
24
    {
25
        $diceGenerator = new UrlDiceGenerator(
26
            new DiceFactoryCollection([
27
                new NumericDiceFactory(),
28
                new SpecialDiceFactory()
29
            ])
30
        );
31
        $rendererCollection = new RendererCollection([
32
            new Json(),
33
            new Html('http://test.com'),
34
            new Plain()
35
        ]);
36
        $nullCounter = new NullCounter();
37
        $diceRequestHandler = new DiceRequestHandler($diceGenerator, $rendererCollection, $nullCounter);
38
        $this->app = new DiceApp(
39
            $diceRequestHandler,
40
            $nullCounter
41
        );
42
    }
43
44 View Code Duplication
    public function testAppCanRolld6AndReturnJson()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
45
    {
46
        $request = $this->requestForPath("/json/d6");
47
        $responseOut = $this->runApp($request);
48
        $this->assertEquals($responseOut->getStatusCode(), 200);
49
        $this->assertEquals($responseOut->getHeader("Content-Type")[0], "application/json");
50
    }
51
52 View Code Duplication
    public function testAppCanRolld6AndReturnHtml()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
53
    {
54
        $request = $this->requestForPath("/html/d6");
55
        $responseOut = $this->runApp($request);
56
        $this->assertEquals($responseOut->getStatusCode(), 200);
57
        $this->assertEquals($responseOut->getHeader("Content-Type")[0], "text/html");
58
    }
59
60 View Code Duplication
    public function testAppCanRolld20AndReturnHtml()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
61
    {
62
        $request = $this->requestForPath("/html/d20");
63
        $responseOut = $this->runApp($request);
64
        $this->assertEquals($responseOut->getStatusCode(), 200);
65
        $this->assertEquals($responseOut->getHeader("Content-Type")[0], "text/html");
66
    }
67
68 View Code Duplication
    public function testAppCanRolldSteveandReturnJson()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
69
    {
70
        $request = $this->requestForPath("/json/2dSteve");
71
        $responseOut = $this->runApp($request);
72
        $this->assertEquals($responseOut->getStatusCode(), 200);
73
        $this->assertEquals($responseOut->getHeader("Content-Type")[0], "application/json");
74
    }
75
76 View Code Duplication
    public function testAppCanRolldFateandReturnJson()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
77
    {
78
        $request = $this->requestForPath("/json/2dFate");
79
        $responseOut = $this->runApp($request);
80
        $this->assertEquals($responseOut->getStatusCode(), 200);
81
        $this->assertEquals($responseOut->getHeader("Content-Type")[0], "application/json");
82
    }
83
84
    /**
85
     * @param $request
86
     * @return Psr\Http\Message\ResponseInterface
87
     */
88
    private function runApp($request)
89
    {
90
        $app = $this->app;
91
        return $app($request, new Response());
92
    }
93
94
    private function requestForPath($path)
95
    {
96
        $path = new \Slim\Http\Uri("http", "diceapi.com", null, $path);
97
        $body = new Body(fopen('php://temp', 'r+'));
98
        $headers = new \Slim\Http\Headers();
99
        $request = new Request("GET", $path, $headers, [], [], $body);
100
        return $request;
101
    }
102
}
103