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

GetTest.php « Reports « Unit « tests « VisitsSummary « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ddb68d1c1d5517372422add6326145d1bfd140c (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Plugins\VisitsSummary\tests\Unit\Reports;

use Piwik\DataTable;
use Piwik\Plugins\VisitsSummary\Reports\Get;

/**
 * @group VisitsSummary
 * @group Reports
 * @group GetTest
 * @group Plugins
 */
class GetTest extends \PHPUnit_Framework_TestCase
{
    /**
     * @var Get
     */
    private $get;

    private $column = 'nb_users';

    public function setUp()
    {
        parent::setUp();
        $this->get = new Get();
    }

    public function test_removeUsersFromProcessedReport_shouldNotDoAnything_IfNothingRelatedToUsersIsGiven()
    {
        $response = array();
        $this->get->removeUsersFromProcessedReport($response);
        $this->assertSame(array(), $response);

        $response = array($this->column => '10', 'test' => 'whatever', 'columns' => array($this->column));
        $this->get->removeUsersFromProcessedReport($response);
        $this->assertSame(array($this->column => '10', 'test' => 'whatever', 'columns' => array($this->column)), $response);
    }

    public function test_removeUsersFromProcessedReport_shouldRemoveMetrics_IfUserIsGiven()
    {
        $response = array('metadata' => array('metrics' => array('nb_visits' => 'Visits', $this->column => 'Users')));
        $this->get->removeUsersFromProcessedReport($response);
        $this->assertSame(array('metadata' => array('metrics' => array('nb_visits' => 'Visits'))), $response);
    }

    public function test_removeUsersFromProcessedReport_shouldRemoveMetricsDocumentation_IfUserIsGiven()
    {
        $response = array('metadata' => array('metricsDocumentation' => array('nb_visits' => 'Visits', $this->column => 'Users')));
        $this->get->removeUsersFromProcessedReport($response);
        $this->assertSame(array('metadata' => array('metricsDocumentation' => array('nb_visits' => 'Visits'))), $response);
    }

    public function test_removeUsersFromProcessedReport_shouldRemoveColumn_IfUserIsGiven()
    {
        $response = array('columns' => array('nb_visits' => 'Visits', $this->column => 'Users'));
        $this->get->removeUsersFromProcessedReport($response);
        $this->assertSame(array('columns' => array('nb_visits' => 'Visits')), $response);
    }

    public function test_removeUsersFromProcessedReport_shouldRemoveUsersColumnFromDataTable_IfUserIsGiven()
    {
        $table = $this->getDataTableWithUsers();
        $this->assertSame(array(20), $table->getColumn($this->column)); // verify column present

        $response = array('reportData' => $table);
        $this->get->removeUsersFromProcessedReport($response);

        $this->assertSame(array(false), $table->getColumn($this->column));
        $this->assertSame(array(10), $table->getColumn('nb_visits'));
    }

    public function test_removeUsersFromProcessedReport_shouldRemoveUsersColumnFromDataTableMap_IfUserIsGiven()
    {
        $table = new DataTable\Map();
        $table->addTable($this->getDataTableWithUsers(), 'label');
        $this->assertSame(array(20), $table->getColumn($this->column)); // verify column present

        $response = array('reportData' => $table);
        $this->get->removeUsersFromProcessedReport($response);

        $this->assertSame(array(false), $table->getColumn($this->column));
        $this->assertSame(array(10), $table->getColumn('nb_visits'));
    }

    private function getDataTableWithUsers()
    {
        $table = new DataTable();
        $table->addRowFromSimpleArray(array('nb_visits' => 10, $this->column => 20));

        return $table;
    }
}