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

AppendNameToColumnNamesTest.php « Unit « tests « Goals « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59d500d208bdf95a643620d9c81dc4d2a03800c8 (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
<?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\Goals\tests\Unit;

use Piwik\DataTable;
use Piwik\DataTable\Row;

/**
 * @group AppendNameToColumnNamesTest
 * @group DataTable
 * @group Filter
 * @group Goals
 */
class AppendNameToColumnNamesTest extends \PHPUnit_Framework_TestCase
{
    private $filter = 'Piwik\Plugins\Goals\DataTable\Filter\AppendNameToColumnNames';

    /**
     * @var DataTable
     */
    private $table;

    public function setUp()
    {
        $this->table = new DataTable\Simple();
        $this->addRow(array('nb_visits' => 1, 'nb_conversions' => 5, 'revenue' => 10, 'conversion_rate' => 20));
    }

    private function addRow($columns)
    {
        $this->table->addRow($this->buildRow($columns));
    }

    private function buildRow($columns)
    {
        return new Row(array(Row::COLUMNS => $columns));
    }

    public function test_filter_shouldNotAppendAnything_IfNameToReplaceIsEmpty()
    {
        $columnNamesBefore = array('nb_visits', 'nb_conversions', 'revenue', 'conversion_rate');

        $this->table->filter($this->filter, array(''));
        $this->table->filter($this->filter, array(null));
        $this->table->filter($this->filter, array(false));

        $columnNamesAfter = array_keys($this->table->getFirstRow()->getColumns());
        $this->assertSame($columnNamesBefore, $columnNamesAfter);
    }

    public function test_filter_shoulAppendGivenStringToAllColumns_IfSet()
    {
        $nameToAppend = '_new_visit';
        $this->table->filter($this->filter, array($nameToAppend));

        $expected = array(
            'nb_visits' . $nameToAppend => 1,
            'nb_conversions' . $nameToAppend => 5,
            'revenue' . $nameToAppend => 10,
            'conversion_rate' . $nameToAppend => 20
        );

        $this->assertColumnsOfRowIdEquals($expected, $rowId = 0);
    }

    public function test_filter_shoulAppendGivenStringToAllColumnsOfAllRows_EvenIfTheyHaveDifferentColumns()
    {
        $this->addRow(array('nb_visits' => 49));

        $nameToAppend = '_new_visit';
        $this->table->filter($this->filter, array($nameToAppend));

        $expectedRow1 = array(
            'nb_visits' . $nameToAppend => 1,
            'nb_conversions' . $nameToAppend => 5,
            'revenue' . $nameToAppend => 10,
            'conversion_rate' . $nameToAppend => 20
        );

        $expectedRow2 = array(
            'nb_visits' . $nameToAppend => 49,
        );

        $this->assertColumnsOfRowIdEquals($expectedRow1, $rowId = 0);
        $this->assertColumnsOfRowIdEquals($expectedRow2, $rowId = 1);
    }

    private function assertColumnsOfRowIdEquals($expectedColumns, $rowId)
    {
        $this->assertSame($expectedColumns, $this->table->getRowFromId($rowId)->getColumns());
    }
}