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'),
|
2016-06-30 14:18:10 +00:00
|
|
|
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';
|
2015-11-19 18:28:43 +00:00
|
|
|
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();
|
2015-11-29 16:41:28 +00:00
|
|
|
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,
|
2016-06-30 14:18:10 +00:00
|
|
|
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);
|
2015-11-29 16:41:28 +00:00
|
|
|
|
|
|
|
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',
|
2016-01-19 10:28:27 +00:00
|
|
|
size: '1gb',
|
2015-11-19 18:28:43 +00:00
|
|
|
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 () {
|
|
|
|
cloudron.setAliases(owner, ['admin', 'mail']);
|
|
|
|
});
|
|
|
|
|
2016-06-24 15:52:38 +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
|
|
|
|
2016-06-24 15:52:38 +00:00
|
|
|
it('did receive mail', function (done) {
|
|
|
|
cloudron.checkMail(owner, done);
|
|
|
|
});
|
2016-05-19 02:34:12 +00:00
|
|
|
|
2016-06-24 15:52:38 +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 15:52:38 +00:00
|
|
|
});
|
2016-06-24 02:47:49 +00:00
|
|
|
|
2016-06-24 15:52:38 +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'),
|
2016-06-24 15:52:38 +00:00
|
|
|
body: /This release depends on you/
|
|
|
|
}, done);
|
|
|
|
});
|
2016-06-24 05:03:26 +00:00
|
|
|
|
2016-06-24 15:52:38 +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
|
2016-06-24 15:52:38 +00:00
|
|
|
it('can send email to alias', function (done) {
|
|
|
|
mailer.sendMailToCloudronUser('admin@' + box.domain, done);
|
|
|
|
});
|
2016-06-24 15:39:34 +00:00
|
|
|
|
2016-06-24 15:52:38 +00:00
|
|
|
it('did receive mail as alias (using owner name creds)', function (done) {
|
|
|
|
cloudron.checkMail(_.extend(owner, { to: 'admin' }), 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-06-24 23:12:08 +00:00
|
|
|
cloudron.sendMail(_.extend(owner, { from: 'admin' }), 'test+' + cloudron.fqdn() + '@cloudron.io', done);
|
|
|
|
});
|
|
|
|
|
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()),
|
|
|
|
from: common.regexp('admin@' + cloudron.fqdn()),
|
|
|
|
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-06-24 15:52:38 +00:00
|
|
|
cloudron.checkMail({ username: 'admin', password: owner.password, to: 'admin' }, done);
|
2015-06-16 19:00:46 +00:00
|
|
|
});
|
|
|
|
|
2016-06-24 15:52:38 +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
|
|
|
|
2016-06-24 15:52:38 +00:00
|
|
|
it('can populate the addons', function () {
|
|
|
|
cloudron.populateAddons(cloudron.appFqdn(location));
|
|
|
|
});
|
2016-06-24 15:39:34 +00:00
|
|
|
|
2016-06-24 15:52:38 +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 () {
|
2016-04-05 00:02:21 +00:00
|
|
|
appStore.restore(box.id, backupInfo.id);
|
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 () {
|
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-08 03:51:51 +00:00
|
|
|
if (ip === box.staticIp) return;
|
2015-07-27 19:34:56 +00:00
|
|
|
|
2016-09-08 03:51:51 +00:00
|
|
|
console.log('waiting for local dns to change from %s to %s', ip, box.staticIp);
|
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);
|
|
|
|
});
|
|
|
|
|
2016-06-24 15:52:38 +00:00
|
|
|
// 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 15:52:38 +00:00
|
|
|
});
|
2016-06-24 02:47:49 +00:00
|
|
|
|
2016-06-24 15:52:38 +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) {
|
|
|
|
mailer.sendMailToCloudronUser('admin@' + box.domain, done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('did receive mail as alias (using owner name creds)', function (done) {
|
|
|
|
cloudron.checkMail(_.extend(owner, { to: 'admin' }), done);
|
|
|
|
});
|
|
|
|
|
2016-06-25 16:35:52 +00:00
|
|
|
it('can send mail as alias', function (done) {
|
2016-06-24 23:14:53 +00:00
|
|
|
cloudron.sendMail(_.extend(owner, { from: 'admin' }), 'test+' + cloudron.fqdn() + '@cloudron.io', done);
|
|
|
|
});
|
|
|
|
|
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()),
|
|
|
|
from: common.regexp('admin@' + cloudron.fqdn()),
|
|
|
|
to: common.regexp('test+' + cloudron.fqdn() + '@cloudron.io'),
|
|
|
|
body: /This release depends on you/
|
|
|
|
}, done);
|
|
|
|
});
|
|
|
|
|
2016-06-24 15:52:38 +00:00
|
|
|
it('wait for app', function () {
|
|
|
|
cloudron.waitForApp(appId);
|
|
|
|
});
|
2015-06-16 19:00:46 +00:00
|
|
|
|
2016-06-24 15:52:38 +00:00
|
|
|
it('can check the addons', function () {
|
|
|
|
cloudron.checkAddons(cloudron.appFqdn(location), owner);
|
|
|
|
});
|
2015-06-16 19:00:46 +00:00
|
|
|
|
2016-06-24 15:52:38 +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);
|
|
|
|
});
|
|
|
|
});
|