syncthing-app/test/test.js

203 lines
7.3 KiB
JavaScript
Raw Normal View History

2017-05-05 11:19:38 +00:00
#!/usr/bin/env node
'use strict';
2018-04-07 00:02:37 +00:00
require('chromedriver');
2017-05-05 11:19:38 +00:00
var execSync = require('child_process').execSync,
expect = require('expect.js'),
2018-02-27 02:07:00 +00:00
superagent = require('superagent'),
2017-05-05 11:19:38 +00:00
path = require('path'),
webdriver = require('selenium-webdriver');
var by = webdriver.By,
until = webdriver.until;
var accessKey = 'admin',
secretKey = 'secretkey';
var bucket_prefix = 'bucket',
bucket_id = 0,
bucket;
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
describe('Application life cycle test', function () {
this.timeout(0);
var chrome = require('selenium-webdriver/chrome');
var server, browser = new chrome.Driver();
2018-02-26 22:44:26 +00:00
var username = 'admin', password = 'changeme';
2017-05-05 11:19:38 +00:00
before(function (done) {
var seleniumJar= require('selenium-server-standalone-jar');
var SeleniumServer = require('selenium-webdriver/remote').SeleniumServer;
server = new SeleniumServer(seleniumJar.path, { port: 4444 });
server.start();
done();
});
after(function (done) {
browser.quit();
server.stop();
done();
});
2017-06-10 09:33:48 +00:00
var LOCATION = 'test';
2017-05-08 09:47:39 +00:00
var TEST_TIMEOUT = 30000;
2018-05-02 20:33:07 +00:00
var FOLDER = 'xmf'; // keep this small. long folder names fail in automation, not sure why
2017-05-08 09:47:39 +00:00
var SYNC_PORT = 22001;
2017-05-05 11:19:38 +00:00
var app;
2018-02-27 00:56:42 +00:00
function installApp() {
execSync('cloudron install --new --wait --port-bindings SYNC_PORT=' + SYNC_PORT + ' --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
}
2017-05-23 19:45:05 +00:00
function pageLoaded() {
return browser.wait(until.titleMatches(/[0-9a-f]{12} \| Syncthing/), TEST_TIMEOUT);
2017-05-05 11:19:38 +00:00
}
2017-05-23 19:45:05 +00:00
function visible(selector) {
2017-05-05 11:19:38 +00:00
return browser.wait(until.elementLocated(selector), TEST_TIMEOUT).then(function () {
2017-05-23 19:45:05 +00:00
return browser.wait(until.elementIsVisible(browser.findElement(selector)), TEST_TIMEOUT);
2017-05-05 11:19:38 +00:00
});
}
2018-02-27 02:07:00 +00:00
function invalidPassword(callback) {
superagent.get('https://' + app.fqdn).auth(username, password + 'x').end(function (error, result) {
expect(result.status).to.eql(401);
callback();
});
}
2017-05-08 09:47:39 +00:00
function loadPage(callback) {
2017-07-20 17:11:35 +00:00
browser.manage().deleteAllCookies().then(function () {
2017-08-08 16:22:39 +00:00
return browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn).then(function () {
return browser.get('https://' + app.fqdn);
});
2017-07-20 17:11:35 +00:00
}).then(function () {
return pageLoaded();
}).then(function () {
2017-05-08 09:47:39 +00:00
callback();
2017-05-05 11:19:38 +00:00
});
}
2017-05-08 09:47:39 +00:00
function addFolder(callback) {
2018-02-27 00:56:42 +00:00
browser.get('https://' + app.fqdn).then(function () {
2017-07-20 17:11:35 +00:00
return browser.findElement(by.css('[ng-click*=addFolder]')).click();
}).then(function () {
return visible(by.id('folderPath'));
2018-05-02 20:33:07 +00:00
}).then(function () {
return browser.sleep(4000); // wait more, not sure why this is needed
2017-07-20 17:11:35 +00:00
}).then(function() {
2018-02-27 00:56:42 +00:00
return browser.findElement(by.id('folderLabel')).sendKeys(FOLDER);
2018-05-02 20:33:07 +00:00
}).then(function () {
return browser.sleep(4000); // without this sometimes only part of the folder name gets through
2017-07-20 17:11:35 +00:00
}).then(function() {
return browser.findElement(by.css('[ng-click*=saveFolder]')).click();
}).then(function() {
return browser.wait(until.elementLocated(by.css('#folders .panel-status span[ng-switch-when=unshared]')), TEST_TIMEOUT);
2018-05-02 20:33:07 +00:00
}).then(function () {
return browser.sleep(4000);
2017-07-20 17:11:35 +00:00
}).then(function() {
callback();
2017-05-05 11:19:38 +00:00
});
}
2018-02-27 00:56:42 +00:00
function checkFolder(callback) {
browser.get('https://' + app.fqdn).then(function () {
2018-05-02 20:22:27 +00:00
return browser.wait(until.elementLocated(by.xpath(`//span[text()="${FOLDER}"]`)), TEST_TIMEOUT);
2018-02-27 00:56:42 +00:00
}).then(function () {
callback();
});
}
2017-05-08 09:47:39 +00:00
function removeFolder(callback) {
2018-02-27 00:56:42 +00:00
browser.get('https://' + app.fqdn).then(function () {
2017-07-20 17:11:35 +00:00
return pageLoaded();
}).then(function() {
return browser.findElement(by.css('#folders button')).click();
}).then(function () {
2018-02-27 00:56:42 +00:00
return browser.sleep(3000); //No way to check for visibility of angular-js components
2017-07-20 17:11:35 +00:00
}).then(function () {
return browser.findElement(by.css('#folder-0 button[ng-click*=editFolder]')).click();
}).then(function () {
2018-02-27 00:56:42 +00:00
return browser.sleep(3000); //No way to check for visibility of angular-js components
}).then(function () {
return browser.findElement(by.xpath('//button[@data-target="#remove-folder-confirmation"]')).click();
}).then(function () {
return browser.sleep(3000); //No way to check for visibility of angular-js components
2017-07-20 17:11:35 +00:00
}).then(function () {
return browser.findElement(by.css('[ng-click*=deleteFolder]')).click();
}).then(function () {
2018-02-27 00:56:42 +00:00
return browser.sleep(3000); //This needs to run for some time
2017-07-20 17:11:35 +00:00
}).then(function () {
callback();
2017-05-05 11:19:38 +00:00
});
}
xit('build app', function () {
execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
});
2018-02-27 00:56:42 +00:00
it('install app', installApp);
2017-05-05 11:19:38 +00:00
it('can get app information', function () {
var inspect = JSON.parse(execSync('cloudron inspect'));
app = inspect.apps.filter(function (a) { return a.location === LOCATION; })[0];
expect(app).to.be.an('object');
});
2018-02-27 02:07:00 +00:00
it('fails with invalid password', invalidPassword);
2017-05-08 09:47:39 +00:00
it('can load page', loadPage);
it('can add folder', addFolder);
2017-05-05 11:19:38 +00:00
it('backup app', function () {
execSync('cloudron backup create --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
});
it('restore app', function () {
execSync('cloudron restore --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
});
2017-05-08 09:47:39 +00:00
it('can load page', loadPage);
2018-02-27 00:56:42 +00:00
it('can check folder', checkFolder);
2017-05-05 11:19:38 +00:00
it('move to different location', function () {
browser.manage().deleteAllCookies();
2017-05-23 19:45:05 +00:00
execSync('cloudron configure --wait --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
2017-05-05 11:19:38 +00:00
var inspect = JSON.parse(execSync('cloudron inspect'));
app = inspect.apps.filter(function (a) { return a.location === LOCATION + '2'; })[0];
expect(app).to.be.an('object');
});
2017-05-23 19:45:05 +00:00
it('can load page', loadPage);
2018-02-27 00:56:42 +00:00
it('can check folder', checkFolder);
2018-02-27 01:16:52 +00:00
it('can remove folder', removeFolder);
2017-05-05 11:19:38 +00:00
it('uninstall app', function () {
execSync('cloudron uninstall --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
});
2018-02-27 00:56:42 +00:00
// test update
it('can install app', function () {
installApp();
var inspect = JSON.parse(execSync('cloudron inspect'));
app = inspect.apps.filter(function (a) { return a.location === LOCATION; })[0];
expect(app).to.be.an('object');
});
it('can load page', loadPage);
it('can add folder', addFolder);
it('can update', function () {
execSync('cloudron install --wait --app ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
});
it('can check folder', checkFolder);
it('uninstall app', function () {
execSync('cloudron uninstall --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
});
2017-05-05 11:19:38 +00:00
});