| Current File : /home/jvzmxxx/wiki/tests/qunit/suites/resources/mediawiki.api/mediawiki.ForeignApi.test.js |
( function ( mw ) {
QUnit.module( 'mediawiki.ForeignApi', QUnit.newMwEnvironment( {
setup: function () {
this.server = this.sandbox.useFakeServer();
this.server.respondImmediately = true;
this.clock = this.sandbox.useFakeTimers();
},
teardown: function () {
// https://github.com/jquery/jquery/issues/2453
this.clock.tick();
}
} ) );
QUnit.test( 'origin is included in GET requests', function ( assert ) {
QUnit.expect( 1 );
var api = new mw.ForeignApi( '//localhost:4242/w/api.php' );
this.server.respond( function ( request ) {
assert.ok( request.url.match( /origin=/ ), 'origin is included in GET requests' );
request.respond( 200, { 'Content-Type': 'application/json' }, '[]' );
} );
api.get( {} );
} );
QUnit.test( 'origin is included in POST requests', function ( assert ) {
QUnit.expect( 2 );
var api = new mw.ForeignApi( '//localhost:4242/w/api.php' );
this.server.respond( function ( request ) {
assert.ok( request.requestBody.match( /origin=/ ), 'origin is included in POST request body' );
assert.ok( request.url.match( /origin=/ ), 'origin is included in POST request URL, too' );
request.respond( 200, { 'Content-Type': 'application/json' }, '[]' );
} );
api.post( {} );
} );
}( mediaWiki ) );