Completed
Push — master ( d1d910...7edec1 )
by amaury
03:34
created

Command/PublishElementCommandTrait.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
namespace OpenOrchestra\FunctionalTests\BackofficeBundle\Command;
4
5
use Symfony\Component\Console\Tester\CommandTester;
6
7
/**
8
 * Class PublishElementCommandTrait
9
 */
10
trait PublishElementCommandTrait
11
{
12
    /**
13
     * @param string $siteId
14
     * @param string $commandName
15
     * @param string $repositoryName
16
     * @param string $entityName
17
     */
18 View Code Duplication
    public function executePublish($siteId, $commandName, $repositoryName, $entityName)
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...
19
    {
20
        $command = $this->application->find($commandName);
21
        $commandTester = new CommandTester($command);
22
23
        $site = static::$kernel->getContainer()->get('open_orchestra_model.repository.site')->findOneBySiteId($siteId);
24
        $fromStatus = static::$kernel->getContainer()->get('open_orchestra_model.repository.status')
25
            ->findByAutoPublishFrom();
26
        $elements = static::$kernel->getContainer()->get($repositoryName)
27
            ->findElementToAutoPublish($site->getSiteId(), $fromStatus);
28
29
        $commandTester->execute(array('command' => $command->getName()));
30
        $this->assertRegExp(
31
            '/Publishing '.$entityName.'s for siteId ' . $siteId . '/',
32
            $commandTester->getDisplay()
33
        );
34
35
        foreach ($elements as $element) {
36
            $this->assertRegExp(
37
                '/-> ' . $element->getName() . ' \(v' . $element->getVersion() . ' ' . $element->getLanguage() . '\) published/',
38
                $commandTester->getDisplay()
39
            );
40
        }
41
42
        $this->assertRegExp('/Done./', $commandTester->getDisplay());
43
    }
44
    /**
45
     * @param string $siteId
46
     * @param string $commandName
47
     * @param string $repositoryName
48
     * @param string $entityName
49
     */
50 View Code Duplication
    public function executeUnpublish($siteId, $commandName, $repositoryName, $entityName)
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...
51
    {
52
        $command = $this->application->find($commandName);
53
        $commandTester = new CommandTester($command);
54
55
        $site = static::$kernel->getContainer()->get('open_orchestra_model.repository.site')->findOneBySiteId($siteId);
56
        $fromStatus = static::$kernel->getContainer()->get('open_orchestra_model.repository.status')
57
            ->findOneByPublished();
58
        $elements = static::$kernel->getContainer()->get($repositoryName)
59
            ->findElementToAutoUnpublish($site->getSiteId(), $fromStatus);
60
61
        $commandTester->execute(array('command' => $command->getName()));
62
        $this->assertRegExp(
63
            '/Unpublishing '.$entityName.'s for siteId ' . $siteId . '/',
64
            $commandTester->getDisplay()
65
        );
66
67
        foreach ($elements as $element) {
68
            $this->assertRegExp(
69
                '/-> ' . $element->getName() . ' \(v' . $element->getVersion() . ' ' . $element->getLanguage() . '\) unpublished/',
70
                $commandTester->getDisplay()
71
            );
72
        }
73
74
        $this->assertRegExp('/Done./', $commandTester->getDisplay());
75
    }
76
}
77