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

AddSegmentValueTest.php « Filter « DataTable « Unit « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f7848ab735a85ec0421e6a40e214fdd9e530da2 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?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\Tests\Core\DataTable\Filter;

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

/**
 * @group AddSegmentValueTest
 * @group DataTable
 * @group Filter
 */
class AddSegmentValueTest extends \PHPUnit\Framework\TestCase
{
    private $filter = 'AddSegmentValue';

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

    public function setUp(): void
    {
        $this->table = new DataTable();
        $this->addRow(array('label' => 'http://piwik.org/test'));
        $this->addRow(array('label' => ''));
        $this->addRow(array('label' => 'search+test', 'other' => 'value'));
        $this->addRow(array('label' => 'keyword test'));
        $this->addRow(array('label' => false));
        $this->addRow(array('label' => 'play A movie', 'other' => 'value'));
        $this->addRow(array('nb_visits' => 15));
        $this->addRow(array('label' => 'Piwik'));
    }

    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_shouldCopyTheLabelToMetadata_IfValueIsGiven()
    {
        $this->table->filter($this->filter);

        $segmentValues = $this->table->getRowsMetadata('segmentValue');
        $expected = array(
            'http://piwik.org/test',
            '',
            'search+test',
            'keyword test',
            false,
            'play A movie',
            false,
            'Piwik');
        $this->assertSame($expected, $segmentValues);
    }

    public function test_filter_ShouldIgnoreSummaryRow()
    {
        $summaryRow = $this->buildRow(array('label' => 'my test'));
        $this->table->addSummaryRow($summaryRow);
        $this->table->filter($this->filter);

        $this->assertFalse($summaryRow->getMetadata('segmentValue'));
    }

    public function test_filter_ShouldCallACallbackPassingTheLabel()
    {
        $this->table->filter($this->filter, array(function ($label) {
            if ($label === false) {
                return 'was false';
            }

            return 'piwik_' . $label;
        }));

        $segmentValues = $this->table->getRowsMetadata('segmentValue');
        $expected = array(
            'piwik_http://piwik.org/test',
            'piwik_',
            'piwik_search+test',
            'piwik_keyword test',
            'was false',
            'piwik_play A movie',
            'was false',
            'piwik_Piwik');
        $this->assertSame($expected, $segmentValues);
    }

    public function test_filter_shouldNotGenerateASegmentValueIfReturnValueIsFalse()
    {
        $this->table->filter($this->filter, array(function ($label) {
            if ($label === false) {
                return 'was false';
            }

            return false;
        }));

        $segmentValues = $this->table->getRowsMetadata('segmentValue');
        $expected = array(
            false,
            false,
            false,
            false,
            'was false',
            false,
            'was false',
            false);
        $this->assertSame($expected, $segmentValues);
    }
}