Asyncify tests
This commit is contained in:
parent
1bd952c9f9
commit
c11b32c15b
139
test/test.js
139
test/test.js
|
@ -46,129 +46,74 @@ describe('Application life cycle test', function () {
|
||||||
expect(app).to.be.an('object');
|
expect(app).to.be.an('object');
|
||||||
}
|
}
|
||||||
|
|
||||||
function exists(selector) {
|
|
||||||
return browser.wait(until.elementLocated(selector), TEST_TIMEOUT);
|
|
||||||
}
|
|
||||||
|
|
||||||
function visible(selector) {
|
|
||||||
return exists(selector).then(function () {
|
|
||||||
return browser.wait(until.elementIsVisible(browser.findElement(selector)), TEST_TIMEOUT);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function baseUrl() {
|
function baseUrl() {
|
||||||
if (app.manifest.version === '1.4.0') return `https://${app.fqdn}/p`;
|
if (app.manifest.version === '1.4.0') return `https://${app.fqdn}/p`;
|
||||||
return `https://${app.fqdn}`;
|
return `https://${app.fqdn}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
// we do this because it perm redirects to /p/ in old versions
|
async function waitForElement(elem) {
|
||||||
function clearCache() {
|
await browser.wait(until.elementLocated(elem), TEST_TIMEOUT);
|
||||||
// https://stackoverflow.com/questions/49614217/selenium-clear-chrome-cache
|
await browser.wait(until.elementIsVisible(browser.findElement(elem)), TEST_TIMEOUT);
|
||||||
// defaut clearance is 1 hour of cache
|
|
||||||
return browser.get('chrome://settings/clearBrowserData').then(function () {
|
|
||||||
return visible(By.css('* /deep/ #clearBrowsingDataConfirm'));
|
|
||||||
}).then(function () {
|
|
||||||
return browser.findElement(By.css('* /deep/ #clearBrowsingDataConfirm')).click();
|
|
||||||
}).then(function () {
|
|
||||||
return browser.sleep(5000);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function login(password, callback) {
|
async function login(password) {
|
||||||
browser.get('https://' + app.fqdn).then(function () {
|
await browser.get('https://' + app.fqdn);
|
||||||
return visible(By.id('loginButton'));
|
await waitForElement(By.id('loginButton'));
|
||||||
}).then(function () {
|
await browser.findElement(By.id('username')).sendKeys(username);
|
||||||
return browser.findElement(By.id('username')).sendKeys(username);
|
await browser.findElement(By.id('passwordPlain')).sendKeys(password);
|
||||||
}).then(function () {
|
await browser.findElement(By.id('loginButton')).click();
|
||||||
return browser.findElement(By.id('passwordPlain')).sendKeys(password);
|
await waitForElement(By.id('btn-subscription'));
|
||||||
}).then(function () {
|
|
||||||
return browser.findElement(By.id('loginButton')).click();
|
|
||||||
}).then(function () {
|
|
||||||
return browser.wait(until.elementLocated(By.id('dropdown-configure')), TEST_TIMEOUT);
|
|
||||||
}).then(function () {
|
|
||||||
callback();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function logout(callback) {
|
async function logout() {
|
||||||
var logout_btn = By.xpath('//li/a[@class="signout"]');
|
var logout_btn = By.xpath('//li/a[@class="signout"]');
|
||||||
|
|
||||||
browser.get('https://' + app.fqdn).then(function () {
|
await browser.get('https://' + app.fqdn);
|
||||||
return visible(By.id('stream'));
|
await waitForElement(By.id('stream'));
|
||||||
}).then(function () {
|
await browser.findElement(By.className('dropdown-toggle')).click();
|
||||||
return browser.findElement(By.className('dropdown-toggle')).click();
|
await waitForElement(logout_btn);
|
||||||
}).then(function () {
|
await browser.findElement(logout_btn).click();
|
||||||
return visible(logout_btn);
|
await waitForElement(By.id('loginButton'));
|
||||||
}).then(function () {
|
|
||||||
return browser.findElement(logout_btn).click();
|
|
||||||
}).then(function () {
|
|
||||||
return browser.wait(until.elementLocated(By.id('loginButton')), TEST_TIMEOUT);
|
|
||||||
}).then(function () {
|
|
||||||
callback();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function addSubscription(callback) {
|
async function addSubscription() {
|
||||||
var url = 'https://blog.cloudron.io/rss/';
|
var url = 'https://blog.cloudron.io/rss/';
|
||||||
const addUrl = app.manifest.version === '1.10.0' ? `${baseUrl()}/i/?c=subscription` : `${baseUrl()}/i/?c=subscription&a=add`;
|
const addUrl = app.manifest.version === '1.10.0' ? `${baseUrl()}/i/?c=subscription` : `${baseUrl()}/i/?c=subscription&a=add`;
|
||||||
|
|
||||||
browser.get(addUrl).then(function () {
|
await browser.get(addUrl);
|
||||||
return visible(By.xpath('//input[@name="url_rss"]'));
|
await waitForElement(By.xpath('//input[@name="url_rss"]'));
|
||||||
}).then(function () {
|
await browser.findElement(By.xpath('//input[@name="url_rss"]')).sendKeys(url);
|
||||||
return browser.findElement(By.xpath('//input[@name="url_rss"]')).sendKeys(url);
|
await browser.findElement(By.xpath('//form[@id="add_rss"]//button[text()="Add"]')).click();
|
||||||
}).then(function () {
|
await waitForElement(By.xpath('//div[@id="notification" and @class="notification good"]'));
|
||||||
return browser.findElement(By.xpath('//button[@type="submit"]/ancestor::form[@id="add_rss"]')).submit();
|
|
||||||
}).then(function () {
|
|
||||||
return visible(By.xpath('//div[@id="notification" and @class="notification good"]'));
|
|
||||||
}).then(function () {
|
|
||||||
callback();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function addUser(password, callback) {
|
async function addUser(password) {
|
||||||
var test_username = 'test';
|
var test_username = 'test';
|
||||||
|
|
||||||
browser.get(`${baseUrl()}/i/?c=user&a=manage`).then(function () {
|
await browser.get(`${baseUrl()}/i/?c=user&a=manage`);
|
||||||
return visible(By.id('new_user_name'));
|
await waitForElement(By.id('new_user_name'));
|
||||||
}).then(function () {
|
await browser.findElement(By.id('new_user_name')).sendKeys(test_username);
|
||||||
return browser.findElement(By.id('new_user_name')).sendKeys(test_username);
|
await browser.findElement(By.id('new_user_passwordPlain')).sendKeys(password);
|
||||||
}).then(function () {
|
await browser.findElement(By.xpath('//button[text()="Create"]')).click();
|
||||||
return browser.findElement(By.id('new_user_passwordPlain')).sendKeys(password);
|
await waitForElement(By.xpath('//div[@id="notification" and @class="notification good"]'));
|
||||||
}).then(function () {
|
|
||||||
return browser.findElement(By.xpath('//button[text()="Create"]')).click();
|
|
||||||
}).then(function () {
|
|
||||||
return visible(By.xpath('//div[@id="notification" and @class="notification good"]'));
|
|
||||||
}).then(function () {
|
|
||||||
callback();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function enableApi(callback) {
|
async function enableApi() {
|
||||||
browser.get(`${baseUrl()}/i/?c=auth`).then(function () {
|
await browser.get(`${baseUrl()}/i/?c=auth`);
|
||||||
return browser.findElement(By.id('api_enabled')).click();
|
await waitForElement(By.id('api_enabled'));
|
||||||
}).then(function () {
|
await browser.findElement(By.id('api_enabled')).click();
|
||||||
return browser.findElement(By.xpath('//button[text()="Submit"]')).click();
|
await browser.findElement(By.xpath('//button[text()="Submit"]')).click();
|
||||||
}).then(function () {
|
|
||||||
callback();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkApiConfiguration(callback) {
|
async function checkApiConfiguration() {
|
||||||
browser.get(`${baseUrl()}/api/`).then(function () {
|
await browser.get(`${baseUrl()}/api/`);
|
||||||
return exists(By.xpath('//dd[@id="greaderOutput" and contains(text(), "PASS")]'));
|
await waitForElement(By.xpath('//dd[@id="greaderOutput" and contains(text(), "PASS")]'));
|
||||||
}).then(function () {
|
await waitForElement(By.xpath('//dd[@id="feverOutput" and contains(text(), "PASS")]'));
|
||||||
return exists(By.xpath('//dd[@id="feverOutput" and contains(text(), "PASS")]'));
|
|
||||||
}).then(function () {
|
|
||||||
callback();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function subscriptionExists(callback) {
|
async function subscriptionExists() {
|
||||||
browser.get(`${baseUrl()}/i/?get=c_1`).then(function () {
|
await browser.get(`${baseUrl()}/i/?get=c_1`);
|
||||||
return visible(By.xpath('//span[text()="Cloudron"]'));
|
return waitForElement(By.xpath('//span[text()="Cloudron"]'));
|
||||||
}).then(function () {
|
|
||||||
callback();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getStaticExtensionFile(callback) {
|
function getStaticExtensionFile(callback) {
|
||||||
|
|
Loading…
Reference in New Issue