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

LogDataAnonymizationsTest.php « Model « Integration « tests « PrivacyManager « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d105df85e2c2e0965ceb5a261743a64e92824c7f (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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<?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\Plugins\PrivacyManager\tests\Integration\Model;

use Piwik\DbHelper;
use Piwik\Plugins\PrivacyManager\Dao\LogDataAnonymizer;
use Piwik\Plugins\PrivacyManager\Model\LogDataAnonymizations;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;

/**
 * Class LogDataAnonymizationsTest
 *
 * @group Plugins
 */
class LogDataAnonymizationsTest extends IntegrationTestCase
{
    /**
     * @var LogDataAnonymizations
     */
    private $dao;

    private $tableName;

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

        $this->tableName = LogDataAnonymizations::getDbTableName();
        $this->dao = new LogDataAnonymizations(new LogDataAnonymizer());
    }

    public function test_shouldInstallTable()
    {
        $columns = DbHelper::getTableColumns($this->tableName);
        $columns = array_keys($columns);
        $this->assertEquals(array('idlogdata_anonymization', 'idsites', 'date_start', 'date_end', 'anonymize_ip', 'anonymize_location', 'anonymize_userid', 'unset_visit_columns', 'unset_link_visit_action_columns', 'output', 'scheduled_date', 'job_start_date', 'job_finish_date', 'requester'), $columns);
    }

    public function test_shouldBeAbleToUninstallTable()
    {
        $this->expectException(\Zend_Db_Statement_Exception::class);
        $this->expectExceptionMessage('privacy_logdata_anonymizations');

        $this->dao->uninstall();

        try {
            DbHelper::getTableColumns($this->tableName);
            $this->fail('Did not uninstall privacy_logdata_anonymizations table');
        } catch (\Zend_Db_Statement_Exception $e) {
            $this->dao->install();
            throw $e;
        }

        $this->dao->install();
    }

    public function test_scheduleEntry_fails_whenNoDateGiven()
    {
        $this->expectException(\Exception::class);
        $this->expectExceptionMessage('General_ValidatorErrorEmptyValue');

        $this->scheduleEntry(null, null);
    }

    public function test_scheduleEntry_fails_whenInvalidDateGiven()
    {
        $this->expectException(\Exception::class);
        $this->expectExceptionMessage('General_ExceptionInvalidDateFormat');

        $this->scheduleEntry(null, 'foobar');
    }

    public function test_scheduleEntry_fails_whenInvalidVisitColumnsGiven()
    {
        $this->expectException(\Exception::class);
        $this->expectExceptionMessage('The column "visitor_foobar_Baz" seems to not exist in log_visit');

        $this->scheduleEntry(null, '2018-01-02', false, false, false, ['visitor_localtime', 'visitor_foobar_Baz', 'config_device_type']);
    }

    public function test_scheduleEntry_fails_whenInvalidLinkVisitActionColumnsGiven()
    {
        $this->expectException(\Exception::class);
        $this->expectExceptionMessage('The column "idaction_foobar_baz" seems to not exist in log_link_visit_action');

        $this->scheduleEntry(null, '2018-01-02', false, false, false, [], ['idaction_event_category', 'idaction_foobar_baz']);
    }

    public function test_scheduleEntry_fails_whenNoWorkScheduled()
    {
        $this->expectException(\Exception::class);
        $this->expectExceptionMessage('Nothing is selected to be anonymized');

        $this->scheduleEntry(null, '2018-01-02', false, false, false, [], []);
    }

    public function test_scheduleEntry_success()
    {
        $id = $this->scheduleEntry(null, '2017-01-03', true, true, true, ['visitor_localtime', 'config_device_type'], ['idaction_event_category'], 'mylogin');
        $this->assertSame(1, $id);

        $entry = $this->dao->getEntry($id);
        $this->assertNotEmpty($entry['scheduled_date']);
        unset($entry['scheduled_date']);
        $this->assertSame(array(
            'idlogdata_anonymization' => 1,
            'idsites' => null,
            'date_start' => '2017-01-03 00:00:00',
            'date_end' => '2017-01-03 23:59:59',
            'anonymize_ip' => true,
            'anonymize_location' => true,
            'anonymize_userid' => true,
            'unset_visit_columns' => array ('visitor_localtime','config_device_type'),
            'unset_link_visit_action_columns' => array('idaction_event_category'),
            'output' => null,
            'job_start_date' => null,
            'job_finish_date' => null,
            'requester' => 'mylogin',
            'sites' => array ('All Websites')
        ), $entry);
    }

    public function test_scheduleEntry_successStartDirectlySetsDateAndAlsoTestingDifferentSettings()
    {
        $id = $this->scheduleStartedEntry(null, '2017-03-01,2018-04-06', false, true, false, [], false, 'mylogin2');

        $entry = $this->dao->getEntry($id);
        $this->assertNotEmpty($entry['scheduled_date']);
        $this->assertNotEmpty($entry['job_start_date']);
        $this->assertSame($entry['job_start_date'], $entry['scheduled_date']);
        unset($entry['scheduled_date']);
        unset($entry['job_start_date']);
        $this->assertSame(array(
            'idlogdata_anonymization' => 1,
            'idsites' => null,
            'date_start' => '2017-03-01 00:00:00',
            'date_end' => '2018-04-06 23:59:59',
            'anonymize_ip' => false,
            'anonymize_location' => true,
            'anonymize_userid' => false,
            'unset_visit_columns' => array (),
            'unset_link_visit_action_columns' => array(),
            'output' => null,
            'job_finish_date' => null,
            'requester' => 'mylogin2',
            'sites' => array ('All Websites')
        ), $entry);
    }

    public function test_scheduleEntry_failsInvalidDateRange()
    {
        $this->expectException(\Exception::class);
        $this->expectExceptionMessage('Specified date range is invalid.');

        $this->scheduleStartedEntry(null, '2018-04-06,2017-03-01', false, true, [], false, 'mylogin2');
    }

    public function test_scheduleEntry_successIdSites()
    {
        $id = $this->scheduleEntry(['4', 5, 10, '402foo']);

        $entry = $this->dao->getEntry($id);
        $this->assertSame([4,5,10,402], $entry['idsites']);
        $this->assertSame(['Site ID: 4', 'Site ID: 5', 'Site ID: 10', 'Site ID: 402'], $entry['sites']);
    }

    public function test_scheduleEntry_success_increasesId()
    {
        $id = $this->scheduleEntry();
        $this->assertSame(1, $id);

        $id = $this->scheduleEntry();
        $this->assertSame(2, $id);
    }

    public function test_getAllEntries_returnsEmptyArrayWhenNoEntriesExist()
    {
        $this->assertSame(array(), $this->dao->getAllEntries());
    }

    public function test_getAllEntries_returnsAllEntriesThatExist()
    {
        $id1 = $this->scheduleEntry();
        $id2 = $this->scheduleEntry();
        $entries = $this->dao->getAllEntries();
        $this->assertCount(2, $entries);
        $this->assertDefaultEntry($entries[0], $id1);
        $this->assertDefaultEntry($entries[1], $id2);
    }

    public function test_getEntry_doesNotFindEntryWhenNoEntryExists()
    {
        $this->assertFalse($this->dao->getEntry(5));
    }

    public function test_getEntry_doesNotFindEntryWhenNotExists()
    {
        $this->scheduleEntry();
        $this->assertFalse($this->dao->getEntry(999));
    }

    public function test_getEntry_success_findsEntryAndFormatsIt()
    {
        $id = $this->scheduleEntry();
        $entry = $this->dao->getEntry($id);

        $this->assertDefaultEntry($entry, 1);
    }

    public function test_getNextScheduledAnonymizationId_returnsNoEntryWhenNoEntryExists()
    {
        $this->assertFalse($this->dao->getNextScheduledAnonymizationId());
    }

    public function test_getNextScheduledAnonymizationId_returnsNoEntryWhenOnlyStartedEntriesExist()
    {
        $this->scheduleStartedEntry();
        $this->scheduleStartedEntry();
        $this->assertFalse($this->dao->getNextScheduledAnonymizationId());
    }

    public function test_getNextScheduledAnonymizationId_returnsNextUnstartedEntry()
    {
        $this->scheduleStartedEntry();
        $id1 = $this->scheduleEntry();
        $this->scheduleStartedEntry();
        $id2 = $this->scheduleEntry();
        $this->assertSame($id1, $this->dao->getNextScheduledAnonymizationId());
        // returns it again when calling it again
        $this->assertSame($id1, $this->dao->getNextScheduledAnonymizationId());

        // now we execute the task
        $this->dao->executeScheduledEntry($id1);

        // should return next id
        $this->assertSame($id2, $this->dao->getNextScheduledAnonymizationId());
    }

    public function test_executeScheduledEntry_SimpleExecutionWithAllFeaturesEnabledWhenNoTrackedData_OtherTestsBeDoneInSystemTests()
    {
        $id = $this->scheduleEntry(null, '2017-01-03', true, true, true, ['visitor_localtime', 'config_device_type'], ['idaction_event_category'], 'mylogin');

        // now we execute the task
        $this->dao->executeScheduledEntry($id);

        $entry = $this->dao->getEntry($id);
        $this->assertNotEmpty($entry['scheduled_date']);
        $this->assertNotEmpty($entry['job_start_date']);
        $this->assertNotEmpty($entry['job_finish_date']);
        $this->assertSame($entry['job_start_date'], $entry['scheduled_date']);
        unset($entry['scheduled_date']);
        unset($entry['job_start_date']);
        unset($entry['job_finish_date']);
        $this->assertSame(array(
            'idlogdata_anonymization' => 1,
            'idsites' => null,
            'date_start' => '2017-01-03 00:00:00',
            'date_end' => '2017-01-03 23:59:59',
            'anonymize_ip' => true,
            'anonymize_location' => true,
            'anonymize_userid' => true,
            'unset_visit_columns' => array ('visitor_localtime','config_device_type'),
            'unset_link_visit_action_columns' => array('idaction_event_category'),
            'output' => "Running behaviour on all sites.
Applying this to visits between '2017-01-03 00:00:00' and '2017-01-03 23:59:59'.
Starting to anonymize visit information.
Number of anonymized IP and/or location and/or User ID: 0
Starting to unset log_visit table entries.
Number of unset log_visit table entries: 0
Starting to unset log_conversion table entries (if possible).
Number of unset log_conversion table entries: 0
Starting to unset log_link_visit_action table entries.
Number of unset log_link_visit_action table entries: 0
",
            'requester' => 'mylogin',
            'sites' => array ('All Websites')
        ), $entry);
    }

    private function assertDefaultEntry($entry, $expectedId)
    {
        $this->assertNotEmpty($entry['scheduled_date']);
        unset($entry['scheduled_date']);
        $this->assertSame(array(
            'idlogdata_anonymization' => $expectedId,
            'idsites' => null,
            'date_start' => '2018-01-01 00:00:00',
            'date_end' => '2018-01-01 23:59:59',
            'anonymize_ip' => true,
            'anonymize_location' => false,
            'anonymize_userid' => false,
            'unset_visit_columns' => array (),
            'unset_link_visit_action_columns' => array(),
            'output' => null,
            'job_start_date' => null,
            'job_finish_date' => null,
            'requester' => 'CLI',
            'sites' => array ('All Websites')
        ), $entry);
    }

    private function scheduleEntry($idSites = null, $dateString = '2018-01-01', $anonymizeIp = true, $anonymizeLocation = false, $anonymizeUserId = false, $unsetVisitColumns = [], $unsetLinkVisitActionColumns = [], $requester = 'CLI')
    {
        return $this->dao->scheduleEntry($requester, $idSites, $dateString, $anonymizeIp, $anonymizeLocation, $anonymizeUserId, $unsetVisitColumns, $unsetLinkVisitActionColumns, $start = false);
    }

    private function scheduleStartedEntry($idSites = null, $dateString = '2018-01-01', $anonymizeIp = true, $anonymizeLocation = false, $anonymizeUserId = false, $unsetVisitColumns = [], $unsetLinkVisitActionColumns = [], $requester = 'CLI')
    {
        return $this->dao->scheduleEntry($requester, $idSites, $dateString, $anonymizeIp, $anonymizeLocation, $anonymizeUserId, $unsetVisitColumns, $unsetLinkVisitActionColumns, $start = true);
    }

}