2012-10-13 07:41:10 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Sanity checks for making sure registered resources are sane.
|
|
|
|
|
*
|
|
|
|
|
* @file
|
2013-10-03 08:35:01 +00:00
|
|
|
* @author Antoine Musso
|
|
|
|
|
* @author Niklas Laxström
|
|
|
|
|
* @author Santhosh Thottingal
|
|
|
|
|
* @author Timo Tijhof
|
|
|
|
|
* @copyright © 2012, Antoine Musso
|
|
|
|
|
* @copyright © 2012, Niklas Laxström
|
|
|
|
|
* @copyright © 2012, Santhosh Thottingal
|
|
|
|
|
* @copyright © 2012, Timo Tijhof
|
2018-06-12 20:27:09 +00:00
|
|
|
* @coversNothing
|
2012-10-13 07:41:10 +00:00
|
|
|
*/
|
|
|
|
|
class ResourcesTest extends MediaWikiTestCase {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideResourceFiles
|
|
|
|
|
*/
|
|
|
|
|
public function testFileExistence( $filename, $module, $resource ) {
|
|
|
|
|
$this->assertFileExists( $filename,
|
|
|
|
|
"File '$resource' referenced by '$module' must exist."
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2013-10-30 20:24:12 +00:00
|
|
|
* @dataProvider provideMediaStylesheets
|
2012-10-13 07:41:10 +00:00
|
|
|
*/
|
2013-10-30 20:24:12 +00:00
|
|
|
public function testStyleMedia( $moduleName, $media, $filename, $css ) {
|
|
|
|
|
$cssText = CSSMin::minify( $css->cssText );
|
|
|
|
|
|
2014-04-24 17:52:51 +00:00
|
|
|
$this->assertTrue(
|
|
|
|
|
strpos( $cssText, '@media' ) === false,
|
|
|
|
|
'Stylesheets should not both specify "media" and contain @media'
|
|
|
|
|
);
|
2013-10-30 20:24:12 +00:00
|
|
|
}
|
|
|
|
|
|
resourceloader: Replace timestamp system with version hashing
Modules now track their version via getVersionHash() instead of getModifiedTime().
== Background ==
While some resources have observeable timestamps (e.g. files stored on disk),
many other resources do not. E.g. config variables, and module definitions.
For static file modules, one can e.g. revert one of more files in a module to a
previous version and not affect the max timestamp.
Wiki modules include pages only if they exist. The user module supports common.js
and skin.js. By default neither exists. If a user has both, and then the
less-recently modified one is deleted, the max-timestamp remains unchanged.
For client-side caching, batch requests use "Math.max" on the relevant timestamps.
Again, if a module changes but another module is more recent (e.g. out-of-order
deployment, or out-of-order discovery), the change would not result in a cache miss.
More scenarios can be found in the associated Phabricator tasks.
== Version hash ==
Previously we virtually mapped these variables to a timestamp by storing the current
time alongside a hash of the value in ObjectCache. Considering the number of
possible request contexts (wikis * modules * users * skins * languages) this doesn't
work well. It results in needless cache invalidation when the first time observation
is purged due to LRU algorithms. It also has other minor bugs leading to fewer
cache hits.
All modules automatically get the benefits of version hashing with this change.
The old getDefinitionMtime() and getHashMtime() have been replaced with dummies
that return 1. These functions are often called from getModifiedTime() in subclasses.
For backward-compatibility, their respective values (definition summary and hash)
are now included in getVersionHash directly.
As examples, the following modules have been updated to use getVersionHash directly.
Other modules still work fine and can be updated later.
* ResourceLoaderFileModule
* ResourceLoaderEditToolbarModule
* ResourceLoaderStartUpModule
* ResourceLoaderWikiModule
The presence of hashes in place of timestamps increases the startup module size on
a default MediaWiki install from 4.4k to 5.8k (after gzip and minification).
== ETag ==
Since timestamps are no longer tracked, we need a different way to implement caching
for cache proxies (e.g. Varnish) and web browsers. Previously we used the
Last-Modified header (in combination with Cache-Control and Expires).
Instead of Last-Modified (and If-Modified-Since), we use ETag (and If-None-Match).
Entity tags (new in HTTP/1.1) are much stricter than Last-Modified by default.
They instruct browsers to allow usage of partial Range requests. Since our responses
are dynamically generated, we need to use the Weak version of ETag.
While this sounds bad, it's no different than Last-Modified. As reassured by
RFC 2616 <http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.3.3> the
specified behaviour behind Last-Modified follows the same "Weak" caching logic as
Entity tags. It's just that entity tags are capable of a stricter mode (whereas
Last-Modified is inherently weak).
== File cache ==
If $wgUseFileCache is enabled, ResourceLoader uses ResourceFileCache to cache
load.php responses. While the blind TTL handling (during the allowed expiry period)
is still maxage/timestamp based, tryRespondNotModified() now requires the caller to
know the expected ETag.
For this to work, the FileCache handling had to be moved from the top of
ResoureLoader::respond() to after the expected ETag is computed.
This also allows us to remove the duplicate tryRespondNotModified() handling since
that's is already handled by ResourceLoader::respond() meanwhile.
== Misc ==
* Remove redundant modifiedTime cache in ResourceLoaderFileModule.
* Change bugzilla references to Phabricator.
* Centralised inclusion of wgCacheEpoch using getDefinitionSummary. Previously this
logic was duplicated in each place the modified timestamp was used.
* It's easy to forget calling the parent class in getDefinitionSummary().
Previously this method only tracked 'class' by default. As such, various
extensions hardcoded that one value instead of calling the parent and extending
the array. To better prevent this in the future, getVersionHash() now asserts
that the '_cacheEpoch' property made it through.
* tests: Don't use getDefinitionSummary() as an API.
Fix ResourceLoaderWikiModuleTest to call getPages properly.
* In tests, the default timestamp used to be 1388534400000 (which is the unix time
of 20140101000000; the unit tests' CacheEpoch). The new version hash of these
modules is "XyCC+PSK", which is the base64 encoded prefix of the SHA1 digest of:
'{"_class":"ResourceLoaderTestModule","_cacheEpoch":"20140101000000"}'
* Add sha1.js library for client-side hash generation.
Compared various different implementations for code size (after minfication/gzip),
and speed (when used for short hexidecimal strings).
https://jsperf.com/sha1-implementations
- CryptoJS <https://code.google.com/p/crypto-js/#SHA-1> (min+gzip: 2.5k)
http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/sha1.js
Chrome: 45k, Firefox: 89k, Safari: 92k
- jsSHA <https://github.com/Caligatio/jsSHA>
https://github.com/Caligatio/jsSHA/blob/3c1d4f2e/src/sha1.js (min+gzip: 1.8k)
Chrome: 65k, Firefox: 53k, Safari: 69k
- phpjs-sha1 <https://github.com/kvz/phpjs> (RL min+gzip: 0.8k)
https://github.com/kvz/phpjs/blob/1eaab15d/functions/strings/sha1.js
Chrome: 200k, Firefox: 280k, Safari: 78k
Modern browsers implement the HTML5 Crypto API. However, this API is asynchronous,
only enabled when on HTTPS in Chromium, and is quite low-level. It requires boilerplate
code to actually use with TextEncoder, ArrayBuffer and Uint32Array. Due this being
needed in the module loader, we'd have to load the fallback regardless. Considering
this is not used in a critical path for performance, it's not worth shipping two
implementations for this optimisation.
May also resolve:
* T44094
* T90411
* T94810
Bug: T94074
Change-Id: Ibb292d2416839327d1807a66c78fd96dac0637d0
2015-04-29 22:53:24 +00:00
|
|
|
public function testVersionHash() {
|
|
|
|
|
$data = self::getAllModules();
|
|
|
|
|
foreach ( $data['modules'] as $moduleName => $module ) {
|
|
|
|
|
$version = $module->getVersionHash( $data['context'] );
|
resourceloader: Replace SHA1 with 32-bit FNV-1 as hash function
SHA-1 is not secure enough to be used as a cryptographic hash function, and its
implementation in JavaScript is too long and too slow for it to be a good
general-purpose hash function. And we currently throw away most of the work:
SHA-1 produces 160-bit hash values, of which we keep 48.
Although the JavaScript implementation is not exported, SHA-1 is a well-known
hash function, and I'm willing to bet that sooner or later someone will move to
make it accessible to other modules, at which point usage will start to spread.
For ResourceLoader, the qualities we're looking for in a hash function are:
* Already implemented in PHP
* Easy to implement in JavaScript
* Fast
* Collision-resistant
The requirement that hashes be cheap to compute in JavaScript narrows the field
to 32-bit hash functions, because in JavaScript bitwise operators treat their
operands as 32 bits, and arithmetic uses double-precision floats, which have a
total precision of 53 bits. It's possible to work around these limitations, but
it's a lot of extra work.
The best match I found is the 32-bit variant of FNV-1, which is available in
PHP as of version 5.4 (as 'fnv1a32'). The fnv132 JavaScript function is
around ten times faster and eight times shorter than sha1.
Change-Id: I1e4fb08d17948538d96f241b2464d594fdc14578
2016-06-22 22:32:58 +00:00
|
|
|
$this->assertEquals( 7, strlen( $version ), "$moduleName must use ResourceLoader::makeHash" );
|
resourceloader: Replace timestamp system with version hashing
Modules now track their version via getVersionHash() instead of getModifiedTime().
== Background ==
While some resources have observeable timestamps (e.g. files stored on disk),
many other resources do not. E.g. config variables, and module definitions.
For static file modules, one can e.g. revert one of more files in a module to a
previous version and not affect the max timestamp.
Wiki modules include pages only if they exist. The user module supports common.js
and skin.js. By default neither exists. If a user has both, and then the
less-recently modified one is deleted, the max-timestamp remains unchanged.
For client-side caching, batch requests use "Math.max" on the relevant timestamps.
Again, if a module changes but another module is more recent (e.g. out-of-order
deployment, or out-of-order discovery), the change would not result in a cache miss.
More scenarios can be found in the associated Phabricator tasks.
== Version hash ==
Previously we virtually mapped these variables to a timestamp by storing the current
time alongside a hash of the value in ObjectCache. Considering the number of
possible request contexts (wikis * modules * users * skins * languages) this doesn't
work well. It results in needless cache invalidation when the first time observation
is purged due to LRU algorithms. It also has other minor bugs leading to fewer
cache hits.
All modules automatically get the benefits of version hashing with this change.
The old getDefinitionMtime() and getHashMtime() have been replaced with dummies
that return 1. These functions are often called from getModifiedTime() in subclasses.
For backward-compatibility, their respective values (definition summary and hash)
are now included in getVersionHash directly.
As examples, the following modules have been updated to use getVersionHash directly.
Other modules still work fine and can be updated later.
* ResourceLoaderFileModule
* ResourceLoaderEditToolbarModule
* ResourceLoaderStartUpModule
* ResourceLoaderWikiModule
The presence of hashes in place of timestamps increases the startup module size on
a default MediaWiki install from 4.4k to 5.8k (after gzip and minification).
== ETag ==
Since timestamps are no longer tracked, we need a different way to implement caching
for cache proxies (e.g. Varnish) and web browsers. Previously we used the
Last-Modified header (in combination with Cache-Control and Expires).
Instead of Last-Modified (and If-Modified-Since), we use ETag (and If-None-Match).
Entity tags (new in HTTP/1.1) are much stricter than Last-Modified by default.
They instruct browsers to allow usage of partial Range requests. Since our responses
are dynamically generated, we need to use the Weak version of ETag.
While this sounds bad, it's no different than Last-Modified. As reassured by
RFC 2616 <http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.3.3> the
specified behaviour behind Last-Modified follows the same "Weak" caching logic as
Entity tags. It's just that entity tags are capable of a stricter mode (whereas
Last-Modified is inherently weak).
== File cache ==
If $wgUseFileCache is enabled, ResourceLoader uses ResourceFileCache to cache
load.php responses. While the blind TTL handling (during the allowed expiry period)
is still maxage/timestamp based, tryRespondNotModified() now requires the caller to
know the expected ETag.
For this to work, the FileCache handling had to be moved from the top of
ResoureLoader::respond() to after the expected ETag is computed.
This also allows us to remove the duplicate tryRespondNotModified() handling since
that's is already handled by ResourceLoader::respond() meanwhile.
== Misc ==
* Remove redundant modifiedTime cache in ResourceLoaderFileModule.
* Change bugzilla references to Phabricator.
* Centralised inclusion of wgCacheEpoch using getDefinitionSummary. Previously this
logic was duplicated in each place the modified timestamp was used.
* It's easy to forget calling the parent class in getDefinitionSummary().
Previously this method only tracked 'class' by default. As such, various
extensions hardcoded that one value instead of calling the parent and extending
the array. To better prevent this in the future, getVersionHash() now asserts
that the '_cacheEpoch' property made it through.
* tests: Don't use getDefinitionSummary() as an API.
Fix ResourceLoaderWikiModuleTest to call getPages properly.
* In tests, the default timestamp used to be 1388534400000 (which is the unix time
of 20140101000000; the unit tests' CacheEpoch). The new version hash of these
modules is "XyCC+PSK", which is the base64 encoded prefix of the SHA1 digest of:
'{"_class":"ResourceLoaderTestModule","_cacheEpoch":"20140101000000"}'
* Add sha1.js library for client-side hash generation.
Compared various different implementations for code size (after minfication/gzip),
and speed (when used for short hexidecimal strings).
https://jsperf.com/sha1-implementations
- CryptoJS <https://code.google.com/p/crypto-js/#SHA-1> (min+gzip: 2.5k)
http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/sha1.js
Chrome: 45k, Firefox: 89k, Safari: 92k
- jsSHA <https://github.com/Caligatio/jsSHA>
https://github.com/Caligatio/jsSHA/blob/3c1d4f2e/src/sha1.js (min+gzip: 1.8k)
Chrome: 65k, Firefox: 53k, Safari: 69k
- phpjs-sha1 <https://github.com/kvz/phpjs> (RL min+gzip: 0.8k)
https://github.com/kvz/phpjs/blob/1eaab15d/functions/strings/sha1.js
Chrome: 200k, Firefox: 280k, Safari: 78k
Modern browsers implement the HTML5 Crypto API. However, this API is asynchronous,
only enabled when on HTTPS in Chromium, and is quite low-level. It requires boilerplate
code to actually use with TextEncoder, ArrayBuffer and Uint32Array. Due this being
needed in the module loader, we'd have to load the fallback regardless. Considering
this is not used in a critical path for performance, it's not worth shipping two
implementations for this optimisation.
May also resolve:
* T44094
* T90411
* T94810
Bug: T94074
Change-Id: Ibb292d2416839327d1807a66c78fd96dac0637d0
2015-04-29 22:53:24 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-26 17:29:31 +00:00
|
|
|
/**
|
2018-06-15 20:20:14 +00:00
|
|
|
* Verify that nothing explicitly depends on raw modules (such as "query").
|
2017-10-03 17:10:02 +00:00
|
|
|
*
|
|
|
|
|
* Depending on them is unsupported as they are not registered client-side by the startup module.
|
|
|
|
|
*
|
2018-06-15 20:20:14 +00:00
|
|
|
* @todo Modules can dynamically choose dependencies based on context. This method does not
|
2015-06-22 17:31:01 +00:00
|
|
|
* test such dependencies. The same goes for testMissingDependencies() and
|
|
|
|
|
* testUnsatisfiableDependencies().
|
2014-06-26 17:29:31 +00:00
|
|
|
*/
|
|
|
|
|
public function testIllegalDependencies() {
|
2014-03-28 00:58:03 +00:00
|
|
|
$data = self::getAllModules();
|
2017-10-03 17:10:02 +00:00
|
|
|
|
2018-06-15 20:20:14 +00:00
|
|
|
$illegalDeps = [];
|
2017-10-03 17:10:02 +00:00
|
|
|
foreach ( $data['modules'] as $moduleName => $module ) {
|
|
|
|
|
if ( $module->isRaw() ) {
|
|
|
|
|
$illegalDeps[] = $moduleName;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-28 00:58:03 +00:00
|
|
|
|
2014-08-21 22:31:51 +00:00
|
|
|
/** @var ResourceLoaderModule $module */
|
2014-03-28 00:58:03 +00:00
|
|
|
foreach ( $data['modules'] as $moduleName => $module ) {
|
|
|
|
|
foreach ( $illegalDeps as $illegalDep ) {
|
|
|
|
|
$this->assertNotContains(
|
|
|
|
|
$illegalDep,
|
2015-06-22 17:31:01 +00:00
|
|
|
$module->getDependencies( $data['context'] ),
|
2014-03-28 00:58:03 +00:00
|
|
|
"Module '$moduleName' must not depend on '$illegalDep'"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-26 17:29:31 +00:00
|
|
|
/**
|
|
|
|
|
* Verify that all modules specified as dependencies of other modules actually exist.
|
|
|
|
|
*/
|
|
|
|
|
public function testMissingDependencies() {
|
|
|
|
|
$data = self::getAllModules();
|
|
|
|
|
$validDeps = array_keys( $data['modules'] );
|
|
|
|
|
|
2014-08-21 22:31:51 +00:00
|
|
|
/** @var ResourceLoaderModule $module */
|
2014-06-26 17:29:31 +00:00
|
|
|
foreach ( $data['modules'] as $moduleName => $module ) {
|
2015-06-22 17:31:01 +00:00
|
|
|
foreach ( $module->getDependencies( $data['context'] ) as $dep ) {
|
2014-06-26 17:29:31 +00:00
|
|
|
$this->assertContains(
|
|
|
|
|
$dep,
|
|
|
|
|
$validDeps,
|
|
|
|
|
"The module '$dep' required by '$moduleName' must exist"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-15 03:11:55 +00:00
|
|
|
/**
|
|
|
|
|
* Verify that all specified messages actually exist.
|
|
|
|
|
*/
|
|
|
|
|
public function testMissingMessages() {
|
|
|
|
|
$data = self::getAllModules();
|
|
|
|
|
$lang = Language::factory( 'en' );
|
|
|
|
|
|
|
|
|
|
/** @var ResourceLoaderModule $module */
|
|
|
|
|
foreach ( $data['modules'] as $moduleName => $module ) {
|
|
|
|
|
foreach ( $module->getMessages() as $msgKey ) {
|
|
|
|
|
$this->assertTrue(
|
|
|
|
|
wfMessage( $msgKey )->useDatabase( false )->inLanguage( $lang )->exists(),
|
|
|
|
|
"Message '$msgKey' required by '$moduleName' must exist"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-26 17:29:31 +00:00
|
|
|
/**
|
|
|
|
|
* Verify that all dependencies of all modules are always satisfiable with the 'targets' defined
|
|
|
|
|
* for the involved modules.
|
|
|
|
|
*
|
|
|
|
|
* Example: A depends on B. A has targets: mobile, desktop. B has targets: desktop. Therefore the
|
|
|
|
|
* dependency is sometimes unsatisfiable: it's impossible to load module A on mobile.
|
|
|
|
|
*/
|
|
|
|
|
public function testUnsatisfiableDependencies() {
|
|
|
|
|
$data = self::getAllModules();
|
|
|
|
|
|
2014-08-21 22:31:51 +00:00
|
|
|
/** @var ResourceLoaderModule $module */
|
2014-06-26 17:29:31 +00:00
|
|
|
foreach ( $data['modules'] as $moduleName => $module ) {
|
|
|
|
|
$moduleTargets = $module->getTargets();
|
2015-06-22 17:31:01 +00:00
|
|
|
foreach ( $module->getDependencies( $data['context'] ) as $dep ) {
|
2015-02-14 12:47:23 +00:00
|
|
|
if ( !isset( $data['modules'][$dep] ) ) {
|
|
|
|
|
// Missing dependencies reported by testMissingDependencies
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2014-06-26 17:29:31 +00:00
|
|
|
$targets = $data['modules'][$dep]->getTargets();
|
|
|
|
|
foreach ( $moduleTargets as $moduleTarget ) {
|
|
|
|
|
$this->assertContains(
|
|
|
|
|
$moduleTarget,
|
|
|
|
|
$targets,
|
|
|
|
|
"The module '$moduleName' must not have target '$moduleTarget' "
|
|
|
|
|
. "because its dependency '$dep' does not have it"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-19 19:32:09 +00:00
|
|
|
/**
|
2016-03-03 00:16:13 +00:00
|
|
|
* CSSMin::getLocalFileReferences should ignore url(...) expressions
|
2015-09-19 19:32:09 +00:00
|
|
|
* that have been commented out.
|
|
|
|
|
*/
|
|
|
|
|
public function testCommentedLocalFileReferences() {
|
|
|
|
|
$basepath = __DIR__ . '/../data/css/';
|
|
|
|
|
$css = file_get_contents( $basepath . 'comments.css' );
|
2016-03-03 00:16:13 +00:00
|
|
|
$files = CSSMin::getLocalFileReferences( $css, $basepath );
|
2016-02-17 09:09:32 +00:00
|
|
|
$expected = [ $basepath . 'not-commented.gif' ];
|
2015-09-19 19:32:09 +00:00
|
|
|
$this->assertArrayEquals(
|
|
|
|
|
$expected,
|
|
|
|
|
$files,
|
|
|
|
|
'Url(...) expression in comment should be omitted.'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-30 20:24:12 +00:00
|
|
|
/**
|
|
|
|
|
* Get all registered modules from ResouceLoader.
|
2014-08-25 16:50:35 +00:00
|
|
|
* @return array
|
2013-10-30 20:24:12 +00:00
|
|
|
*/
|
|
|
|
|
protected static function getAllModules() {
|
2012-10-13 07:41:10 +00:00
|
|
|
global $wgEnableJavaScriptTest;
|
|
|
|
|
|
|
|
|
|
// Test existance of test suite files as well
|
|
|
|
|
// (can't use setUp or setMwGlobals because providers are static)
|
2013-10-30 20:24:12 +00:00
|
|
|
$org_wgEnableJavaScriptTest = $wgEnableJavaScriptTest;
|
2012-10-13 07:41:10 +00:00
|
|
|
$wgEnableJavaScriptTest = true;
|
|
|
|
|
|
|
|
|
|
// Initialize ResourceLoader
|
|
|
|
|
$rl = new ResourceLoader();
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$modules = [];
|
2013-10-30 20:24:12 +00:00
|
|
|
|
|
|
|
|
foreach ( $rl->getModuleNames() as $moduleName ) {
|
|
|
|
|
$modules[$moduleName] = $rl->getModule( $moduleName );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Restore settings
|
|
|
|
|
$wgEnableJavaScriptTest = $org_wgEnableJavaScriptTest;
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
2013-10-30 20:24:12 +00:00
|
|
|
'modules' => $modules,
|
|
|
|
|
'resourceloader' => $rl,
|
|
|
|
|
'context' => new ResourceLoaderContext( $rl, new FauxRequest() )
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2013-10-30 20:24:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get all stylesheet files from modules that are an instance of
|
|
|
|
|
* ResourceLoaderFileModule (or one of its subclasses).
|
|
|
|
|
*/
|
|
|
|
|
public static function provideMediaStylesheets() {
|
|
|
|
|
$data = self::getAllModules();
|
2016-02-17 09:09:32 +00:00
|
|
|
$cases = [];
|
2013-10-30 20:24:12 +00:00
|
|
|
|
|
|
|
|
foreach ( $data['modules'] as $moduleName => $module ) {
|
|
|
|
|
if ( !$module instanceof ResourceLoaderFileModule ) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$reflectedModule = new ReflectionObject( $module );
|
|
|
|
|
|
|
|
|
|
$getStyleFiles = $reflectedModule->getMethod( 'getStyleFiles' );
|
|
|
|
|
$getStyleFiles->setAccessible( true );
|
|
|
|
|
|
|
|
|
|
$readStyleFile = $reflectedModule->getMethod( 'readStyleFile' );
|
|
|
|
|
$readStyleFile->setAccessible( true );
|
|
|
|
|
|
|
|
|
|
$styleFiles = $getStyleFiles->invoke( $module, $data['context'] );
|
|
|
|
|
|
|
|
|
|
$flip = $module->getFlip( $data['context'] );
|
|
|
|
|
|
|
|
|
|
foreach ( $styleFiles as $media => $files ) {
|
|
|
|
|
if ( $media && $media !== 'all' ) {
|
|
|
|
|
foreach ( $files as $file ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$cases[] = [
|
2013-10-30 20:24:12 +00:00
|
|
|
$moduleName,
|
|
|
|
|
$media,
|
|
|
|
|
$file,
|
|
|
|
|
// XXX: Wrapped in an object to keep it out of PHPUnit output
|
2016-02-17 09:09:32 +00:00
|
|
|
(object)[
|
2015-09-30 07:46:06 +00:00
|
|
|
'cssText' => $readStyleFile->invoke(
|
|
|
|
|
$module,
|
|
|
|
|
$file,
|
|
|
|
|
$flip,
|
|
|
|
|
$data['context']
|
|
|
|
|
)
|
2016-02-17 09:09:32 +00:00
|
|
|
],
|
|
|
|
|
];
|
2013-10-30 20:24:12 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $cases;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get all resource files from modules that are an instance of
|
|
|
|
|
* ResourceLoaderFileModule (or one of its subclasses).
|
|
|
|
|
*
|
|
|
|
|
* Since the raw data is stored in protected properties, we have to
|
|
|
|
|
* overrride this through ReflectionObject methods.
|
|
|
|
|
*/
|
|
|
|
|
public static function provideResourceFiles() {
|
|
|
|
|
$data = self::getAllModules();
|
2016-02-17 09:09:32 +00:00
|
|
|
$cases = [];
|
2013-10-30 20:24:12 +00:00
|
|
|
|
2012-10-13 07:41:10 +00:00
|
|
|
// See also ResourceLoaderFileModule::__construct
|
2016-02-17 09:09:32 +00:00
|
|
|
$filePathProps = [
|
2012-10-13 07:41:10 +00:00
|
|
|
// Lists of file paths
|
2016-02-17 09:09:32 +00:00
|
|
|
'lists' => [
|
2012-10-13 07:41:10 +00:00
|
|
|
'scripts',
|
|
|
|
|
'debugScripts',
|
|
|
|
|
'styles',
|
2016-02-17 09:09:32 +00:00
|
|
|
],
|
2012-10-13 07:41:10 +00:00
|
|
|
|
|
|
|
|
// Collated lists of file paths
|
2016-02-17 09:09:32 +00:00
|
|
|
'nested-lists' => [
|
2012-10-13 07:41:10 +00:00
|
|
|
'languageScripts',
|
|
|
|
|
'skinScripts',
|
|
|
|
|
'skinStyles',
|
2016-02-17 09:09:32 +00:00
|
|
|
],
|
|
|
|
|
];
|
2012-10-13 07:41:10 +00:00
|
|
|
|
2013-10-30 20:24:12 +00:00
|
|
|
foreach ( $data['modules'] as $moduleName => $module ) {
|
2013-02-15 10:35:55 +00:00
|
|
|
if ( !$module instanceof ResourceLoaderFileModule ) {
|
2012-10-13 07:41:10 +00:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$reflectedModule = new ReflectionObject( $module );
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$files = [];
|
2012-10-13 07:41:10 +00:00
|
|
|
|
|
|
|
|
foreach ( $filePathProps['lists'] as $propName ) {
|
|
|
|
|
$property = $reflectedModule->getProperty( $propName );
|
|
|
|
|
$property->setAccessible( true );
|
|
|
|
|
$list = $property->getValue( $module );
|
|
|
|
|
foreach ( $list as $key => $value ) {
|
|
|
|
|
// 'scripts' are numeral arrays.
|
|
|
|
|
// 'styles' can be numeral or associative.
|
|
|
|
|
// In case of associative the key is the file path
|
|
|
|
|
// and the value is the 'media' attribute.
|
|
|
|
|
if ( is_int( $key ) ) {
|
|
|
|
|
$files[] = $value;
|
|
|
|
|
} else {
|
|
|
|
|
$files[] = $key;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ( $filePathProps['nested-lists'] as $propName ) {
|
|
|
|
|
$property = $reflectedModule->getProperty( $propName );
|
|
|
|
|
$property->setAccessible( true );
|
|
|
|
|
$lists = $property->getValue( $module );
|
2013-04-26 07:48:46 +00:00
|
|
|
foreach ( $lists as $list ) {
|
2012-10-13 07:41:10 +00:00
|
|
|
foreach ( $list as $key => $value ) {
|
|
|
|
|
// We need the same filter as for 'lists',
|
|
|
|
|
// due to 'skinStyles'.
|
|
|
|
|
if ( is_int( $key ) ) {
|
|
|
|
|
$files[] = $value;
|
|
|
|
|
} else {
|
|
|
|
|
$files[] = $key;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get method for resolving the paths to full paths
|
|
|
|
|
$method = $reflectedModule->getMethod( 'getLocalPath' );
|
|
|
|
|
$method->setAccessible( true );
|
|
|
|
|
|
|
|
|
|
// Populate cases
|
|
|
|
|
foreach ( $files as $file ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$cases[] = [
|
2012-10-13 07:41:10 +00:00
|
|
|
$method->invoke( $module, $file ),
|
2013-10-30 20:24:12 +00:00
|
|
|
$moduleName,
|
2014-06-26 14:29:31 +00:00
|
|
|
( $file instanceof ResourceLoaderFilePath ? $file->getPath() : $file ),
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2012-10-13 07:41:10 +00:00
|
|
|
}
|
2015-09-03 21:30:36 +00:00
|
|
|
|
|
|
|
|
// To populate missingLocalFileRefs. Not sure how sane this is inside this test...
|
|
|
|
|
$module->readStyleFiles(
|
|
|
|
|
$module->getStyleFiles( $data['context'] ),
|
|
|
|
|
$module->getFlip( $data['context'] ),
|
|
|
|
|
$data['context']
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$property = $reflectedModule->getProperty( 'missingLocalFileRefs' );
|
|
|
|
|
$property->setAccessible( true );
|
|
|
|
|
$missingLocalFileRefs = $property->getValue( $module );
|
|
|
|
|
|
|
|
|
|
foreach ( $missingLocalFileRefs as $file ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$cases[] = [
|
2015-09-03 21:30:36 +00:00
|
|
|
$file,
|
|
|
|
|
$moduleName,
|
|
|
|
|
$file,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2015-09-03 21:30:36 +00:00
|
|
|
}
|
2012-10-13 07:41:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $cases;
|
|
|
|
|
}
|
|
|
|
|
}
|