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
|
<?php
/**
* @covers \PatrolLogFormatter
*/
class PatrolLogFormatterTest extends LogFormatterTestCase {
/**
* Provide different rows from the logging table to test
* for backward compatibility.
* Do not change the existing data, just add a new database row
*/
public static function providePatrolLogDatabaseRows() {
return [
// Current format
[
[
'type' => 'patrol',
'action' => 'patrol',
'comment' => 'patrol comment',
'namespace' => NS_MAIN,
'title' => 'Page',
'params' => [
'4::curid' => 2,
'5::previd' => 1,
'6::auto' => 0,
],
],
[
'text' => 'User marked revision 2 of page Page patrolled',
'api' => [
'curid' => 2,
'previd' => 1,
'auto' => false,
],
],
],
// Current format - autopatrol
[
[
'type' => 'patrol',
'action' => 'patrol',
'comment' => 'patrol comment',
'namespace' => NS_MAIN,
'title' => 'Page',
'params' => [
'4::curid' => 2,
'5::previd' => 1,
'6::auto' => 1,
],
],
[
'text' => 'User automatically marked revision 2 of page Page patrolled',
'api' => [
'curid' => 2,
'previd' => 1,
'auto' => true,
],
],
],
// Legacy format
[
[
'type' => 'patrol',
'action' => 'patrol',
'comment' => 'patrol comment',
'namespace' => NS_MAIN,
'title' => 'Page',
'params' => [
'2',
'1',
'0',
],
],
[
'legacy' => true,
'text' => 'User marked revision 2 of page Page patrolled',
'api' => [
'curid' => 2,
'previd' => 1,
'auto' => false,
],
],
],
// Legacy format - autopatrol
[
[
'type' => 'patrol',
'action' => 'patrol',
'comment' => 'patrol comment',
'namespace' => NS_MAIN,
'title' => 'Page',
'params' => [
'2',
'1',
'1',
],
],
[
'legacy' => true,
'text' => 'User automatically marked revision 2 of page Page patrolled',
'api' => [
'curid' => 2,
'previd' => 1,
'auto' => true,
],
],
],
];
}
/**
* @dataProvider providePatrolLogDatabaseRows
*/
public function testPatrolLogDatabaseRows( $row, $extra ) {
$this->doTestLogFormatter( $row, $extra );
}
}
|