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
|
<?php
use MediaWiki\Tests\Unit\Permissions\MockAuthorityTrait;
use MediaWiki\User\UserIdentityValue;
use MediaWiki\Utils\MWTimestamp;
/**
* @covers ApiQueryImageInfo
* @group API
* @group medium
* @group Database
*/
class ApiQueryImageInfoTest extends ApiTestCase {
use MockAuthorityTrait;
private const IMAGE_NAME = 'Random-11m.png';
private const OLD_IMAGE_TIMESTAMP = '20201105235241';
private const NEW_IMAGE_TIMESTAMP = '20201105235242';
private const OLD_IMAGE_SIZE = 12345;
private const NEW_IMAGE_SIZE = 54321;
private const NO_COMMENT_TIMESTAMP = '20201105235239';
private $testUser = null;
protected function setUp(): void {
parent::setUp();
$this->tablesUsed[] = 'image';
$this->tablesUsed[] = 'oldimage';
}
public function addDBData() {
parent::addDBData();
$this->testUser = new UserIdentityValue( 12364321, 'Dummy User' );
$actorId = $this->getServiceContainer()
->getActorStore()
->acquireActorId( $this->testUser, $this->db );
$this->db->insert(
'image',
[
'img_name' => 'Random-11m.png',
'img_size' => self::NEW_IMAGE_SIZE,
'img_width' => 1000,
'img_height' => 1800,
'img_metadata' => '',
'img_bits' => 16,
'img_media_type' => 'BITMAP',
'img_major_mime' => 'image',
'img_minor_mime' => 'png',
'img_description_id' => $this->getServiceContainer()
->getCommentStore()
->createComment( $this->db, "'''comment'''" )->id,
'img_actor' => $actorId,
'img_timestamp' => $this->db->timestamp( self::NEW_IMAGE_TIMESTAMP ),
'img_sha1' => 'sy02psim0bgdh0jt4vdltuzoh7j80ru',
]
);
$this->db->insert(
'oldimage',
[
'oi_name' => 'Random-11m.png',
'oi_archive_name' => self::OLD_IMAGE_TIMESTAMP . 'Random-11m.png',
'oi_size' => self::OLD_IMAGE_SIZE,
'oi_width' => 1000,
'oi_height' => 1800,
'oi_metadata' => '',
'oi_bits' => 16,
'oi_media_type' => 'BITMAP',
'oi_major_mime' => 'image',
'oi_minor_mime' => 'png',
'oi_description_id' => $this->getServiceContainer()
->getCommentStore()
->createComment( $this->db, 'deleted comment' )->id,
'oi_actor' => $actorId,
'oi_timestamp' => $this->db->timestamp( self::OLD_IMAGE_TIMESTAMP ),
'oi_sha1' => 'sy02psim0bgdh0jt4vdltuzoh7j80ru',
'oi_deleted' => File::DELETED_FILE | File::DELETED_COMMENT | File::DELETED_USER,
]
);
$this->db->insert(
'oldimage',
[
'oi_name' => 'Random-11m.png',
'oi_archive_name' => self::NO_COMMENT_TIMESTAMP . 'Random-11m.png',
'oi_size' => self::OLD_IMAGE_SIZE,
'oi_width' => 1000,
'oi_height' => 1800,
'oi_metadata' => '',
'oi_bits' => 16,
'oi_media_type' => 'BITMAP',
'oi_major_mime' => 'image',
'oi_minor_mime' => 'png',
'oi_description_id' => $this->getServiceContainer()
->getCommentStore()
->createComment( $this->db, '' )->id,
'oi_actor' => $actorId,
'oi_timestamp' => $this->db->timestamp( self::NO_COMMENT_TIMESTAMP ),
'oi_sha1' => 'sy02psim0bgdh0jt4vdltuzoh7j80ru',
'oi_deleted' => 0,
]
);
}
private function getImageInfoFromResult( array $result ) {
$this->assertArrayHasKey( 'query', $result );
$this->assertArrayHasKey( 'pages', $result['query'] );
$this->assertArrayHasKey( '-1', $result['query']['pages'] );
$info = $result['query']['pages']['-1'];
$this->assertSame( NS_FILE, $info['ns'] );
$this->assertSame( 'File:' . self::IMAGE_NAME, $info['title'] );
$this->assertTrue( $info['missing'] );
$this->assertTrue( $info['known'] );
$this->assertSame( 'local', $info['imagerepository'] );
$this->assertFalse( $info['badfile'] );
$this->assertIsArray( $info['imageinfo'] );
return $info['imageinfo'][0];
}
public function testGetImageInfoLatestImage() {
[ $result, ] = $this->doApiRequest( [
'action' => 'query',
'prop' => 'imageinfo',
'titles' => 'File:' . self::IMAGE_NAME,
'iiprop' => implode( '|', ApiQueryImageInfo::getPropertyNames() ),
'iistart' => self::NEW_IMAGE_TIMESTAMP,
'iiend' => self::NEW_IMAGE_TIMESTAMP,
] );
$image = $this->getImageInfoFromResult( $result );
$this->assertSame( MWTimestamp::convert( TS_ISO_8601, self::NEW_IMAGE_TIMESTAMP ), $image['timestamp'] );
$this->assertSame( "'''comment'''", $image['comment'] );
$this->assertSame( $this->testUser->getName(), $image['user'] );
$this->assertSame( $this->testUser->getId(), $image['userid'] );
$this->assertSame( self::NEW_IMAGE_SIZE, $image['size'] );
}
public function testGetImageEmptyComment() {
[ $result, ] = $this->doApiRequest( [
'action' => 'query',
'prop' => 'imageinfo',
'titles' => 'File:' . self::IMAGE_NAME,
'iiprop' => implode( '|', ApiQueryImageInfo::getPropertyNames() ),
'iistart' => self::NO_COMMENT_TIMESTAMP,
'iiend' => self::NO_COMMENT_TIMESTAMP,
] );
$image = $this->getImageInfoFromResult( $result );
$this->assertSame( MWTimestamp::convert( TS_ISO_8601, self::NO_COMMENT_TIMESTAMP ), $image['timestamp'] );
$this->assertSame( '', $image['comment'] );
$this->assertArrayNotHasKey( 'commenthidden', $image );
}
public function testGetImageInfoOldRestrictedImage() {
[ $result, ] = $this->doApiRequest( [
'action' => 'query',
'prop' => 'imageinfo',
'titles' => 'File:' . self::IMAGE_NAME,
'iiprop' => implode( '|', ApiQueryImageInfo::getPropertyNames() ),
'iistart' => self::OLD_IMAGE_TIMESTAMP,
'iiend' => self::OLD_IMAGE_TIMESTAMP,
],
null,
false,
$this->getTestUser()->getAuthority()
);
$image = $this->getImageInfoFromResult( $result );
$this->assertSame( MWTimestamp::convert( TS_ISO_8601, self::OLD_IMAGE_TIMESTAMP ), $image['timestamp'] );
$this->assertTrue( $image['commenthidden'] );
$this->assertArrayNotHasKey( "comment", $image );
$this->assertTrue( $image['userhidden'] );
$this->assertArrayNotHasKey( 'user', $image );
$this->assertArrayNotHasKey( 'userid', $image );
$this->assertTrue( $image['filehidden'] );
$this->assertSame( self::OLD_IMAGE_SIZE, $image['size'] );
}
public function testGetImageInfoOldRestrictedImage_sysop() {
[ $result, ] = $this->doApiRequest( [
'action' => 'query',
'prop' => 'imageinfo',
'titles' => 'File:' . self::IMAGE_NAME,
'iiprop' => implode( '|', ApiQueryImageInfo::getPropertyNames() ),
'iistart' => self::OLD_IMAGE_TIMESTAMP,
'iiend' => self::OLD_IMAGE_TIMESTAMP,
],
null,
false,
$this->mockRegisteredUltimateAuthority()
);
$image = $this->getImageInfoFromResult( $result );
$this->assertSame( MWTimestamp::convert( TS_ISO_8601, self::OLD_IMAGE_TIMESTAMP ), $image['timestamp'] );
$this->assertTrue( $image['commenthidden'] );
$this->assertSame( 'deleted comment', $image['comment'] );
$this->assertTrue( $image['userhidden'] );
$this->assertSame( $this->testUser->getName(), $image['user'] );
$this->assertSame( $this->testUser->getId(), $image['userid'] );
$this->assertTrue( $image['filehidden'] );
$this->assertSame( self::OLD_IMAGE_SIZE, $image['size'] );
}
}
|