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

ArchiveInvalidationTest.php « System « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e50a9cec58a2aaa109757d10eaad2fe1aa83383 (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php
/**
 * Matomo - 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\System;

use Piwik\API\Request;
use Piwik\ArchiveProcessor\Rules;
use Piwik\Config;
use Piwik\Plugins\SegmentEditor\API;
use Piwik\Tests\Fixtures\VisitsTwoWebsitesWithAdditionalVisits;
use Piwik\Tests\Framework\TestCase\SystemTestCase;

/**
 * Track visits before website creation date and test that Piwik handles them correctly.
 *
 * This tests that the API method invalidateArchivedReports works correctly, that it deletes data:
 * - on one or multiple websites
 * - for a given set of dates (and optional period)
 *
 * @group Core
 * @group ArchiveInvalidationTest
 */
class ArchiveInvalidationTest extends SystemTestCase
{
    const TEST_SEGMENT = 'pageUrl=@category%252F';

    /**
     * @var VisitsTwoWebsitesWithAdditionalVisits
     */
    public static $fixture = null; // initialized below class definition

    protected $suffix = '_NewDataShouldNotAppear';

    public static function setUpBeforeClass(): void
    {
        parent::setUpBeforeClass();

        self::addSegments();
    }

    private static function addSegments()
    {
        Rules::setBrowserTriggerArchiving(false);
        API::getInstance()->add('segment 1', urlencode(self::TEST_SEGMENT));
        Rules::setBrowserTriggerArchiving(true);
    }

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

    /**
     * This should NOT return data for old dates before website creation
     */
    public function getApiForTesting()
    {
        // We test a typical Numeric and a Recursive blob reports
        $apiToCall = array('VisitsSummary.get', 'Actions.getPageUrls');

        // Build tests for the 2 websites
        return array(

          array(
            $apiToCall,
            array(
              'idSite'                 => self::$fixture->idSite2,
              'testSuffix'             => 'Website' . self::$fixture->idSite2 . $this->suffix,
              'date'                   => self::$fixture->dateTimeFirstDateWebsite2,
              'periods'                => 'day',
              'segment'                => self::TEST_SEGMENT,
              'setDateLastN'           => 4, // 4months ahead
              'otherRequestParameters' => array('expanded' => 1)
            )
          ),
          array(
            $apiToCall,
            array(
              'idSite'                 => self::$fixture->idSite1,
              'testSuffix'             => 'Website' . self::$fixture->idSite1 . $this->suffix,
              'date'                   => self::$fixture->dateTimeFirstDateWebsite1,
              'periods'                => 'month',
              'setDateLastN'           => 4, // 4months ahead
              'otherRequestParameters' => array('expanded' => 1)
            )
          ),

          array(
            $apiToCall,
            array(
              'idSite'                 => self::$fixture->idSite2,
              'testSuffix'             => 'Website' . self::$fixture->idSite2 . $this->suffix,
              'date'                   => self::$fixture->dateTimeFirstDateWebsite2,
              'periods'                => 'month',
              'segment'                => self::TEST_SEGMENT,
              'setDateLastN'           => 4, // 4months ahead
              'otherRequestParameters' => array('expanded' => 1)
            )
          )
        );
    }

    /**
     * test same api w/o invalidating or tracking (which also invalidates), (NewDataShouldNotAppear)
     *
     * @depends      testApi
     * @dataProvider getApiForTesting
     */
    public function testSameApi($api, $params)
    {
        Rules::setBrowserTriggerArchiving(false);
        $this->runApiTests($api, $params);
    }

    /**
     * test same api after invalidating (NewDataShouldAppear)
     *
     * @depends      testApi
     * @depends      testSameApi
     */
    public function testAnotherApi()
    {
        self::$fixture->trackMoreVisits(self::$fixture->idSite1);
        self::$fixture->trackMoreVisits(self::$fixture->idSite2);

        Rules::setBrowserTriggerArchiving(true);

        foreach ($this->getAnotherApiForTesting() as list($api, $params)) {
            $this->runApiTests($api, $params);
        }
    }

    public function testDisablePluginArchive()
    {
        $config = Config::getInstance();
        $config->General['disable_archiving_segment_for_plugins'] = 'testPlugin';
        $this->assertTrue(Rules::isSegmentPluginArchivingDisabled('testPlugin'));

        $config->General['disable_archiving_segment_for_plugins'] = ['testPlugin', 'testPlugin2'];
        $this->assertTrue(Rules::isSegmentPluginArchivingDisabled('testPlugin'));

        $config->General['disable_archiving_segment_for_plugins'] = 'testPlugin,testPlugin2';
        $this->assertTrue(Rules::isSegmentPluginArchivingDisabled('testPlugin2'));

        $config->General['disable_archiving_segment_for_plugins'] = '';
        $this->assertFalse(Rules::isSegmentPluginArchivingDisabled('testPlugin'));

    }

    public function testDisablePluginArchiveCaseInsensitive()
    {
        $config = Config::getInstance();
        $config->General['disable_archiving_segment_for_plugins'] = 'testplugin,testplugin2';
        $this->assertTrue(Rules::isSegmentPluginArchivingDisabled('testPlugin'));
    }

    public function testDisablePluginArchiveSpecialCharacters()
    {
        //special characters will not work
        $config = Config::getInstance();
        $config->General['disable_archiving_segment_for_plugins'] = '!@##$%^^&&**(()_+';
        $this->assertFalse(Rules::isSegmentPluginArchivingDisabled('!@##$%^^&&**(()_+'));
    }

    public function testDisablePluginArchiveBySiteId()
    {
        //test siteId 1 by string
        Config::setSetting('General_1', 'disable_archiving_segment_for_plugins', 'testPlugin');
        $this->assertTrue(Rules::isSegmentPluginArchivingDisabled('testPlugin',1));

        //test siteId 1 by array
        Config::setSetting('General_1', 'disable_archiving_segment_for_plugins',['testPlugin', 'testPlugin2'] );
        $this->assertTrue(Rules::isSegmentPluginArchivingDisabled('testPlugin',1));

        //test siteId 1 by string with comma
        Config::setSetting('General_1', 'disable_archiving_segment_for_plugins','testPlugin,testPlugin2' );
        $this->assertTrue(Rules::isSegmentPluginArchivingDisabled('testPlugin',1));

        //test empty
        Config::setSetting('General_1', 'disable_archiving_segment_for_plugins','' );
        $this->assertFalse(Rules::isSegmentPluginArchivingDisabled('testPlugin',1));

        //test siteId 2 not affect siteId1
        Config::setSetting('General_2', 'disable_archiving_segment_for_plugins','testPlugin' );
        $this->assertFalse(Rules::isSegmentPluginArchivingDisabled('testPlugin',1));


        //test general setting not affect siteId1
        Config::setSetting('General', 'disable_archiving_segment_for_plugins','myPlugin' );
        Config::setSetting('General_1', 'disable_archiving_segment_for_plugins','testPlugin' );
        $this->assertFalse(Rules::isSegmentPluginArchivingDisabled('myPlugin',1));

        Config::setSetting('General_1', 'disable_archiving_segment_for_plugins', 'testPlugin2');
        $this->assertFalse(Rules::isSegmentPluginArchivingDisabled('testPlugin', 1));
    }



    /**
     * This is called after getApiToTest()
     * We invalidate old reports and check that data is now returned for old dates
     */
    public function getAnotherApiForTesting()
    {
        $this->suffix = '_NewDataShouldAppear';
        return $this->getApiForTesting();
    }

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

    protected function invalidateTestArchives()
    {
        $dateToInvalidate1 = new \DateTime(self::$fixture->dateTimeFirstDateWebsite1);

        $r = new Request("module=API&method=CoreAdminHome.invalidateArchivedReports&idSites=" . self::$fixture->idSite1 . "&dates=" . $dateToInvalidate1->format('Y-m-d'));
        $this->assertApiResponseHasNoError($r->process());

        // week reports only are invalidated. we test our daily report will show new data, even though weekly reports only are invalidated,
        // because when we track data, it invalidates day periods as well.
        $this->invalidateTestArchive(self::$fixture->idSite2, 'week', self::$fixture->dateTimeFirstDateWebsite2);
    }

    private function invalidateTestArchive($idSite, $period, $dateTime, $cascadeDown = false)
    {
        $dates = new \DateTime($dateTime);
        $dates = $dates->format('Y-m-d');
        $r = new Request("module=API&method=CoreAdminHome.invalidateArchivedReports&period=$period&idSites=$idSite&dates=$dates&cascadeDown=" . (int)$cascadeDown);
        $this->assertApiResponseHasNoError($r->process());
    }
}

ArchiveInvalidationTest::$fixture = new VisitsTwoWebsitesWithAdditionalVisits();