Completed
Push — master ( 8b8afe...5f2bbe )
by Greg
02:21
created

tests/unit/Task/PHPServerTest.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
use AspectMock\Test as test;
4
5
class PHPServerTest extends \Codeception\TestCase\Test
6
{
7
    /**
8
     * @var \AspectMock\Proxy\ClassProxy
9
     */
10
    protected $process;
11
12 View Code Duplication
    protected function _before()
0 ignored issues
show
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...
13
    {
14
        $this->process = test::double('Symfony\Component\Process\Process', [
15
            'run' => false,
16
            'start' => false,
17
            'getOutput' => 'Hello world',
18
            'getExitCode' => 0,
19
            'logger' => new \Psr\Log\NullLogger(),
20
        ]);
21
        test::double('Robo\Task\Development\PhpServer', ['output' => new \Symfony\Component\Console\Output\NullOutput()]);
22
    }
23
24
    public function testServerBackgroundRun()
25
    {
26
        $task = new \Robo\Task\Development\PhpServer('8000');
27
        $task->setLogger(new \Psr\Log\NullLogger());
28
29
        $task->background()->run();
30
        $this->process->verifyInvoked('start');
31
    }
32
33
    public function testServerRun()
34
    {
35
        $task = new \Robo\Task\Development\PhpServer('8000');
36
        $task->setLogger(new \Psr\Log\NullLogger());
37
38
        $task->run();
39
        $this->process->verifyInvoked('run');
40
    }
41
42
    public function testServerCommand()
43
    {
44
        // There is an 'exec ' at the beginning of the command here when
45
        // running on Linux. Windows and MacOS do not have this prefix.
46
        $cmd = stripos(PHP_OS, 'linux') === false ? '' : 'exec ';
47
        $cmd .= 'php -S 127.0.0.1:8000 -t web';
48
49
        verify(
50
            (new \Robo\Task\Development\PhpServer('8000'))
51
                ->host('127.0.0.1')
52
                ->dir('web')
53
                ->getCommand()
54
        )->equals($cmd);
55
    }
56
}
57