mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-03 18:26:16 +00:00
842a91590a
* eslint-config-wikimedia: 0.27.0 → 0.28.2 The following rules are failing and were disabled: * tests/selenium: * implicit-arrow-linebreak * no-mixed-spaces-and-tabs * grunt-banana-checker: 0.11.1 → 0.13.0 * stylelint-config-wikimedia: 0.16.1 → 0.17.2 The following rules no longer exist and were removed: * stylistic/selector-list-comma-newline-after * braces: 3.0.2 → 3.0.3 * https://github.com/advisories/GHSA-grv7-fg5c-xmjg Change-Id: Ia94454c1da778f241085714e1601a0233d547570
138 lines
3.9 KiB
JavaScript
138 lines
3.9 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require( 'assert' ),
|
|
MWBot = require( 'mwbot' ),
|
|
Api = require( 'wdio-mediawiki/Api' ),
|
|
ArticlePageWithOverlay = require( '../support/pages/article_page_with_overlay' ),
|
|
{ ArticlePage, UserLoginPage } = require( '../support/world.js' );
|
|
|
|
const waitForPropagation = async ( timeMs ) => {
|
|
// wait 2 seconds so the change can propogate.
|
|
// Replace this with a more dynamic statement.
|
|
// eslint-disable-next-line wdio/no-pause
|
|
await browser.pause( timeMs );
|
|
};
|
|
|
|
const createPages = ( pages ) => {
|
|
const summary = 'edit by selenium test';
|
|
browser.call( () => {
|
|
const bot = new MWBot();
|
|
return bot.loginGetEditToken( {
|
|
username: browser.options.username,
|
|
password: browser.options.password,
|
|
apiUrl: `${ browser.options.baseUrl }/api.php`
|
|
} )
|
|
.then( () => bot.batch(
|
|
pages.map( ( page ) => [ 'create' ].concat( page ).concat( [ summary ] ) )
|
|
).catch( ( err ) => {
|
|
if ( err.code === 'articleexists' ) {
|
|
return;
|
|
}
|
|
throw err;
|
|
} ) )
|
|
.catch( ( err ) => {
|
|
throw err;
|
|
} );
|
|
} );
|
|
};
|
|
|
|
const createPage = ( title, wikitext ) => {
|
|
browser.call( async () => {
|
|
const bot = await Api.bot();
|
|
await bot.edit( title, wikitext );
|
|
} );
|
|
};
|
|
|
|
const iAmUsingTheMobileSite = async () => {
|
|
await ArticlePage.setMobileMode();
|
|
};
|
|
|
|
const iAmInBetaMode = () => {
|
|
ArticlePage.setBetaMode();
|
|
};
|
|
|
|
const iAmOnPage = async ( article ) => {
|
|
await ArticlePage.open( article );
|
|
// Make sure the article opened and JS loaded.
|
|
await ArticlePage.waitUntilResourceLoaderModuleReady( 'skins.minerva.scripts' );
|
|
};
|
|
|
|
const iAmLoggedIn = async () => {
|
|
await UserLoginPage.open();
|
|
await UserLoginPage.loginAdmin();
|
|
assert.strictEqual( await ArticlePage.is_authenticated_element.isExisting(), true );
|
|
};
|
|
|
|
const iAmLoggedIntoTheMobileWebsite = async () => {
|
|
await iAmUsingTheMobileSite();
|
|
await iAmLoggedIn();
|
|
};
|
|
|
|
const pageExists = async ( title ) => {
|
|
await browser.call( async () => await createPage( title, 'Page created by Selenium browser test.' )
|
|
);
|
|
// wait 2 seconds so the change can propogate.
|
|
await waitForPropagation( 2000 );
|
|
};
|
|
|
|
const pageExistsWithText = ( title, text ) => {
|
|
browser.call( () => createPage( title, text )
|
|
);
|
|
// wait 2 seconds so the change can propogate.
|
|
waitForPropagation( 2000 );
|
|
};
|
|
|
|
const iAmOnAPageThatDoesNotExist = () => iAmOnPage( `NewPage ${ new Date() }` );
|
|
|
|
const iShouldSeeAToastNotification = async () => {
|
|
await ArticlePage.notification_element.waitForDisplayed();
|
|
};
|
|
|
|
const iShouldSeeAToastNotificationWithMessage = async ( msg ) => {
|
|
await iShouldSeeAToastNotification();
|
|
const notificationBody = await ArticlePage.notification_element.$( '.mw-notification-content' ).getText();
|
|
assert.strictEqual( await notificationBody.includes( msg ), true );
|
|
};
|
|
|
|
const iClickTheBrowserBackButton = async () => {
|
|
await browser.back();
|
|
};
|
|
|
|
const iClickTheOverlayCloseButton = () => {
|
|
waitForPropagation( 2000 );
|
|
ArticlePageWithOverlay.overlay_close_element.waitForDisplayed();
|
|
ArticlePageWithOverlay.overlay_close_element.click();
|
|
};
|
|
|
|
const iSeeAnOverlay = async () => {
|
|
await ArticlePageWithOverlay.overlay_element.waitForDisplayed();
|
|
assert.strictEqual( await ArticlePageWithOverlay.overlay_element.isDisplayed(), true );
|
|
};
|
|
|
|
const iDoNotSeeAnOverlay = async () => {
|
|
await waitForPropagation( 5000 );
|
|
await browser.waitUntil(
|
|
async () => !( await ArticlePageWithOverlay.overlay_element.isDisplayed() )
|
|
);
|
|
assert.strictEqual( await ArticlePageWithOverlay.overlay_element.isDisplayed(), false );
|
|
};
|
|
|
|
const iAmUsingMobileScreenResolution = async () => {
|
|
await browser.setWindowSize( 320, 480 );
|
|
};
|
|
|
|
module.exports = {
|
|
waitForPropagation,
|
|
iAmUsingMobileScreenResolution,
|
|
iSeeAnOverlay, iDoNotSeeAnOverlay,
|
|
iClickTheOverlayCloseButton,
|
|
iClickTheBrowserBackButton,
|
|
createPage, createPages,
|
|
pageExistsWithText,
|
|
pageExists, iAmOnAPageThatDoesNotExist, iShouldSeeAToastNotification,
|
|
iShouldSeeAToastNotificationWithMessage,
|
|
iAmLoggedIntoTheMobileWebsite,
|
|
iAmUsingTheMobileSite,
|
|
iAmLoggedIn, iAmOnPage, iAmInBetaMode
|
|
};
|