cloudron-e2e-test/test/cloudron-backup-test.js

219 lines
6.9 KiB
JavaScript
Raw Permalink Normal View History

2015-06-16 19:00:46 +00:00
/*
* This tests a flow for the cloudron owner backs up a cloudron.
* The backup is validated and restored from.
*/
'use strict';
var AppStore = require('../appstore.js'),
assert = require('assert'),
Cloudron = require('../cloudron.js'),
2015-06-17 02:13:17 +00:00
common = require('../common.js'),
2015-07-27 19:34:56 +00:00
dnsSync = require('dns-sync'),
2016-06-24 05:03:26 +00:00
ImapProbe = require('../imap-probe.js'),
2016-05-19 01:48:15 +00:00
mailer = require('../mailer.js'),
sleep = require('../shell.js').sleep,
2016-06-24 15:39:34 +00:00
_ = require('underscore');
2015-06-16 19:00:46 +00:00
require('colors');
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
var BOX_VERSION = process.env.BOX_VERSION;
2015-06-16 19:00:46 +00:00
describe('Cloudron backup testing', function () {
this.timeout(0);
var appStore = new AppStore('https://api.staging.cloudron.io');
2015-07-23 20:46:47 +00:00
var owner = common.getOwner();
var admin = common.getAdmin();
2016-06-24 03:06:36 +00:00
var cloudron, appId, box, backupInfo;
2015-06-16 19:00:46 +00:00
2016-06-24 05:03:26 +00:00
var imap = new ImapProbe({
user: process.env.IMAP_USERNAME,
password: process.env.IMAP_PASSWORD,
host: process.env.IMAP_HOST,
port: 993, // imap port
2016-06-24 05:03:26 +00:00
tls: true,
readOnly: true
});
2015-06-16 19:00:46 +00:00
it('can login to the store', function () {
var accessToken = appStore.getAccessToken(owner);
appStore.setCredentials(owner.password, accessToken);
var adminAccessToken = appStore.getAccessToken(admin);
2015-12-18 16:31:22 +00:00
appStore.setAdminCredentials(admin.password, adminAccessToken);
2015-06-16 19:00:46 +00:00
});
it('can create a cloudron', function () {
box = appStore.createCloudron({
2015-06-19 20:06:00 +00:00
domain: common.cloudronDomain(__filename),
2015-06-16 19:00:46 +00:00
region: 'sfo1',
size: '1gb',
version: BOX_VERSION
2015-06-16 19:00:46 +00:00
});
2015-09-29 04:02:27 +00:00
box = appStore.waitForCloudron(box.id);
2015-06-16 19:00:46 +00:00
cloudron = new Cloudron(box);
});
it('can activate the box', function () {
cloudron.activate(owner);
});
it('can login to the box', function () {
var token = cloudron.getOauthToken(owner);
cloudron.setCredentials(owner.password, token);
});
2016-09-01 16:03:27 +00:00
it('can enable email', function () {
cloudron.setEmailEnabled(true);
});
2016-06-24 22:35:26 +00:00
// mail alias tests (do this here because alias takes sometime to propagate)
it('can set aliases', function () {
2016-09-29 04:14:46 +00:00
cloudron.setAliases(['mufti', 'mail']);
2016-06-24 22:35:26 +00:00
});
// mail tests as normal user
it('can send mail to cloudron user', function (done) {
mailer.sendMailToCloudronUser(owner.username + '@' + cloudron.fqdn(), done);
});
2016-05-19 01:48:15 +00:00
it('did receive mail', function (done) {
cloudron.checkMail(owner, done);
});
2016-05-19 02:34:12 +00:00
it('can send mail from cloudron user', function (done) {
2016-06-24 17:02:31 +00:00
cloudron.sendMail(owner, 'test+' + cloudron.fqdn() + '@cloudron.io', done);
});
2016-06-24 02:47:49 +00:00
it('did send mail from cloudron user', function (done) {
imap.probe({
2016-06-24 17:54:03 +00:00
subject: common.regexp('Hi from e2e test - ' + cloudron.fqdn()),
2016-06-24 17:38:26 +00:00
to: common.regexp('test+' + cloudron.fqdn() + '@cloudron.io'),
body: /This release depends on you/
}, done);
});
2016-06-24 05:03:26 +00:00
it('can save a sieve script', function (done) {
cloudron.saveSieveScript(owner, done);
2016-06-24 05:03:26 +00:00
});
2016-06-24 23:14:53 +00:00
// alias tests
it('can send email to alias', function (done) {
2016-09-29 04:14:46 +00:00
mailer.sendMailToCloudronUser('mufti@' + box.domain, done);
});
2016-06-24 15:39:34 +00:00
it('did receive mail as alias (using owner name creds)', function (done) {
2016-09-29 04:14:46 +00:00
cloudron.checkMail(_.extend(owner, { to: 'mufti' }), done);
});
2015-06-16 19:00:46 +00:00
2016-06-25 05:21:54 +00:00
it('can send mail as alias', function (done) {
2016-09-29 04:14:46 +00:00
cloudron.sendMail(_.extend(owner, { from: 'mufti' }), 'test+' + cloudron.fqdn() + '@cloudron.io', done);
2016-06-24 23:12:08 +00:00
});
2016-06-25 05:21:54 +00:00
it('did send mail as cloudron alias', function (done) {
2016-06-24 23:12:08 +00:00
imap.probe({
subject: common.regexp('Hi from e2e test - ' + cloudron.fqdn()),
2016-09-29 04:14:46 +00:00
from: common.regexp('mufti@' + cloudron.fqdn()),
2016-06-24 23:12:08 +00:00
to: common.regexp('test+' + cloudron.fqdn() + '@cloudron.io'),
body: /This release depends on you/
}, done);
});
// this is not implemented. cannot auth using alias
xit('did receive mail to alias (using alias creds)', function (done) {
2016-09-29 04:14:46 +00:00
cloudron.checkMail({ username: 'mufti', password: owner.password, to: 'mufti' }, done);
2015-06-16 19:00:46 +00:00
});
////////////////////////// restore
var location = 'test' + (Math.random() * 10000).toFixed();
it('can install app', function () {
var manifest = appStore.getManifest(common.TESTAPP_ID, common.TESTAPP_VERSION);
appId = cloudron.installApp(location, manifest);
});
2016-06-24 15:39:34 +00:00
it('can populate the addons', function () {
cloudron.populateAddons(cloudron.appFqdn(location));
});
2016-06-24 15:39:34 +00:00
it('can check the addons', function () {
cloudron.checkAddons(cloudron.appFqdn(location), owner);
2015-06-16 19:00:46 +00:00
});
it('can backup the box', function () {
backupInfo = cloudron.backup();
2016-04-20 22:32:57 +00:00
assert.strictEqual(backupInfo.dependsOn.length, 1);
2015-06-16 19:00:46 +00:00
});
it('can restore the box', function () {
2017-04-24 18:48:50 +00:00
appStore.restore(box.id, backupInfo.id + '.tar.gz.enc');
2015-09-29 04:02:27 +00:00
box = appStore.waitForCloudron(box.id);
2015-06-16 19:00:46 +00:00
});
2015-07-27 19:34:56 +00:00
it('wait for local dns', function () {
2016-09-20 09:09:14 +00:00
var expectedIp = box.ip;
2016-09-09 09:58:39 +00:00
2015-07-27 20:16:19 +00:00
for (var i = 0; i < 50; i++) {
2015-07-27 19:34:56 +00:00
var ip = dnsSync.resolve(box.domain);
2016-09-09 09:58:39 +00:00
if (ip === expectedIp) return;
2015-07-27 19:34:56 +00:00
2016-09-20 09:09:14 +00:00
console.log('waiting for local dns to change from %s to %s', ip, expectedIp);
2015-07-27 19:34:56 +00:00
sleep(30);
}
2015-06-16 19:00:46 +00:00
});
it('can login to cloudron', function () {
var token = cloudron.getOauthToken(owner);
cloudron.setCredentials(owner.password, token);
});
// mail tests as normal user
it('retains old mail', function (done) {
2016-06-24 23:14:53 +00:00
cloudron.checkMail(owner, done);
});
2016-06-24 02:47:49 +00:00
it('can check sieve script', function (done) {
cloudron.checkSieveScript(owner, done);
2016-06-24 02:47:49 +00:00
});
2016-06-24 23:14:53 +00:00
// alias tests continue to work after restore
it('can send email to alias', function (done) {
2016-09-29 04:14:46 +00:00
mailer.sendMailToCloudronUser('mufti@' + box.domain, done);
2016-06-24 23:14:53 +00:00
});
it('did receive mail as alias (using owner name creds)', function (done) {
2016-09-29 04:14:46 +00:00
cloudron.checkMail(_.extend(owner, { to: 'mufti' }), done);
2016-06-24 23:14:53 +00:00
});
2016-06-25 16:35:52 +00:00
it('can send mail as alias', function (done) {
2016-09-29 04:14:46 +00:00
cloudron.sendMail(_.extend(owner, { from: 'mufti' }), 'test+' + cloudron.fqdn() + '@cloudron.io', done);
2016-06-24 23:14:53 +00:00
});
2016-06-25 16:35:52 +00:00
it('did send mail as cloudron alias', function (done) {
2016-06-24 23:14:53 +00:00
imap.probe({
subject: common.regexp('Hi from e2e test - ' + cloudron.fqdn()),
2016-09-29 04:14:46 +00:00
from: common.regexp('mufti@' + cloudron.fqdn()),
2016-06-24 23:14:53 +00:00
to: common.regexp('test+' + cloudron.fqdn() + '@cloudron.io'),
body: /This release depends on you/
}, done);
});
it('wait for app', function () {
cloudron.waitForApp(appId);
});
2015-06-16 19:00:46 +00:00
it('can check the addons', function () {
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
2015-06-16 19:00:46 +00:00
it('can uninstall app', function () {
cloudron.uninstallApp(appId);
2015-06-16 19:00:46 +00:00
});
it('can delete the cloudron', function () {
appStore.deleteCloudron(box);
});
});