#!/usr/bin/env node /* jshint esversion: 8 */ /* global describe */ /* global before */ /* global after */ /* global it */ /* global xit */ 'use strict'; require('chromedriver'); const execSync = require('child_process').execSync, expect = require('expect.js'), superagent = require('superagent'), path = require('path'), timers = require('timers/promises'), { Builder, By, until } = require('selenium-webdriver'), { Options } = require('selenium-webdriver/chrome'); describe('Application life cycle test', function () { this.timeout(0); const LOCATION = 'test'; const TEST_TIMEOUT = 30000; const FOLDER = 'xmf'; // keep this small. long folder names fail in automation, not sure why const SYNC_PORT = 22001; const EXEC_ARGS = { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }; let browser, app; const username = 'admin', password = 'changeme'; before(function () { browser = new Builder().forBrowser('chrome').setChromeOptions(new Options().windowSize({ width: 1280, height: 1024 })).build(); }); after(function () { browser.quit(); }); function getAppInfo() { const inspect = JSON.parse(execSync('cloudron inspect')); app = inspect.apps.filter(function (a) { return a.location.indexOf(LOCATION) === 0; })[0]; expect(app).to.be.an('object'); } async function waitForElement(elem) { await browser.wait(until.elementLocated(elem), TEST_TIMEOUT); await browser.wait(until.elementIsVisible(browser.findElement(elem)), TEST_TIMEOUT); } async function invalidPassword() { const result = await superagent.get('https://' + app.fqdn).auth(username, password + 'x').ok(() => true); expect(result.statusCode).to.eql(401); } async function loadPage() { await browser.manage().deleteAllCookies(); await browser.sleep(5000); await browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn); await browser.get('https://' + app.fqdn); await browser.sleep(5000); await browser.get('https://' + app.fqdn); await waitForElement(By.xpath('//span[text()="Actions"]')); } async function addFolder() { await browser.get('https://' + app.fqdn); await browser.findElement(By.css('[ng-click*=addFolder]')).click(); await waitForElement(By.id('folderPath')); await browser.sleep(4000); // wait more, not sure why this is needed await browser.findElement(By.id('folderLabel')).sendKeys(FOLDER); await browser.sleep(4000); // without this sometimes only part of the folder name gets through await browser.findElement(By.css('[ng-click*=saveFolder]')).click(); await browser.wait(until.elementLocated(By.css('#folders .panel-status span[ng-switch-when=unshared]')), TEST_TIMEOUT); await browser.sleep(4000); } async function checkFolder() { await browser.get('https://' + app.fqdn); await browser.sleep(5000); await browser.get('https://' + app.fqdn); await browser.wait(until.elementLocated(By.xpath(`//span[text()="${FOLDER}"]`)), TEST_TIMEOUT); } xit('build app', function () { execSync('cloudron build', EXEC_ARGS); }); it('install app', async function () { execSync('cloudron install --port-bindings SYNC_PORT=' + SYNC_PORT + ' --location ' + LOCATION, EXEC_ARGS); await timers.setTimeout(30000); }); it('can get app information', getAppInfo); it('fails with invalid password', invalidPassword); it('can load page', loadPage); it('can add folder', addFolder); it('backup app', async function () { execSync('cloudron backup create --app ' + app.id, EXEC_ARGS); await timers.setTimeout(30000); }); it('restore app', async function () { await browser.get('about:blank'); execSync('cloudron restore --app ' + app.id, EXEC_ARGS); await timers.setTimeout(30000); }); it('can load page', loadPage); it('can check folder', checkFolder); it('move to different location', async function () { await browser.get('about:blank'); execSync(`cloudron configure --location ${LOCATION}2 --app ${app.id}`, EXEC_ARGS); await timers.setTimeout(30000); }); it('can get app information', getAppInfo); it('can load page', loadPage); it('can check folder', checkFolder); it('uninstall app', async function () { await browser.get('about:blank'); execSync('cloudron uninstall --app ' + app.id, EXEC_ARGS); }); // test update it('can install app', async function () { execSync('cloudron install --port-bindings SYNC_PORT=' + SYNC_PORT + ' --appstore-id net.syncthing.cloudronapp2 --location ' + LOCATION, EXEC_ARGS); await timers.setTimeout(30000); }); it('can get app information', getAppInfo); it('can load page', loadPage); it('can add folder', addFolder); it('can update', async function () { await browser.get('about:blank'); execSync('cloudron update --app ' + LOCATION, EXEC_ARGS); await timers.setTimeout(30000); }); it('can check folder', checkFolder); it('uninstall app', async function () { await browser.get('about:blank'); execSync('cloudron uninstall --app ' + app.id, EXEC_ARGS); }); });