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

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

/**
 * Use case testing various important features:
 * - Test Multisites API use cases
 * - testing period=range use case.
 * - Recording data before and after, checking that the requested range is processed correctly
 * - and more
 *
 * @group OneVisitorOneWebsiteSeveralDaysDateRangeTest
 * @group Core
 */
class OneVisitorOneWebsiteSeveralDaysDateRangeTest extends SystemTestCase
{
    public static $fixture = null; // initialized below class definition

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

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

        return array(
            // FIRST some MultiSites API goodness!

            // range test
            array('MultiSites.getAll', array('date'    => '2010-12-15,2011-01-15',
                                             'periods' => array('range')
                // Testing without &pattern= so should return all sites
            )),

            // test several dates (tests use of IndexedByDate w/ 'date1,date2,etc.')
            array('MultiSites.getAll', array('date'                   => '2010-12-15',
                                             'periods'                => array('day'),
                                             'testSuffix'             => '_IndexedByDate',
                // Testing the pattern to getAll restrict websites using name matching
                                             'otherRequestParameters' => array('pattern' => 'aAa')
            )),

            // test getOne call used in MobileMessaging SMS reports
            array('MultiSites.getOne', array('date'    => '2010-12-15,2011-01-15',
                                             'periods' => array('range'),
                                             'idSite'  => $idSite,
                // Testing without &pattern= so should return all sites
            )),

            // test that multiple periods are not supported
            array('MultiSites.getAll', array('date'       => '2010-12-15,2011-01-15',
                                             'periods'    => array('day'),
                                             'testSuffix' => '_MultipleDatesNotSupported',
            )),

            // test that multiple periods are not supported
            array('MultiSites.getAll', array('date'       => '2010-12-15',
                                             'periods'    => array('day'),
                                             'testSuffix' => '_showColumns',
                                             'otherRequestParameters' => array('showColumns' => 'nb_visits,visits_evolution')
            )),

            //---------------------------------------
            // THEN some Socials tests. Share these...
            array('Referrers.getSocials', array('idSite'  => 'all',
                                               'date'    => '2010-12-13,2011-01-18',
                                               'periods' => array('range'))),
            array('Referrers.getSocials', array('idSite'  => $idSite,
                                               'date'     => '2010-12-13,2011-01-18',
                                                'testSuffix' => '_Flattened',
                                                'otherRequestParameters' => array('flat' => '1'),
                                                'periods' => array('range'))),

            array('Referrers.getSocials', array('idSite'       => 'all',
                                               'date'         => '2010-12-10',
                                               'periods'      => array('day'),
                                               'setDateLastN' => true,
                                               'testSuffix'   => '_IndexedByDate')),

            array('Referrers.getUrlsForSocial', array('idSite'     => 'all', // test w/o idSubtable
                                                     'date'       => '2010-12-13,2011-01-18',
                                                     'periods'    => 'range',
                                                     'testSuffix' => '_noIdSubtable')),

            array('Referrers.getUrlsForSocial', array('idSite'       => 1, // test w/ idSubtable
                                                     'date'          => '2010-12-13,2011-01-18',
                                                     'periods'       => 'range',
                                                     'supertableApi' => 'Referrers.getSocials')),

            array('UserCountry.getCountry', array('idSite'  => $idSite,
                                                  'date'    => '2010-12-01,2011-01-15',
                                                  'periods' => array('range'))),
        );
    }

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

OneVisitorOneWebsiteSeveralDaysDateRangeTest::$fixture = new VisitsOverSeveralDays();