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

OutputTest.php « CliMulti « Integration « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2aaf9ee135ff12ee32ef8105db6c178b4c07f820 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Tests\Integration\CliMulti;

use Piwik\CliMulti\Output;
use Piwik\Tests\Framework\Mock\File;
use Piwik\Url;

/**
 * @group CliMulti
 */
class OutputTest extends \PHPUnit_Framework_TestCase
{
    /**
     * @var Output
     */
    private $output;

    public function setUp()
    {
        parent::setUp();

        File::reset();
        Url::setHost(false);
        $this->output = new Output('myid');
    }

    public function tearDown()
    {
        if(is_object($this->output)){
            $this->output->destroy();
        }
        
        File::reset();

        parent::tearDown();
    }

    /**
     * @expectedException \Exception
     * @expectedExceptionMessage The given output id has an invalid format
     */
    public function test_construct_shouldFail_IfInvalidOutputIdGiven()
    {
        new Output('../../');
    }

    public function test_getOutputId()
    {
        $this->assertSame('myid', $this->output->getOutputId());
    }

    public function test_exists_ShouldReturnsFalse_IfNothingWrittenYet()
    {
        $this->assertFalse($this->output->exists());
    }

    public function test_getPathToFile_shouldReturnFullPath()
    {
        $expectedEnd = '/climulti/myid.output';

        $this->assertStringEndsWith($expectedEnd, $this->output->getPathToFile());
        $this->assertGreaterThan(strlen($expectedEnd), strlen($this->output->getPathToFile()));
    }

    public function test_isAbormal_ShouldReturnFalse_IfFileDoesNotExist()
    {
        $this->assertFalse($this->output->isAbnormal());
    }

    public function test_isAbormal_ShouldReturnTrue_IfFilesizeIsNotTooBig()
    {
        File::setFileSize(1024 * 1024 * 99);
        File::setFileExists(true);

        $this->assertFalse($this->output->isAbnormal());
    }

    public function test_isAbormal_ShouldReturnTrue_IfFilesizeIsTooBig()
    {
        File::setFileSize(1024 * 1024 * 101);
        File::setFileExists(true);

        $this->assertTrue($this->output->isAbnormal());
    }

    public function test_exists_ShouldReturnTrue_IfSomethingIsWritten()
    {
        $this->output->write('test');

        $this->assertTrue($this->output->exists());

        $this->output->destroy();

        $this->assertFalse($this->output->exists());
    }

    public function test_get_shouldReturnNull_IfNothingWritten()
    {
        $this->assertFalse($this->output->get());
    }

    public function test_get_write_shouldReturnTheActualOutput_IfExists()
    {
        $anyContent = 'My Actual Content';
        $this->output->write($anyContent);

        $this->assertEquals($anyContent, $this->output->get());
    }

    public function test_write_shouldNotAppend_IfWriteIsCalledTwice()
    {
        $anyContent = 'My Actual Content';
        $this->output->write($anyContent);
        $this->output->write($anyContent);

        $this->assertEquals($anyContent, $this->output->get());
    }

    public function test_write_shouldSaveAnEmptyString_IfContentIsNull()
    {
        $this->output->write(null);

        $this->assertTrue($this->output->exists());
        $this->assertEquals('', $this->output->get());
    }

    public function test_destroy_ShouldRemove_IfAnyOutputIsWritten()
    {
        $this->output->write('test');

        $this->assertTrue($this->output->exists());

        $this->output->destroy();

        $this->assertFalse($this->output->exists());
        $this->assertFalse($this->output->get());
    }

    public function test_destroy_ShouldNotFail_IfNothingIsWritten()
    {
        $this->output->destroy();

        $this->assertFalse($this->output->exists());
        $this->assertFalse($this->output->get());
    }

    public function test_twoDifferentOutputHandles_ShouldWriteInDifferentFiles()
    {
        $output1 = new Output('id1');
        $output2 = new Output('id2');

        // cleanup possible earlier failed test runs
        $output1->destroy();
        $output2->destroy();

        $output1->write('test 1');
        $this->assertTrue($output1->exists());
        $this->assertFalse($output2->exists());
        $output2->write('test 2');

        $this->assertEquals('test 1', $output1->get());
        $this->assertEquals('test 2', $output2->get());

        $output1->destroy();
        $this->assertFalse($output1->exists());
        $this->assertTrue($output2->exists());
        $output2->destroy();

        $this->assertFalse($output2->exists());
    }
}