admin tests: refactor

pull/5812/merge^2
webzwo0i 2023-07-01 17:59:59 +02:00
parent 9089b8b973
commit 8ddc26b7af
1 changed files with 67 additions and 36 deletions

View File

@ -18,96 +18,127 @@ describe('Plugins page', function () {
// create a new pad before each test run
beforeEach(async function () {
helper.newAdmin('plugins');
// menu is plugins, settings, help - so at least three entries atm
await helper.waitForPromise(
() => helper.admin$ && helper.admin$('.menu').find('li').length >= 3, 30000);
});
it('Lists some plugins', async function () {
it('Lists some plugins assuming more than 50 available plugins', async function () {
await helper.waitForPromise(() => helper.admin$('.results').children().length > 50, 20000);
});
it('Searches for plugin', async function () {
it('Searches for plugin ep_font_color', async function () {
helper.admin$('#search-query').val('ep_font_color');
await helper.waitForPromise(() => helper.admin$('.results').children().length > 0, 10000);
await helper.waitForPromise(() => helper.admin$('.results').children().length < 300, 10000);
// multiple packages may be found
await helper.waitForPromise(() => helper.admin$('.results').children().length < 20, 10000);
await helper.waitForPromise(() => helper.admin$('.results .ep_font_color').length === 1, 10000);
});
it('Attempt to Update a plugin', async function () {
it('Second search for ep_font_size does not return old result', async function () {
helper.admin$('#search-query').val('ep_font_size');
await helper.waitForPromise(() => helper.admin$('.results').children().length > 0, 10000);
// multiple packages may be found
await helper.waitForPromise(() => helper.admin$('.results').children().length < 20, 10000);
await helper.waitForPromise(() => helper.admin$('.results .ep_font_size').length === 1, 10000);
await helper.waitForPromise(() => helper.admin$('.results .ep_font_color').length === 0, 10000);
});
it('Searches for plugins ep_font_ (partial match)', async function () {
helper.admin$('#search-query').val('ep_font');
await helper.waitForPromise(() => helper.admin$('.results').children().length > 0, 10000);
// multiple packages may be found
await helper.waitForPromise(() => helper.admin$('.results').children().length < 50, 10000);
await helper.waitForPromise(() => helper.admin$('.results .ep_font_size').length === 1, 10000);
await helper.waitForPromise(() => helper.admin$('.results .ep_font_color').length === 1, 10000);
});
it('Attempt to Update a plugin (minor version update)', async function () {
this.timeout(280000);
// available plugin list should load
await helper.waitForPromise(() => helper.admin$('.results').children().length > 50, 20000);
if (helper.admin$('.ep_align').length === 0) this.skip();
// ep_align should be installed (via step in workflow)
await helper.waitForPromise(() => helper.admin$('#installed-plugins .ep_align').length >= 1, 10000);
let latestVersion;
await helper.waitForPromise(
() => helper.admin$('.ep_align .version').text().split('.').length >= 2);
() => {
latestVersion = helper.admin$('#installed-plugins .ep_align .version').text();
return latestVersion === '0.2.27';
}
);
const minorVersionBefore =
parseInt(helper.admin$('.ep_align .version').text().split('.')[1]);
parseInt(latestVersion.split('.')[1]);
if (!minorVersionBefore) {
throw new Error('Unable to get minor number of plugin, is the plugin installed?');
}
await helper.waitForPromise(
() => helper.admin$('#installed-plugins .ep_align .do-update').length === 1);
if (minorVersionBefore !== 2) this.skip();
helper.waitForPromise(
() => helper.admin$('.ep_align .do-update').length === 1);
await timeout(500); // HACK! Please submit better fix..
const $doUpdateButton = helper.admin$('.ep_align .do-update');
$doUpdateButton.click();
helper.admin$('#installed-plugins .ep_align .do-update').click();
// ensure its showing as Updating
// this assumes that updating will take some time, so there is a message showing up
// in the mean time
await helper.waitForPromise(
() => helper.admin$('.ep_align .message').text() === 'Updating');
() => {
const message = helper.admin$('#installed-plugins .ep_align .message').text();
return message === 'Updating';
}, 120000)
// Ensure it's a higher minor version IE 0.3.x as 0.2.x was installed
// Coverage for https://github.com/ether/etherpad-lite/issues/4536
await helper.waitForPromise(() => parseInt(helper.admin$('.ep_align .version')
await helper.waitForPromise(() => parseInt(helper.admin$('#installed-plugins .ep_align .version')
.text()
.split('.')[1]) > minorVersionBefore, 60000, 1000);
// allow 50 seconds, check every 1 second.
// ensure it's the latest version
await helper.waitForPromise(
() => helper.admin$('.ep_align .do-update').length === 0);
});
it('Attempt to Install a plugin', async function () {
this.timeout(280000);
helper.admin$('#search-query').val('ep_headings2');
await helper.waitForPromise(() => helper.admin$('.results').children().length < 300, 6000);
await helper.waitForPromise(() => helper.admin$('.results').children().length > 0, 6000);
// skip if we already have ep_headings2 installed..
if (helper.admin$('.ep_headings2 .do-install').is(':visible') === false) this.skip();
await helper.waitForPromise(() => helper.admin$('.results').children().length > 0, 10000);
await helper.waitForPromise(() => helper.admin$('.results').children().length < 50, 10000);
helper.admin$('.ep_headings2 .do-install').click();
// ensure install has attempted to be started
await helper.waitForPromise(
() => helper.admin$('.ep_headings2 .do-install').length !== 0, 120000);
() => helper.admin$('.ep_headings2 .do-install').length > 0, 120000);
// ensure its not showing installing any more
await helper.waitForPromise(
() => helper.admin$('.ep_headings2 .message').text() === '', 180000);
// ensure uninstall button is visible
await helper.waitForPromise(
() => helper.admin$('.ep_headings2 .do-uninstall').length !== 0, 120000);
() => helper.admin$('#installed-plugins .ep_headings2 .do-uninstall').length > 0, 120000);
});
it('Attempt to Uninstall a plugin', async function () {
this.timeout(360000);
await helper.waitForPromise(
() => helper.admin$('.ep_headings2 .do-uninstall').length !== 0, 120000);
this.timeout(280000);
helper.admin$('.ep_headings2 .do-uninstall').click();
await helper.waitForPromise(
() => helper.admin$('#installed-plugins .ep_headings2 .do-uninstall').length > 0, 120000);
helper.admin$('#installed-plugins .ep_headings2 .do-uninstall').click();
// ensure its showing uninstalling
// this assumes that uninstalling will take some time, so there is a message showing up
// in the mean time
await helper.waitForPromise(
() => helper.admin$('.ep_headings2 .message')
() => helper.admin$('#installed-plugins .ep_headings2 .message')
.text() === 'Uninstalling', 120000);
// ensure its gone
await helper.waitForPromise(
() => helper.admin$('.ep_headings2').length === 0, 240000);
await helper.waitForPromise(() => helper.admin$('#installed-plugins .ep_headings2').length === 0, 200000);
// ensure search still works
helper.admin$('#search-query').val('ep_font');
await helper.waitForPromise(() => helper.admin$('.results').children().length < 300, 240000);
await helper.waitForPromise(() => helper.admin$('.results').children().length < 50, 240000);
await helper.waitForPromise(() => helper.admin$('.results').children().length > 0, 1000);
await helper.waitForPromise(() => helper.admin$('.results .ep_font_size').length === 1, 10000);
await helper.waitForPromise(() => helper.admin$('.results .ep_font_color').length === 1, 10000);
});
});