From d9022f63880ce039446fba8364f68e656b7bf4cb Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 3 May 2012 13:01:35 +0200 Subject: Update to MediaWiki 1.19.0 --- .../suites/resources/mediawiki/mediawiki.test.js | 270 +++++++++++++++++++++ 1 file changed, 270 insertions(+) create mode 100644 tests/qunit/suites/resources/mediawiki/mediawiki.test.js (limited to 'tests/qunit/suites/resources/mediawiki/mediawiki.test.js') diff --git a/tests/qunit/suites/resources/mediawiki/mediawiki.test.js b/tests/qunit/suites/resources/mediawiki/mediawiki.test.js new file mode 100644 index 00000000..e6934eda --- /dev/null +++ b/tests/qunit/suites/resources/mediawiki/mediawiki.test.js @@ -0,0 +1,270 @@ +module( 'mediawiki', QUnit.newMwEnvironment() ); + +test( '-- Initial check', function() { + expect(8); + + ok( window.jQuery, 'jQuery defined' ); + ok( window.$, '$j defined' ); + ok( window.$j, '$j defined' ); + strictEqual( window.$, window.jQuery, '$ alias to jQuery' ); + strictEqual( window.$j, window.jQuery, '$j alias to jQuery' ); + + ok( window.mediaWiki, 'mediaWiki defined' ); + ok( window.mw, 'mw defined' ); + strictEqual( window.mw, window.mediaWiki, 'mw alias to mediaWiki' ); +}); + +test( 'mw.Map', function() { + expect(17); + + ok( mw.Map, 'mw.Map defined' ); + + var conf = new mw.Map(), + // Dummy variables + funky = function() {}, + arry = [], + nummy = 7; + + // Tests for input validation + strictEqual( conf.get( 'inexistantKey' ), null, 'Map.get returns null if selection was a string and the key was not found' ); + strictEqual( conf.set( 'myKey', 'myValue' ), true, 'Map.set returns boolean true if a value was set for a valid key string' ); + strictEqual( conf.set( funky, 'Funky' ), false, 'Map.set returns boolean false if key was invalid (Function)' ); + strictEqual( conf.set( arry, 'Arry' ), false, 'Map.set returns boolean false if key was invalid (Array)' ); + strictEqual( conf.set( nummy, 'Nummy' ), false, 'Map.set returns boolean false if key was invalid (Number)' ); + equal( conf.get( 'myKey' ), 'myValue', 'Map.get returns a single value value correctly' ); + strictEqual( conf.get( nummy ), null, 'Map.get ruturns null if selection was invalid (Number)' ); + strictEqual( conf.get( funky ), null, 'Map.get ruturns null if selection was invalid (Function)' ); + + // Multiple values at once + var someValues = { + 'foo': 'bar', + 'lorem': 'ipsum', + 'MediaWiki': true + }; + strictEqual( conf.set( someValues ), true, 'Map.set returns boolean true if multiple values were set by passing an object' ); + deepEqual( conf.get( ['foo', 'lorem'] ), { + 'foo': 'bar', + 'lorem': 'ipsum' + }, 'Map.get returns multiple values correctly as an object' ); + + deepEqual( conf.get( ['foo', 'notExist'] ), { + 'foo': 'bar', + 'notExist': null + }, 'Map.get return includes keys that were not found as null values' ); + + strictEqual( conf.exists( 'foo' ), true, 'Map.exists returns boolean true if a key exists' ); + strictEqual( conf.exists( 'notExist' ), false, 'Map.exists returns boolean false if a key does not exists' ); + + // Interacting with globals and accessing the values object + strictEqual( conf.get(), conf.values, 'Map.get returns the entire values object by reference (if called without arguments)' ); + + conf.set( 'globalMapChecker', 'Hi' ); + + ok( false === 'globalMapChecker' in window, 'new mw.Map did not store its values in the global window object by default' ); + + var globalConf = new mw.Map( true ); + globalConf.set( 'anotherGlobalMapChecker', 'Hello' ); + + ok( 'anotherGlobalMapChecker' in window, 'new mw.Map( true ) did store its values in the global window object' ); + + // Whitelist this global variable for QUnit's 'noglobal' mode + if ( QUnit.config.noglobals ) { + QUnit.config.pollution.push( 'anotherGlobalMapChecker' ); + } +}); + +test( 'mw.config', function() { + expect(1); + + ok( mw.config instanceof mw.Map, 'mw.config instance of mw.Map' ); +}); + +test( 'mw.message & mw.messages', function() { + expect(20); + + ok( mw.messages, 'messages defined' ); + ok( mw.messages instanceof mw.Map, 'mw.messages instance of mw.Map' ); + ok( mw.messages.set( 'hello', 'Hello awesome world' ), 'mw.messages.set: Register' ); + + var hello = mw.message( 'hello' ); + + equal( hello.format, 'plain', 'Message property "format" defaults to "plain"' ); + strictEqual( hello.map, mw.messages, 'Message property "map" defaults to the global instance in mw.messages' ); + equal( hello.key, 'hello', 'Message property "key" (currect key)' ); + deepEqual( hello.parameters, [], 'Message property "parameters" defaults to an empty array' ); + + // Todo + ok( hello.params, 'Message prototype "params"' ); + + hello.format = 'plain'; + equal( hello.toString(), 'Hello awesome world', 'Message.toString returns the message as a string with the current "format"' ); + + equal( hello.escaped(), 'Hello <b>awesome</b> world', 'Message.escaped returns the escaped message' ); + equal( hello.format, 'escaped', 'Message.escaped correctly updated the "format" property' ); + + hello.parse(); + equal( hello.format, 'parse', 'Message.parse correctly updated the "format" property' ); + + hello.plain(); + equal( hello.format, 'plain', 'Message.plain correctly updated the "format" property' ); + + strictEqual( hello.exists(), true, 'Message.exists returns true for existing messages' ); + + var goodbye = mw.message( 'goodbye' ); + strictEqual( goodbye.exists(), false, 'Message.exists returns false for nonexistent messages' ); + + equal( goodbye.plain(), '', 'Message.toString returns plain if format is "plain" and key does not exist' ); + // bug 30684 + equal( goodbye.escaped(), '<goodbye>', 'Message.toString returns properly escaped <key> if format is "escaped" and key does not exist' ); + + ok( mw.messages.set( 'pluraltestmsg', 'There {{PLURAL:$1|is|are}} $1 {{PLURAL:$1|result|results}}' ), 'mw.messages.set: Register' ); + var pluralMessage = mw.message( 'pluraltestmsg' , 6 ); + equal( pluralMessage.plain(), 'There are 6 results', 'plural get resolved when format is plain' ); + equal( pluralMessage.parse(), 'There are 6 results', 'plural get resolved when format is parse' ); + +}); + +test( 'mw.msg', function() { + expect(11); + + ok( mw.messages.set( 'hello', 'Hello awesome world' ), 'mw.messages.set: Register' ); + equal( mw.msg( 'hello' ), 'Hello awesome world', 'Gets message with default options (existing message)' ); + equal( mw.msg( 'goodbye' ), '', 'Gets message with default options (nonexistent message)' ); + + ok( mw.messages.set( 'plural-item' , 'Found $1 {{PLURAL:$1|item|items}}' ) ); + equal( mw.msg( 'plural-item', 5 ), 'Found 5 items', 'Apply plural for count 5' ); + equal( mw.msg( 'plural-item', 0 ), 'Found 0 items', 'Apply plural for count 0' ); + equal( mw.msg( 'plural-item', 1 ), 'Found 1 item', 'Apply plural for count 1' ); + + ok( mw.messages.set('gender-plural-msg' , '{{GENDER:$1|he|she|they}} {{PLURAL:$2|is|are}} awesome' ) ); + equal( mw.msg( 'gender-plural-msg', 'male', 1 ), 'he is awesome', 'Gender test for male, plural count 1' ); + equal( mw.msg( 'gender-plural-msg', 'female', '1' ), 'she is awesome', 'Gender test for female, plural count 1' ); + equal( mw.msg( 'gender-plural-msg', 'unknown', 10 ), 'they are awesome', 'Gender test for neutral, plural count 10' ); + +}); + +test( 'mw.loader', function() { + expect(1); + + // Asynchronous ahead + stop(); + + mw.loader.implement( 'is.awesome', [QUnit.fixurl( mw.config.get( 'wgScriptPath' ) + '/tests/qunit/data/defineTestCallback.js' )], {}, {} ); + + mw.loader.using( 'is.awesome', function() { + + // /sample/awesome.js declares the "mw.loader.testCallback" function + // which contains a call to start() and ok() + mw.loader.testCallback(); + mw.loader.testCallback = undefined; + + }, function() { + start(); + ok( false, 'Error callback fired while implementing "is.awesome" module' ); + }); + +}); + +test( 'mw.loader.bug29107' , function() { + expect(2); + + // Message doesn't exist already + ok( !mw.messages.exists( 'bug29107' ) ); + + // Async! Failure in this test may lead to neither the success nor error callbacks getting called. + // Due to QUnit's timeout feauture we won't hang here forever if this happends. + stop(); + + mw.loader.implement( 'bug29107.messages-only', [], {}, {'bug29107': 'loaded'} ); + mw.loader.using( 'bug29107.messages-only', function() { + start(); + ok( mw.messages.exists( 'bug29107' ), 'Bug 29107: messages-only module should implement ok' ); + }, function() { + start(); + ok( false, 'Error callback fired while implementing "bug29107.messages-only" module' ); + }); +}); + +test( 'mw.loader.bug30825', function() { + // This bug was actually already fixed in 1.18 and later when discovered in 1.17. + // Test is for regressions! + + expect(2); + + // Forge an URL to the test callback script + var target = QUnit.fixurl( + mw.config.get( 'wgServer' ) + mw.config.get( 'wgScriptPath' ) + '/tests/qunit/data/qunitOkCall.js' + ); + + // Confirm that mw.loader.load() works with protocol-relative URLs + target = target.replace( /https?:/, '' ); + + equal( target.substr( 0, 2 ), '//', + 'URL must be relative to test relative URLs!' + ); + + // Async! + stop(); + mw.loader.load( target ); +}); + +test( 'mw.html', function() { + expect(11); + + raises( function(){ + mw.html.escape(); + }, TypeError, 'html.escape throws a TypeError if argument given is not a string' ); + + equal( mw.html.escape( '' ), + '<mw awesome="awesome" value='test' />', 'html.escape escapes html snippet' ); + + equal( mw.html.element(), + '', 'html.element Always return a valid html string (even without arguments)' ); + + equal( mw.html.element( 'div' ), '
', 'html.element DIV (simple)' ); + + equal( + mw.html.element( + 'div', { + id: 'foobar' + } + ), + '
', + 'html.element DIV (attribs)' ); + + equal( mw.html.element( 'p', null, 12 ), '

12

', 'Numbers are valid content and should be casted to a string' ); + + equal( mw.html.element( 'p', { title: 12 }, '' ), '

', 'Numbers are valid attribute values' ); + + equal( + mw.html.element( + 'option', { + selected: true + }, 'Foo' + ), + '', + 'Attributes may have boolean values. True copies the attribute name to the value.' + ); + + equal( + mw.html.element( + 'option', { + value: 'foo', + selected: false + }, 'Foo' + ), + '', + 'Attributes may have boolean values. False keeps the attribute from output.' + ); + + equal( mw.html.element( 'div', + null, 'a' ), + '
a
', + 'html.element DIV (content)' ); + + equal( mw.html.element( 'a', + { href: 'http://mediawiki.org/w/index.php?title=RL&action=history' }, 'a' ), + 'a', + 'html.element DIV (attribs + content)' ); + +}); -- cgit v1.2.3-54-g00ecf