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

TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest.php « System « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae4c167010611dc81985ac52a20411284d248fbb (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
<?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\Tests\System;

use Piwik\Tests\Framework\TestCase\SystemTestCase;
use Piwik\Tests\Fixtures\TwoSitesTwoVisitorsDifferentDays;

/**
 * Tests IndexedBySite optimizations when archiving is disabled.
 *
 * @group TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest
 * @group TwoSitesTwoVisitorsDifferentDays
 * @group Plugins
 */
class TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest extends SystemTestCase
{
    public static $fixture = null; // initialized below class definition

    /**
     * @dataProvider getApiForTesting
     */
    public function testApi($api, $params)
    {
        $this->runApiTests($api, $params);
    }

    public function getApiForTesting()
    {
        $dateTime = self::$fixture->dateTime;

        $periods = array('day', 'week', 'month', 'year');

        $dateStart = \Piwik\Date::factory($dateTime)->subDay(10)->toString();
        $dateEnd = \Piwik\Date::factory($dateTime)->addDay(15)->toString();
        $dateRange = $dateStart . "," . $dateEnd;

        return array(
            // disable archiving & check that there is no archive data
            array('VisitsSummary.get', array('idSite'           => 'all',
                                             'date'             => $dateTime,
                                             'periods'          => $periods,
                                             'disableArchiving' => true,
                                             'testSuffix'       => '_disabledBefore')),

            // re-enable archiving & check the output
            array('VisitsSummary.get', array('idSite'           => 'all',
                                             'date'             => $dateTime,
                                             'periods'          => $periods,
                                             'disableArchiving' => false,
                                             'testSuffix'       => '_enabled')),

            // diable archiving again & check the output
            array('VisitsSummary.get', array('idSite'           => 'all',
                                             'date'             => $dateTime,
                                             'periods'          => $periods,
                                             'disableArchiving' => true,
                                             'testSuffix'       => '_disabledAfter')),

            // Testing this particular bug: https://github.com/piwik/piwik/issues/4532
            // ENABLE ARCHIVING and Process this custom date range.
            array('VisitsSummary.get', array('idSite'           => 'all',
                                             'date'             => $dateRange,
                                             'periods'          => array('range'),
                                             'disableArchiving' => false,
                                             'testSuffix'       => '_enabledBefore_isDateRange')),

            // DISABLE Archiving + DELETE Date range archives before this test.
            // This should return the same data as the test above!
            array('VisitsSummary.get', array('idSite'           => 'all',
                                             'date'             => $dateRange,
                                             'periods'          => array('range'),
                                             'disableArchiving' => true,
                                             'testSuffix'       => '_disabledBefore_isDateRange')),

        );
    }

    public static function getOutputPrefix()
    {
        return 'TwoVisitors_twoWebsites_differentDays_ArchivingDisabled';
    }
}

TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest::$fixture = new TwoSitesTwoVisitorsDifferentDays();
TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest::$fixture->allowConversions = true;