aboutsummaryrefslogtreecommitdiffstats
path: root/tests/api-testing/action/RecentChanges.js
blob: 1bf18286ab1bc165c1ad6ab69b7674103a16c797 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'use strict';

const { action, assert, utils, wiki } = require( 'api-testing' );

describe( 'Recent Changes', function () {
	const title = utils.title( 'Recent_Changes_' );
	let alice;

	before( async () => {
		alice = await action.alice();
	} );

	it( 'should create page and get new page recent changes', async () => {
		const edit = await alice.edit( title, { text: 'Recent changes testing', createonly: true } );
		await wiki.runAllJobs();
		const results = await alice.list( 'recentchanges', { rctype: 'new', rctitle: title } );

		assert.equal( results[ 0 ].type, 'new' );
		assert.sameTitle( results[ 0 ].title, title );
		assert.equal( results[ 0 ].pageid, edit.pageid );
		assert.equal( results[ 0 ].revid, edit.newrevid );
	} );

	it( 'should edit page and get most recent edit changes', async () => {
		const rev1 = await alice.edit( title, { text: 'Recent changes testing..R1' } );
		await wiki.runAllJobs();
		const results = await alice.list( 'recentchanges', { rctype: 'edit', rctitle: title } );

		assert.equal( results[ 0 ].type, 'edit' );
		assert.sameTitle( results[ 0 ].title, title );
		assert.equal( results[ 0 ].pageid, rev1.pageid );
		assert.equal( results[ 0 ].revid, rev1.newrevid );
	} );
} );