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

tests/unit/Task/ExecTaskTest.php (3 issues)

duplicate/similar methods.

Duplication Informational

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
use AspectMock\Test as test;
3
4
class ExecTaskTest extends \Codeception\TestCase\Test
5
{
6
    /**
7
     * @var \AspectMock\Proxy\ClassProxy
8
     */
9
    protected $process;
10
11 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...
12
    {
13
        $this->process = test::double('Symfony\Component\Process\Process', [
14
            'run' => false,
15
            'start' => false,
16
            'getOutput' => 'Hello world',
17
            'getExitCode' => 0,
18
            'logger' => new \Psr\Log\NullLogger(),
19
        ]);
20
        test::double('Robo\Task\Base\Exec', ['output' => new \Symfony\Component\Console\Output\NullOutput()]);
21
    }
22
23 View Code Duplication
    public function testExec()
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...
24
    {
25
        $task = new \Robo\Task\Base\Exec('ls');
26
        $task->setLogger(new \Psr\Log\NullLogger());
27
28
        $result = $task->run();
29
        $this->process->verifyInvoked('run');
30
        verify($result->getMessage())->equals('Hello world');
31
        verify($result->getExitCode())->equals(0);
32
    }
33
34 View Code Duplication
    public function testExecInBackground()
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...
35
    {
36
        $task = new \Robo\Task\Base\Exec('ls');
37
        $task->setLogger(new \Psr\Log\NullLogger());
38
39
        $result = $task->background()->run();
40
        $this->process->verifyInvoked('start');
41
        $this->process->verifyNeverInvoked('run');
42
        verify('exit code was not received', $result->getExitCode())->notEquals(100);
43
    }
44
45
    public function testGetCommand()
46
    {
47
        verify((new \Robo\Task\Base\Exec('ls'))->getCommand())->equals('ls');
48
    }
49
50
    public function testExecStack()
51
    {
52
        $task = new \Robo\Task\Base\ExecStack();
53
        $task->setLogger(new \Psr\Log\NullLogger());
54
55
        $task
56
            ->exec('ls')
57
            ->exec('cd /')
58
            ->exec('cd home')
59
            ->run();
60
        $this->process->verifyInvoked('run', 3);
61
    }
62
63
    public function testExecStackCommand()
64
    {
65
        verify((new \Robo\Task\Base\ExecStack())
66
            ->exec('ls')
67
            ->exec('cd /')
68
            ->exec('cd home')
69
            ->getCommand()
70
        )->equals('ls && cd / && cd home');
71
    }
72
73
    public function testExecStackCommandInterface()
74
    {
75
        verify((new \Robo\Task\Base\ExecStack())
76
            ->exec('ls')
77
            ->exec((new \Robo\Task\Vcs\GitStack('git'))->add('-A')->pull())
78
            ->getCommand()
79
        )->equals('ls && git add -A && git pull');
80
    }
81
};
82