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

ArchivedMetricTest.php « Plugin « Integration « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03946c9b635a793196389591e16412fc43c9dfd5 (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
123
124
125
126
127
128
<?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\Integration\Plugin;

use Piwik\Columns\Dimension;
use Piwik\DataTable;
use Piwik\Metrics\Formatter;
use Piwik\Plugin\ArchivedMetric;
use Piwik\Plugins\UserCountry\Columns\Country;
use Piwik\Site;
use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;

/**
 * @group ArchivedMetric
 * @group ArchivedMetricTest
 */
class ArchivedMetricTest extends IntegrationTestCase
{
    /**
     * @var Country
     */
    private $dimension;

    /**
     * @var ArchivedMetric
     */
    private $metric;

    public function setUp(): void
    {
        parent::setUp();

        Fixture::loadAllTranslations();

        Fixture::createWebsite('2015-01-01 00:00:00');

        $this->dimension = new Country();
        $this->metric = $this->makeMetric('%s');
    }

    public function tearDown(): void
    {
        Fixture::resetTranslations();
        parent::tearDown();
    }

    private function makeMetric($aggregation)
    {
        return new ArchivedMetric($this->dimension, $aggregation);
    }

    /**
     * @dataProvider getFormatValueProvider
     */
    public function test_formatValue($type, $value, $expected)
    {
        $formatter = new Formatter();
        $this->metric->setType($type);

        $table = new DataTable();
        $table->setMetadata('site', new Site(1));
        $this->metric->beforeFormat(null, $table);
        $formatted = $this->metric->format($value, $formatter);

        $this->assertEquals($expected, $formatted);
    }

    public function getFormatValueProvider()
    {
        return array(
            array($type = Dimension::TYPE_NUMBER, $value = 5.354, $expected = 5),
            array($type = Dimension::TYPE_FLOAT, $value = 5.354, $expected = 5.35),
            array($type = Dimension::TYPE_MONEY, $value = 5.392, $expected = '$5.39'),
            array($type = Dimension::TYPE_PERCENT, $value = 0.343, $expected = '34.3%'),
            array($type = Dimension::TYPE_DURATION_S, $value = 121, $expected = '2 min 1s'),
            array($type = Dimension::TYPE_DURATION_MS, $value = 392, $expected = '0.39s'),
            array($type = Dimension::TYPE_BYTE, $value = 3912, $expected = '3.8 K'),
        );
    }
    public function test_getQuery_returnsDefaultColumns()
    {
        $this->assertSame('log_visit.location_country', $this->metric->getQuery());
    }

    public function test_getQuery_whenNoAggregationSet()
    {
        $metric = $this->makeMetric('');
        $this->assertSame('log_visit.location_country', $metric->getQuery());
    }

    public function test_getQuery_whenAggregationSet()
    {
        $metric = $this->makeMetric('count(%s)');
        $this->assertSame('count(log_visit.location_country)', $metric->getQuery());
    }

    public function test_setQuery()
    {
        $this->metric->setQuery('count(log_visit.foobar) + 1');
        $this->assertSame('count(log_visit.foobar) + 1', $this->metric->getQuery());
    }

    public function test_setDimension()
    {
        $this->assertSame($this->dimension, $this->metric->getDimension());
    }

    public function test_getDbTableName()
    {
        $this->assertSame('log_visit', $this->metric->getDbTableName());
    }

    public function test_setCategory_getCategoryId()
    {
        $this->assertSame('', $this->metric->getCategoryId());
        $this->metric->setCategory('General_Visitors');
        $this->assertSame('General_Visitors', $this->metric->getCategoryId());
    }


}