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
|
<?php
use MediaWiki\Context\RequestContext;
use MediaWiki\Request\FauxRequest;
use MediaWiki\Specials\SpecialMIMESearch;
use MediaWiki\Title\Title;
/**
* @group Database
* @covers \MediaWiki\Specials\SpecialMIMESearch
*/
class SpecialMIMESearchTest extends MediaWikiIntegrationTestCase {
/** @var SpecialMIMESearch */
private $page;
protected function setUp(): void {
parent::setUp();
$services = $this->getServiceContainer();
$this->page = new SpecialMIMESearch(
$services->getConnectionProvider(),
$services->getLinkBatchFactory(),
$services->getLanguageConverterFactory()
);
$context = new RequestContext();
$context->setTitle( Title::makeTitle( NS_SPECIAL, 'MIMESearch' ) );
$context->setRequest( new FauxRequest() );
$this->page->setContext( $context );
}
/**
* @dataProvider providerMimeFiltering
* @param string $par Subpage for special page
* @param string $major Major MIME type we expect to look for
* @param string $minor Minor MIME type we expect to look for
*/
public function testMimeFiltering( $par, $major, $minor ) {
$this->page->run( $par );
$qi = $this->page->getQueryInfo();
$this->assertEquals( $qi['conds']['img_major_mime'], $major );
if ( $minor !== null ) {
$this->assertEquals( $qi['conds']['img_minor_mime'], $minor );
} else {
$this->assertArrayNotHasKey( 'img_minor_mime', $qi['conds'] );
}
$this->assertContains( 'image', $qi['tables'] );
}
public static function providerMimeFiltering() {
return [
[ 'image/gif', 'image', 'gif' ],
[ 'image/png', 'image', 'png' ],
[ 'application/pdf', 'application', 'pdf' ],
[ 'image/*', 'image', null ],
[ 'multipart/*', 'multipart', null ],
];
}
}
|