gplx/mediawiki/tests/qunit/resources/mediawiki.api/mediawiki.api.edit.test.js

189 lines
5.5 KiB
JavaScript

QUnit.module( 'mediawiki.api.edit', ( hooks ) => {
let server;
hooks.beforeEach( function () {
server = this.sandbox.useFakeServer();
server.respondImmediately = true;
} );
QUnit.test( 'edit( title, transform String )', async ( assert ) => {
server.respond( ( req ) => {
if ( /query.+titles=Sandbox/.test( req.url ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
curtimestamp: '2016-01-02T12:00:00Z',
query: {
pages: [ {
pageid: 1,
ns: 0,
title: 'Sandbox',
revisions: [ {
timestamp: '2016-01-01T12:00:00Z',
contentformat: 'text/x-wiki',
contentmodel: 'wikitext',
content: 'Sand.'
} ]
} ]
}
} ) );
}
if ( /edit.+basetimestamp=2016-01-01.+starttimestamp=2016-01-02.+text=Box\./.test( req.requestBody ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
edit: {
result: 'Success',
oldrevid: 11,
newrevid: 13,
newtimestamp: '2016-01-03T12:00:00Z'
}
} ) );
}
} );
const edit = await new mw.Api().edit( 'Sandbox', ( revision ) => revision.content.replace( 'Sand', 'Box' ) );
assert.strictEqual( edit.newrevid, 13 );
} );
QUnit.test( 'edit( mw.Title, transform String )', async ( assert ) => {
server.respond( ( req ) => {
if ( /query.+titles=Sandbox/.test( req.url ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
curtimestamp: '2016-01-02T12:00:00Z',
query: {
pages: [ {
pageid: 1,
ns: 0,
title: 'Sandbox',
revisions: [ {
timestamp: '2016-01-01T12:00:00Z',
contentformat: 'text/x-wiki',
contentmodel: 'wikitext',
content: 'Sand.'
} ]
} ]
}
} ) );
}
if ( /edit.+basetimestamp=2016-01-01.+starttimestamp=2016-01-02.+text=Box\./.test( req.requestBody ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
edit: {
result: 'Success',
oldrevid: 11,
newrevid: 13,
newtimestamp: '2016-01-03T12:00:00Z'
}
} ) );
}
} );
const edit = await new mw.Api().edit( new mw.Title( 'Sandbox' ), ( revision ) => revision.content.replace( 'Sand', 'Box' ) );
assert.strictEqual( edit.newrevid, 13 );
} );
QUnit.test( 'edit( title, transform Promise )', async ( assert ) => {
server.respond( ( req ) => {
if ( /query.+titles=Async/.test( req.url ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
curtimestamp: '2016-02-02T12:00:00Z',
query: {
pages: [ {
pageid: 4,
ns: 0,
title: 'Async',
revisions: [ {
timestamp: '2016-02-01T12:00:00Z',
contentformat: 'text/x-wiki',
contentmodel: 'wikitext',
content: 'Async.'
} ]
} ]
}
} ) );
}
if ( /edit.+basetimestamp=2016-02-01.+starttimestamp=2016-02-02.+text=Promise\./.test( req.requestBody ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
edit: {
result: 'Success',
oldrevid: 21,
newrevid: 23,
newtimestamp: '2016-02-03T12:00:00Z'
}
} ) );
}
} );
const edit = await new mw.Api().edit( 'Async', async ( revision ) => Promise.resolve( revision.content.replace( 'Async', 'Promise' ) ) );
assert.strictEqual( edit.newrevid, 23 );
} );
QUnit.test( 'edit( title, transform Object )', async ( assert ) => {
server.respond( ( req ) => {
if ( /query.+titles=Param/.test( req.url ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
curtimestamp: '2016-03-02T12:00:00Z',
query: {
pages: [ {
pageid: 3,
ns: 0,
title: 'Param',
revisions: [ {
timestamp: '2016-03-01T12:00:00Z',
contentformat: 'text/x-wiki',
contentmodel: 'wikitext',
content: '...'
} ]
} ]
}
} ) );
}
if ( /edit.+basetimestamp=2016-03-01.+starttimestamp=2016-03-02.+text=Content&summary=Sum/.test( req.requestBody ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
edit: {
result: 'Success',
oldrevid: 31,
newrevid: 33,
newtimestamp: '2016-03-03T12:00:00Z'
}
} ) );
}
} );
const edit = await new mw.Api().edit( 'Param', () => ( { text: 'Content', summary: 'Sum' } ) );
assert.strictEqual( edit.newrevid, 33 );
} );
QUnit.test( 'edit( invalid-title, transform String )', ( assert ) => {
server.respond( ( req ) => {
if ( /query.+titles=%1F%7C/.test( req.url ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
query: {
pages: [ {
title: '|',
invalidreason: 'The requested page title contains invalid characters: "|".',
invalid: true
} ]
}
} ) );
}
} );
const promise = new mw.Api().edit( '|', ( revision ) => revision.content.replace( 'Sand', 'Box' ) );
assert.rejects( promise, 'invalidtitle' );
} );
QUnit.test( 'create( title, content )', async ( assert ) => {
server.respond( ( req ) => {
if ( /edit.+text=Sand/.test( req.requestBody ) ) {
req.respond( 200, { 'Content-Type': 'application/json' }, JSON.stringify( {
edit: {
new: true,
result: 'Success',
newrevid: 41,
newtimestamp: '2016-04-01T12:00:00Z'
}
} ) );
}
} );
const page = await new mw.Api().create( 'Sandbox', { summary: 'Load sand particles.' }, 'Sand.' );
assert.strictEqual( page.newrevid, 41 );
} );
} );