wiki.techinc.nl/tests/phpunit/includes/resourceloader/ResourceLoaderOOUIImageModuleTest.php
Bartosz Dziewoński efd707de37 Rename all files used in ResourceLoaderImageModule tests to fake names
Using names that match real OOjs UI icons is confusing when trying to
find usages of the real icons and when debugging the tests.

Bug: T166730
Change-Id: Ibb97c0347476efc95f1a50c97822d7dab19737f2
2017-06-06 13:17:29 +00:00

65 lines
1.6 KiB
PHP

<?php
/**
* @group ResourceLoader
*/
class ResourceLoaderOOUIImageModuleTest extends ResourceLoaderTestCase {
/**
* @covers ResourceLoaderOOUIImageModule::loadFromDefinition
*/
public function testNonDefaultSkin() {
$module = new ResourceLoaderOOUIImageModule( [
'class' => 'ResourceLoaderOOUIImageModule',
'name' => 'icons',
'rootPath' => 'tests/phpunit/data/resourceloader/oouiimagemodule',
] );
// Pretend that 'fakemonobook' is a real skin using the Apex theme
SkinFactory::getDefaultInstance()->register(
'fakemonobook',
'FakeMonoBook',
function () {
}
);
$r = new ReflectionMethod( 'ExtensionRegistry', 'exportExtractedData' );
$r->setAccessible( true );
$r->invoke( ExtensionRegistry::getInstance(), [
'globals' => [],
'defines' => [],
'callbacks' => [],
'credits' => [],
'autoloaderPaths' => [],
'attributes' => [
'SkinOOUIThemes' => [
'fakemonobook' => 'Apex',
],
],
] );
$styles = $module->getStyles( $this->getResourceLoaderContext( [ 'skin' => 'fakemonobook' ] ) );
$this->assertRegExp(
'/stu-apex/',
$styles['all'],
'Generated styles use the non-default image (embed)'
);
$this->assertRegExp(
'/fakemonobook/',
$styles['all'],
'Generated styles use the non-default image (link)'
);
$styles = $module->getStyles( $this->getResourceLoaderContext() );
$this->assertRegExp(
'/stu-wikimediaui/',
$styles['all'],
'Generated styles use the default image (embed)'
);
$this->assertRegExp(
'/vector/',
$styles['all'],
'Generated styles use the default image (link)'
);
}
}