wiki.techinc.nl/tests/phpunit/includes/specials/SpecialMIMESearchTest.php
Umherirrender d9fb8bab5e Move phpunit @group from file comment to class comment
Remove @group from non tests

Change-Id: Iae9ee3bc5f539a9b4ded8374006ab2993234450e
2018-03-10 11:48:28 +01:00

49 lines
1.3 KiB
PHP

<?php
/**
* @group Database
* @covers MIMEsearchPage
*/
class SpecialMIMESearchTest extends MediaWikiTestCase {
/** @var MIMEsearchPage */
private $page;
function setUp() {
$this->page = new MIMEsearchPage;
$context = new RequestContext();
$context->setTitle( Title::makeTitle( NS_SPECIAL, 'MIMESearch' ) );
$context->setRequest( new FauxRequest() );
$this->page->setContext( $context );
parent::setUp();
}
/**
* @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
*/
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'] );
}
function providerMimeFiltering() {
return [
[ 'image/gif', 'image', 'gif' ],
[ 'image/png', 'image', 'png' ],
[ 'application/pdf', 'application', 'pdf' ],
[ 'image/*', 'image', null ],
[ 'multipart/*', 'multipart', null ],
];
}
}