Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Response.php « Tracker « Mock « Framework « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 38ce44db6b02a96bb07f7e26db19c5386e5b97d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* Piwik - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/

namespace Piwik\Tests\Framework\Mock\Tracker;

use Exception;
use Piwik\Tracker;

class Response extends \Piwik\Tracker\Response
{
    public $statusCode = 200;
    public $exception;
    public $isInit = false;
    public $isExceptionOutput = false;
    public $isResponseOutput = false;
    public $isSend = false;

    private $output = 'My Dummy Content';

    public function init(Tracker $tracker)
    {
        $this->isInit = true;
    }

    public function getOutput()
    {
        $this->isSend = true;

        return $this->output;
    }

    public function outputException(Tracker $tracker, Exception $e, $statusCode)
    {
        $this->isExceptionOutput = true;
        $this->statusCode = $statusCode;
        $this->exception = $e;

        $this->output = $e->getMessage();
    }

    public function outputResponse(Tracker $tracker)
    {
        $this->isResponseOutput = true;
    }

}