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

InfoTest.php « Commands « tests « CustomVariables « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64851f277e2d43f98fae94f7d5bc6d38652d2b6a (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
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */

namespace Piwik\Plugins\CustomVariables\tests\Commands;

use Piwik\Plugins\CustomVariables\Commands\Info;
use Piwik\Plugins\CustomVariables\Model;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;

/**
 * @group CustomVariables
 * @group CustomVariablesTest
 * @group Plugins
 * @group Plugins
 */
class InfoTest extends IntegrationTestCase
{
    public function testExecute_ShouldOutputInfoSuccess_IfEverythingIsOk()
    {
        self::assertStringContainsString('Your Piwik is configured for 5 custom variables.', $this->executeCommand());
    }

    public function testExecute_ShouldOutputErrorMessage_IfColumnsDoNotMatch()
    {
        $model = new Model(Model::SCOPE_PAGE);
        $model->removeCustomVariable();

        self::assertStringContainsString('There is a problem with your custom variables configuration', $this->executeCommand());
    }

    private function executeCommand()
    {
        $infoCmd = new Info();

        $application = new Application();
        $application->add($infoCmd);
        $commandTester = new CommandTester($infoCmd);

        $commandTester->execute(array('command' => $infoCmd->getName()));
        $result = $commandTester->getDisplay();

        return $result;
    }
}