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

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

use Piwik\Config;
use Piwik\CronArchive;
use Piwik\Date;
use Piwik\CronArchive\SegmentArchiving;
use Piwik\Option;
use Piwik\Site;
use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;

/**
 * @group Core
 * @group SegmentArchivingTest
 */
class SegmentArchivingTest extends IntegrationTestCase
{
    protected static function beforeTableDataCached()
    {
        parent::beforeTableDataCached();
        Fixture::createWebsite('2020-01-04 12:00:00');
    }

    /**
     * @dataProvider getTestDataForGetReArchiveSegmentStartDate
     */
    public function test_getReArchiveSegmentStartDate($processNewSegmentFrom, $segmentInfo, $expected)
    {
        Date::$now = strtotime('2020-10-12 13:45:00');

        Config::getInstance()->General['process_new_segments_from'] = $processNewSegmentFrom;

        $segmentArchiving = new SegmentArchiving();
        $result = $segmentArchiving->getReArchiveSegmentStartDate($segmentInfo);
        if (!empty($result)) {
            $result = $result->toString();
        }
        $this->assertEquals($expected, $result);
    }

    public function getTestDataForGetReArchiveSegmentStartDate()
    {
        return [
            // no segment creation time
            [
                SegmentArchiving::CREATION_TIME,
                [],
                null,
            ],

            // creation time
            [
                SegmentArchiving::CREATION_TIME,
                ['ts_created' => '2020-04-12 03:34:55'],
                '2020-04-12',
            ],

            // last edit time
            [
                SegmentArchiving::LAST_EDIT_TIME,
                ['ts_created' => '2020-02-02 03:00:00', 'ts_last_edit' => '2020-04-13 05:15:15'],
                '2020-04-13',
            ],

            // last edit time, no creation time
            [
                SegmentArchiving::LAST_EDIT_TIME,
                ['ts_last_edit' => '2020-04-13 05:15:15'],
                '2020-04-13',
            ],

            // last edit time, no edit time in segment
            [
                SegmentArchiving::LAST_EDIT_TIME,
                ['ts_created' => '2020-04-14 00:00:00'],
                '2020-04-14',
            ],

            // last edit time, no edit or create time in segment
            [
                SegmentArchiving::LAST_EDIT_TIME,
                [],
                null,
            ],

            // lastN
            [
                'last30',
                ['ts_created' => '2020-06-12'],
                '2020-05-13',
            ],

            // lastN, no date available
            [
                'last30',
                [],
                null,
            ],

            // editLastN
            [
                'editLast30',
                ['ts_created' => '2020-06-12 05:00:00', 'ts_last_edit' => '2020-09-13 05:15:15'],
                '2020-08-14',
            ],


            // editLastN, no date available
            [
                'editLast30',
                [],
                null,
            ],

            // beginning of time
            [
                SegmentArchiving::BEGINNING_OF_TIME,
                ['ts_created' => '2020-06-12'],
                '2013-01-01',
            ],

            // beginning of time (unreadable value)
            [
                'aslkdfjsdlkjf',
                ['ts_created' => '2020-06-12'],
                '2013-01-01',
            ],
        ];
    }

    public function test_getReArchiveSegmentStartDate_whenSiteCreationDateIsLater()
    {
        $segmentInfo = ['ts_created' => '2019-05-03 00:00:00', 'enable_only_idsite' => 1];
        $this->test_getReArchiveSegmentStartDate(SegmentArchiving::BEGINNING_OF_TIME, $segmentInfo, '2020-01-03');
    }

    public function test_getReArchiveSegmentStartDate_whenEarliestVisitTimeIsLater()
    {
        $t = Fixture::getTracker(1, '2020-02-05 03:00:00');
        $t->setUrl('http://abc.com');
        Fixture::checkResponse($t->doTrackPageView('abc'));

        $segmentInfo = ['ts_created' => '2019-05-03 00:00:00', 'enable_only_idsite' => 1];
        $this->test_getReArchiveSegmentStartDate(SegmentArchiving::BEGINNING_OF_TIME, $segmentInfo, '2020-02-05');
    }

    protected static function configureFixture($fixture)
    {
        parent::configureFixture($fixture);
        $fixture->createSuperUser = true;
    }
}