summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/logging/PatrolLogFormatterTest.php
blob: 6e1c5efc79be0f994b32e84ef0d0a26c8a3fe9cd (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
<?php

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 array(
			// Current format
			array(
				array(
					'type' => 'patrol',
					'action' => 'patrol',
					'comment' => 'patrol comment',
					'namespace' => NS_MAIN,
					'title' => 'Page',
					'params' => array(
						'4::curid' => 2,
						'5::previd' => 1,
						'6::auto' => 0,
					),
				),
				array(
					'text' => 'User marked revision 2 of page Page patrolled',
					'api' => array(
						'curid' => 2,
						'previd' => 1,
						'auto' => false,
					),
				),
			),

			// Current format - autopatrol
			array(
				array(
					'type' => 'patrol',
					'action' => 'patrol',
					'comment' => 'patrol comment',
					'namespace' => NS_MAIN,
					'title' => 'Page',
					'params' => array(
						'4::curid' => 2,
						'5::previd' => 1,
						'6::auto' => 1,
					),
				),
				array(
					'text' => 'User automatically marked revision 2 of page Page patrolled',
					'api' => array(
						'curid' => 2,
						'previd' => 1,
						'auto' => true,
					),
				),
			),

			// Legacy format
			array(
				array(
					'type' => 'patrol',
					'action' => 'patrol',
					'comment' => 'patrol comment',
					'namespace' => NS_MAIN,
					'title' => 'Page',
					'params' => array(
						'2',
						'1',
						'0',
					),
				),
				array(
					'legacy' => true,
					'text' => 'User marked revision 2 of page Page patrolled',
					'api' => array(
						'curid' => 2,
						'previd' => 1,
						'auto' => false,
					),
				),
			),

			// Legacy format - autopatrol
			array(
				array(
					'type' => 'patrol',
					'action' => 'patrol',
					'comment' => 'patrol comment',
					'namespace' => NS_MAIN,
					'title' => 'Page',
					'params' => array(
						'2',
						'1',
						'1',
					),
				),
				array(
					'legacy' => true,
					'text' => 'User automatically marked revision 2 of page Page patrolled',
					'api' => array(
						'curid' => 2,
						'previd' => 1,
						'auto' => true,
					),
				),
			),
		);
	}

	/**
	 * @dataProvider providePatrolLogDatabaseRows
	 */
	public function testPatrolLogDatabaseRows( $row, $extra ) {
		$this->doTestLogFormatter( $row, $extra );
	}
}