Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4128992
ExtensionJsonValidationTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
ExtensionJsonValidationTest.php
View Options
<?php
/**
* @license GPL-2.0-or-later
*/
use
MediaWiki\Registration\ExtensionJsonValidationError
;
use
MediaWiki\Registration\ExtensionJsonValidator
;
use
MediaWiki\Registration\ExtensionRegistry
;
/**
* Validates all loaded extensions and skins using the ExtensionRegistry
* against the extension.json schema in the docs/ folder.
* @coversNothing
*/
class
ExtensionJsonValidationTest
extends
PHPUnit\Framework\TestCase
{
use
MediaWikiCoversValidator
;
/**
* @var ExtensionJsonValidator
*/
protected
$validator
;
protected
function
setUp
():
void
{
parent
::
setUp
();
$this
->
validator
=
new
ExtensionJsonValidator
(
[
$this
,
'markTestSkipped'
]
);
$this
->
validator
->
checkDependencies
();
if
(
!
ExtensionRegistry
::
getInstance
()->
getAllThings
()
)
{
$this
->
markTestSkipped
(
'There are no extensions or skins loaded via the ExtensionRegistry'
);
}
}
public
static
function
providePassesValidation
()
{
$allThings
=
ExtensionRegistry
::
getInstance
()->
getAllThings
();
foreach
(
$allThings
as
$thing
)
{
yield
[
$thing
[
'path'
]
];
}
}
/**
* @dataProvider providePassesValidation
* @param string $path Path to thing's json file
*/
public
function
testPassesValidation
(
$path
)
{
try
{
$this
->
validator
->
validate
(
$path
);
// All good
$this
->
assertTrue
(
true
);
}
catch
(
ExtensionJsonValidationError
$e
)
{
$this
->
fail
(
$e
->
getMessage
()
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 09:33 (2 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b3/fb/187e1e8cac95716055d7ec5dfaed
Default Alt Text
ExtensionJsonValidationTest.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment