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
|
<?php
namespace phpunit\includes\filebackend;
use MediaWikiIntegrationTestCase;
use Wikimedia\FileBackend\FileBackend;
use Wikimedia\FileBackend\MemoryFileBackend;
use Wikimedia\TestingAccessWrapper;
/**
* @covers \Wikimedia\FileBackend\FileBackendStore
*/
class FileBackendStoreTest extends MediaWikiIntegrationTestCase {
/**
* @dataProvider provider_testGetContentType
*/
public function testGetContentType( $mimeFromString ) {
global $IP;
if ( $mimeFromString ) {
$mimeCallback = [ $this->getServiceContainer()->getFileBackendGroup(), 'guessMimeInternal' ];
} else {
$mimeCallback = null;
}
$be = TestingAccessWrapper::newFromObject( new MemoryFileBackend( [
'name' => 'testing',
'class' => MemoryFileBackend::class,
'wikiId' => 'meow',
'mimeCallback' => $mimeCallback,
] ) );
$dst = 'mwstore://testing/container/path/to/file_no_ext';
$src = "$IP/tests/phpunit/data/media/srgb.jpg";
$this->assertEquals( 'image/jpeg', $be->getContentType( $dst, null, $src ) );
$this->assertEquals( $mimeFromString ? 'image/jpeg' : 'unknown/unknown',
$be->getContentType( $dst, file_get_contents( $src ), null ) );
$src = "$IP/tests/phpunit/data/media/Png-native-test.png";
$this->assertEquals( 'image/png', $be->getContentType( $dst, null, $src ) );
$this->assertEquals( $mimeFromString ? 'image/png' : 'unknown/unknown',
$be->getContentType( $dst, file_get_contents( $src ), null ) );
}
public static function provider_testGetContentType() {
return [
[ false ],
[ true ],
];
}
public function testSanitizeOpHeaders() {
$be = TestingAccessWrapper::newFromObject( new MemoryFileBackend( [
'name' => 'localtesting',
'wikiId' => 'wikidb',
] ) );
$input = [
'headers' => [
'content-Disposition' => FileBackend::makeContentDisposition( 'inline', 'name' ),
'Content-dUration' => 25.6,
'X-LONG-VALUE' => str_pad( '0', 300 ),
'CONTENT-LENGTH' => 855055,
],
];
$expected = [
'headers' => [
'content-disposition' => FileBackend::makeContentDisposition( 'inline', 'name' ),
'content-duration' => 25.6,
'content-length' => 855055,
],
];
$actual = @$be->sanitizeOpHeaders( $input );
$this->assertEquals( $expected, $actual, "Header sanitized properly" );
}
}
|