Current File : /home/jvzmxxx/wiki1/tests/qunit/suites/resources/mediawiki.api/mediawiki.api.parse.test.js
( function ( mw ) {
	QUnit.module( 'mediawiki.api.parse', QUnit.newMwEnvironment( {
		setup: function () {
			this.server = this.sandbox.useFakeServer();
		}
	} ) );

	QUnit.test( 'Hello world', function ( assert ) {
		QUnit.expect( 3 );

		var api = new mw.Api();

		api.parse( '\'\'\'Hello world\'\'\'' ).done( function ( html ) {
			assert.equal( html, '<p><b>Hello world</b></p>', 'Parse wikitext by string' );
		} );

		api.parse( {
			toString: function () {
				return '\'\'\'Hello world\'\'\'';
			}
		} ).done( function ( html ) {
			assert.equal( html, '<p><b>Hello world</b></p>', 'Parse wikitext by toString object' );
		} );

		this.server.respondWith( /action=parse.*&text='''Hello\+world'''/, function ( request ) {
			request.respond( 200, { 'Content-Type': 'application/json' },
				'{ "parse": { "text": "<p><b>Hello world</b></p>" } }'
			);
		} );

		api.parse( new mw.Title( 'Earth' ) ).done( function ( html ) {
			assert.equal( html, '<p><b>Earth</b> is a planet.</p>', 'Parse page by Title object'  );
		} );

		this.server.respondWith( /action=parse.*&page=Earth/, function ( request ) {
			request.respond( 200, { 'Content-Type': 'application/json' },
				'{ "parse": { "text": "<p><b>Earth</b> is a planet.</p>" } }'
			);
		} );

		this.server.respond();
	} );
}( mediaWiki ) );