Completed
Push — master ( d3a073...5737c8 )
by Greg
02:21
created

tests/unit/Task/HgTest.php (2 issues)

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 HgTest extends \Codeception\TestCase\Test
6
{
7
    /**
8
     * @var \AspectMock\Proxy\ClassProxy
9
     */
10
    protected $hg;
11
12
    /**
13
     * @var \Robo\Task\Vcs\HgStack
14
     */
15
    protected $hgStack;
16
17
    protected function _before()
18
    {
19
        $this->hg = Test::double('Robo\Task\Vcs\HgStack', [
20
            'executeCommand' => new \AspectMock\Proxy\Anything(),
21
            'output' => new \Symfony\Component\Console\Output\NullOutput(),
22
            'logger' => new \Psr\Log\NullLogger(),
23
        ]);
24
        $this->hgStack = (new \Robo\Task\Vcs\HgStack('hg'));
25
    }
26
27
    // tests
28
    public function testHgStackRun()
29
    {
30
        $this->hgStack->stopOnFail()->add()->pull()->run();
31
        $this->hg->verifyInvoked('executeCommand', ['hg add']);
32
        $this->hg->verifyInvoked('executeCommand', ['hg pull']);
33
34
        (new \Robo\Task\Vcs\HgStack('hg'))->add()->pull()->run();
35
        $this->hg->verifyInvoked('executeCommand', ['hg add && hg pull']);
36
    }
37
38
    public function testHgStackPull()
39
    {
40
        verify(
41
            $this->hgStack
42
                ->pull()
43
                ->getCommand()
44
        )->equals('hg pull');
45
    }
46
47
    public function testHgStackAddFiles()
48
    {
49
        verify(
50
            $this->hgStack
51
                ->add('*.php', '*.css')
52
                ->getCommand()
53
        )->equals('hg add -I *.php -X *.css');
54
    }
55
56 View Code Duplication
    public function testHgStackCommands()
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...
57
    {
58
        verify(
59
            $this->hgStack
60
                ->cloneRepo('https://bitbucket.org/durin42/hgsubversion')
61
                ->pull()
62
                ->add()
63
                ->commit('changed')
64
                ->push()
65
                ->tag('0.6.0')
66
                ->push('0.6.0')
67
                ->getCommand()
68
        )->equals("hg clone https://bitbucket.org/durin42/hgsubversion && hg pull && hg add && hg commit -m 'changed' && hg push && hg tag 0.6.0 && hg push -b '0.6.0'");
69
    }
70
71 View Code Duplication
    public function testHgStackCommandsWithTagMessage()
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...
72
    {
73
        verify(
74
            $this->hgStack
75
                ->cloneRepo('https://bitbucket.org/durin42/hgsubversion')
76
                ->pull()
77
                ->add()
78
                ->commit('changed')
79
                ->push()
80
                ->tag('0.6.0', 'message')
81
                ->push('0.6.0')
82
                ->getCommand()
83
        )->equals("hg clone https://bitbucket.org/durin42/hgsubversion && hg pull && hg add && hg commit -m 'changed' && hg push && hg tag -m 'message' 0.6.0 && hg push -b '0.6.0'");
84
    }
85
}
86