Move ResultWrapper subclasses to Rdbms
[mediawiki.git] / tests / phpunit / includes / logging / UploadLogFormatterTest.php
blob00d93d148bf30d0b26fc1d7bcb9be76fd6bf028c
1 <?php
3 class UploadLogFormatterTest extends LogFormatterTestCase {
5 /**
6 * Provide different rows from the logging table to test
7 * for backward compatibility.
8 * Do not change the existing data, just add a new database row
9 */
10 public static function provideUploadLogDatabaseRows() {
11 return [
12 // Current format
15 'type' => 'upload',
16 'action' => 'upload',
17 'comment' => 'upload comment',
18 'namespace' => NS_FILE,
19 'title' => 'File.png',
20 'params' => [
21 'img_sha1' => 'hash',
22 'img_timestamp' => '20150101000000',
26 'text' => 'User uploaded File:File.png',
27 'api' => [
28 'img_sha1' => 'hash',
29 'img_timestamp' => '2015-01-01T00:00:00Z',
34 // Old format without params
37 'type' => 'upload',
38 'action' => 'upload',
39 'comment' => 'upload comment',
40 'namespace' => NS_FILE,
41 'title' => 'File.png',
42 'params' => [],
45 'text' => 'User uploaded File:File.png',
46 'api' => [],
52 /**
53 * @dataProvider provideUploadLogDatabaseRows
55 public function testUploadLogDatabaseRows( $row, $extra ) {
56 $this->doTestLogFormatter( $row, $extra );
59 /**
60 * Provide different rows from the logging table to test
61 * for backward compatibility.
62 * Do not change the existing data, just add a new database row
64 public static function provideOverwriteLogDatabaseRows() {
65 return [
66 // Current format
69 'type' => 'upload',
70 'action' => 'overwrite',
71 'comment' => 'upload comment',
72 'namespace' => NS_FILE,
73 'title' => 'File.png',
74 'params' => [
75 'img_sha1' => 'hash',
76 'img_timestamp' => '20150101000000',
80 'text' => 'User uploaded a new version of File:File.png',
81 'api' => [
82 'img_sha1' => 'hash',
83 'img_timestamp' => '2015-01-01T00:00:00Z',
88 // Old format without params
91 'type' => 'upload',
92 'action' => 'overwrite',
93 'comment' => 'upload comment',
94 'namespace' => NS_FILE,
95 'title' => 'File.png',
96 'params' => [],
99 'text' => 'User uploaded a new version of File:File.png',
100 'api' => [],
107 * @dataProvider provideOverwriteLogDatabaseRows
109 public function testOverwriteLogDatabaseRows( $row, $extra ) {
110 $this->doTestLogFormatter( $row, $extra );
114 * Provide different rows from the logging table to test
115 * for backward compatibility.
116 * Do not change the existing data, just add a new database row
118 public static function provideRevertLogDatabaseRows() {
119 return [
120 // Current format
123 'type' => 'upload',
124 'action' => 'revert',
125 'comment' => 'upload comment',
126 'namespace' => NS_FILE,
127 'title' => 'File.png',
128 'params' => [
129 'img_sha1' => 'hash',
130 'img_timestamp' => '20150101000000',
134 'text' => 'User uploaded File:File.png',
135 'api' => [
136 'img_sha1' => 'hash',
137 'img_timestamp' => '2015-01-01T00:00:00Z',
142 // Old format without params
145 'type' => 'upload',
146 'action' => 'revert',
147 'comment' => 'upload comment',
148 'namespace' => NS_FILE,
149 'title' => 'File.png',
150 'params' => [],
153 'text' => 'User uploaded File:File.png',
154 'api' => [],
161 * @dataProvider provideRevertLogDatabaseRows
163 public function testRevertLogDatabaseRows( $row, $extra ) {
164 $this->doTestLogFormatter( $row, $extra );