summaryrefslogtreecommitdiff
path: root/extensions/Gadgets/tests/GadgetTest.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-12-17 09:15:42 +0100
committerPierre Schmitz <pierre@archlinux.de>2015-12-17 09:44:51 +0100
commita1789ddde42033f1b05cc4929491214ee6e79383 (patch)
tree63615735c4ddffaaabf2428946bb26f90899f7bf /extensions/Gadgets/tests/GadgetTest.php
parent9e06a62f265e3a2aaabecc598d4bc617e06fa32d (diff)
Update to MediaWiki 1.26.0
Diffstat (limited to 'extensions/Gadgets/tests/GadgetTest.php')
-rw-r--r--extensions/Gadgets/tests/GadgetTest.php35
1 files changed, 26 insertions, 9 deletions
diff --git a/extensions/Gadgets/tests/GadgetTest.php b/extensions/Gadgets/tests/GadgetTest.php
index 8fd09295..26d77e5f 100644
--- a/extensions/Gadgets/tests/GadgetTest.php
+++ b/extensions/Gadgets/tests/GadgetTest.php
@@ -4,19 +4,25 @@
*/
class GadgetsTest extends MediaWikiTestCase {
+ /**
+ * @param string $line
+ * @return Gadget
+ */
private function create( $line ) {
- $g = Gadget::newFromDefinition( $line );
+ $repo = new MediaWikiGadgetsDefinitionRepo();
+ $g = $repo->newFromDefinition( $line, 'misc' );
$this->assertInstanceOf( 'Gadget', $g );
return $g;
}
- function testInvalidLines() {
- $this->assertFalse( Gadget::newFromDefinition( '' ) );
- $this->assertFalse( Gadget::newFromDefinition( '<foo|bar>' ) );
+ public function testInvalidLines() {
+ $repo = new MediaWikiGadgetsDefinitionRepo();
+ $this->assertFalse( $repo->newFromDefinition( '', 'misc' ) );
+ $this->assertFalse( $repo->newFromDefinition( '<foo|bar>', 'misc' ) );
}
- function testSimpleCases() {
+ public function testSimpleCases() {
$g = $this->create( '* foo bar| foo.css|foo.js|foo.bar' );
$this->assertEquals( 'foo_bar', $g->getName() );
$this->assertEquals( 'ext.gadget.foo_bar', $g->getModuleName() );
@@ -29,30 +35,36 @@ class GadgetsTest extends MediaWikiTestCase {
$this->assertTrue( $g->hasModule() );
}
- function testRLtag() {
+ public function testRLtag() {
$g = $this->create( '*foo [ResourceLoader]|foo.js|foo.css' );
$this->assertEquals( 'foo', $g->getName() );
$this->assertTrue( $g->supportsResourceLoader() );
$this->assertEquals( 0, count( $g->getLegacyScripts() ) );
}
- function testDependencies() {
+ public function testDependencies() {
$g = $this->create( '* foo[ResourceLoader|dependencies=jquery.ui]|bar.js' );
$this->assertEquals( array( 'Gadget-bar.js' ), $g->getScripts() );
$this->assertTrue( $g->supportsResourceLoader() );
$this->assertEquals( array( 'jquery.ui' ), $g->getDependencies() );
}
- function testPreferences() {
+ public function testPreferences() {
$prefs = array();
+ $repo = TestingAccessWrapper::newFromObject( new MediaWikiGadgetsDefinitionRepo() );
+ // Force usage of a MediaWikiGadgetsDefinitionRepo
+ GadgetRepo::setSingleton( $repo );
- Gadget::loadStructuredList( '* foo | foo.js
+ $gadgets = $repo->fetchStructuredList( '* foo | foo.js
==keep-section1==
* bar| bar.js
==remove-section==
* baz [rights=embezzle] |baz.js
==keep-section2==
* quux [rights=read] | quux.js' );
+ $this->assertGreaterThanOrEqual( 2, count( $gadgets ), "Gadget list parsed" );
+
+ $repo->definitionCache = $gadgets;
$this->assertTrue( GadgetHooks::getPreferences( new User, $prefs ), 'GetPrefences hook should return true' );
$options = $prefs['gadgets']['options'];
@@ -60,4 +72,9 @@ class GadgetsTest extends MediaWikiTestCase {
$this->assertTrue( isset( $options['&lt;gadget-section-keep-section1&gt;'] ) );
$this->assertTrue( isset( $options['&lt;gadget-section-keep-section2&gt;'] ) );
}
+
+ public function tearDown() {
+ GadgetRepo::setSingleton();
+ parent::tearDown();
+ }
}