wiki.techinc.nl/tests/selenium/specs/page.js
Željko Filipin 0d9b1e699a selenium: Fix 'Page should be editable'
The test was failing because a popup was added to the beta cluster.

Popup text:
Download a browser extension to get new features and help us improve Wikipedia

Bug: T270771
Change-Id: I6ba0026fcaa05610d4a310605f5ff6ae93705bc0
2024-10-08 15:06:39 +00:00

162 lines
4.9 KiB
JavaScript

'use strict';
const BlankPage = require( 'wdio-mediawiki/BlankPage' );
const Api = require( 'wdio-mediawiki/Api' );
const DeletePage = require( '../pageobjects/delete.page' );
const RestorePage = require( '../pageobjects/restore.page' );
const EditPage = require( '../pageobjects/edit.page' );
const HistoryPage = require( '../pageobjects/history.page' );
const UndoPage = require( '../pageobjects/undo.page' );
const ProtectPage = require( '../pageobjects/protect.page' );
const LoginPage = require( 'wdio-mediawiki/LoginPage' );
const Util = require( 'wdio-mediawiki/Util' );
describe( 'Page', () => {
let content, name, bot;
before( async () => {
bot = await Api.bot();
} );
beforeEach( async function () {
await browser.deleteAllCookies();
content = Util.getTestString( 'beforeEach-content-' );
name = Util.getTestString( 'BeforeEach-name-' );
// First try to load a blank page, so the next command works.
await BlankPage.open();
// Don't try to run wikitext-specific tests if the test namespace isn't wikitext by default.
if ( await Util.isTargetNotWikitext( name ) ) {
this.skip();
}
} );
it( 'should be previewable @daily', async () => {
await LoginPage.loginAdmin();
await EditPage.preview( name, content );
await expect( await EditPage.heading ).toHaveText( `Creating ${ name }` );
await expect( await EditPage.displayedContent ).toHaveText( content );
await expect( await EditPage.content ).toBeDisplayed( { message: 'editor is still present' } );
await expect( await EditPage.conflictingContent ).not.toBeDisplayed( { message: 'no edit conflict happened' } );
// T269566: Popup with text
// 'Leave site? Changes that you made may not be saved. Cancel/Leave'
// appears after the browser tries to leave the page with the preview.
await browser.reloadSession();
} );
it( 'should be creatable', async () => {
// create
await LoginPage.loginAdmin();
await EditPage.edit( name, content );
// check
await expect( await EditPage.heading ).toHaveText( name );
await expect( await EditPage.displayedContent ).toHaveText( content );
} );
it( 'should be re-creatable', async () => {
const initialContent = Util.getTestString( 'initialContent-' );
// create and delete
await bot.edit( name, initialContent, 'create for delete' );
await bot.delete( name, 'delete prior to recreate' );
// re-create
await LoginPage.loginAdmin();
await EditPage.edit( name, content );
// check
await expect( await EditPage.heading ).toHaveText( name );
await expect( await EditPage.displayedContent ).toHaveText( content );
} );
it( 'should be editable @daily', async () => {
// create
await bot.edit( name, content, 'create for edit' );
// edit
const editContent = Util.getTestString( 'editContent-' );
await EditPage.edit( name, editContent );
// check
await expect( await EditPage.heading ).toHaveText( name );
await expect( await EditPage.displayedContent ).toHaveTextContaining( editContent );
} );
it( 'should have history @daily', async () => {
// create
await bot.edit( name, content, `created with "${ content }"` );
// check
await HistoryPage.open( name );
await expect( await HistoryPage.comment ).toHaveText( `created with "${ content }"` );
} );
it( 'should be deletable', async () => {
// create
await bot.edit( name, content, 'create for delete' );
// login
await LoginPage.loginAdmin();
// delete
await DeletePage.delete( name, 'delete reason' );
// check
await expect( await DeletePage.displayedContent ).toHaveTextContaining( `"${ name }" has been deleted.` );
} );
it( 'should be restorable', async () => {
// create and delete
await bot.edit( name, content, 'create for delete' );
await bot.delete( name, 'delete for restore' );
// login
await LoginPage.loginAdmin();
// restore
await RestorePage.restore( name, 'restore reason' );
// check
await expect( await RestorePage.displayedContent ).toHaveTextContaining( `${ name } has been undeleted` );
} );
it( 'should be protectable', async () => {
await bot.edit( name, content, 'create for protect' );
// login
await LoginPage.loginAdmin();
await ProtectPage.protect(
name,
'protect reason',
'Allow only administrators'
);
// Logout
await browser.deleteAllCookies();
// Check that we can't edit the page anymore
await EditPage.openForEditing( name );
await expect( await EditPage.save ).not.toExist();
await expect( await EditPage.heading ).toHaveText( `View source for ${ name }` );
} );
it( 'should be undoable @daily', async () => {
// create
await bot.edit( name, content, 'create to edit and undo' );
// edit
const response = await bot.edit( name, Util.getTestString( 'editContent-' ) );
const previousRev = response.edit.oldrevid;
const undoRev = response.edit.newrevid;
await UndoPage.undo( name, previousRev, undoRev );
await expect( await EditPage.displayedContent ).toHaveText( content );
} );
} );