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

ProcessTest.php « CliMulti « Core « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12ec4c98e88d3b1b07446f86df9917891255568f (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
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

use Piwik\CliMulti\Process;

/**
 * Class ProcessTest
 * @group Core
 */
class ProcessTest extends PHPUnit_Framework_TestCase
{
    /**
     * @var Process
     */
    private $process;

    public function setUp()
    {
        $this->process = new Process('testPid');
    }

    public function tearDown()
    {
        $this->process->finishProcess();
    }

    /**
     * @expectedException \Exception
     * @expectedExceptionMessage The given pid has an invalid format
     */
    public function test_construct_shouldFailInCasePidIsInvalid()
    {
        new Process('../../htaccess');
    }

    public function test_construct_shouldBeNotStarted_IfPidJustCreated()
    {
        $this->assertFalse($this->process->hasStarted());
    }

    public function test_construct_shouldBeNotRunning_IfPidJustCreated()
    {
        $this->assertFalse($this->process->isRunning());
    }

    public function test_startProcess_finishProcess_ShouldMarkProcessAsStarted()
    {
        $this->assertFalse($this->process->isRunning());
        $this->assertFalse($this->process->hasStarted());
        $this->assertFalse($this->process->hasFinished());

        $this->process->startProcess();

        $this->assertTrue($this->process->isRunning());
        $this->assertTrue($this->process->hasStarted());
        $this->assertTrue($this->process->isRunning());
        $this->assertTrue($this->process->hasStarted());
        $this->assertFalse($this->process->hasFinished());

        $this->process->startProcess();

        $this->assertTrue($this->process->isRunning());
        $this->assertTrue($this->process->hasStarted());
        $this->assertFalse($this->process->hasFinished());

        $this->process->finishProcess();

        $this->assertFalse($this->process->isRunning());
        $this->assertTrue($this->process->hasStarted());
        $this->assertTrue($this->process->hasFinished());
    }

    public function test_finishProcess_ShouldNotThrowError_IfNotStartedBefore()
    {
        $this->process->finishProcess();

        $this->assertFalse($this->process->isRunning());
        $this->assertTrue($this->process->hasStarted());
        $this->assertTrue($this->process->hasFinished());
    }

    public function test_hasStarted()
    {
        $this->assertTrue($this->process->hasStarted(false));
        $this->assertTrue($this->process->hasStarted('6341'));

        $this->assertFalse($this->process->hasStarted(''));
    }

    public function test_isSupported()
    {
        $this->assertTrue(Process::isSupported(), 'This test does not work on windows or if the commands ps and awk are not available');
    }

    public function test_getSecondsSinceCreation()
    {
        sleep(3);
        $seconds = $this->process->getSecondsSinceCreation();

        $this->assertGreaterThanOrEqual(3, $seconds);
        $this->assertLessThanOrEqual(4, $seconds);
    }

}