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

OutputTest.php « CliMulti « Core « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46807aa30a41d364361fdbe56e79c289ad1d3e76 (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
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */
use Piwik\CliMulti\Output;

/**
 * Class OutputTest
 * @group Core
 */
class OutputTest extends PHPUnit_Framework_TestCase
{

    /**
     * @var Output
     */
    private $output;

    public function setUp()
    {
        \Piwik\Url::setHost(false);
        $this->output = new Output('myid');
    }

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

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

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

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

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

    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());
    }
}