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

117 lines
3.4 KiB
JavaScript
Raw Normal View History

2015-06-16 19:00:46 +00:00
#!/usr/bin/env node
/*
* 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'),
2015-06-16 19:00:46 +00:00
request = require('superagent-sync'),
2015-06-22 07:14:44 +00:00
sleep = require('sleep').sleep;
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 cloudron, appId, box, backupInfo;
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);
});
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: '512mb',
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);
});
var location = 'test' + (Math.random() * 10000).toFixed();
it('can install app', function () {
2015-06-17 02:13:17 +00:00
var manifest = appStore.getManifest(common.TESTAPP_ID, common.TESTAPP_VERSION);
2015-06-16 19:00:46 +00:00
appId = cloudron.installApp(location, manifest);
});
it('can populate the addons', function () {
var res = request.post('https://' + location + '-' + box.domain + '/populate_addons').end();
assert.strictEqual(res.statusCode, 200);
assert.strictEqual(res.body.mysql, 'OK');
assert.strictEqual(res.body.postgresql, 'OK');
assert.strictEqual(res.body.mongodb, 'OK');
2015-06-17 02:13:17 +00:00
assert.strictEqual(res.body.localstorage, 'OK');
2015-06-16 19:00:46 +00:00
});
it('can check the addons', function () {
2015-10-21 00:53:57 +00:00
cloudron.checkAddons(location, owner);
2015-06-16 19:00:46 +00:00
});
it('can backup the box', function () {
backupInfo = cloudron.backup();
assert.strictEqual(backupInfo.dependsOn.length, 1);
});
it('can restore the box', function () {
appStore.restore(box.id, backupInfo.restoreKey);
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);
2015-09-29 04:02:27 +00:00
if (ip === box.ip) return;
2015-07-27 19:34:56 +00:00
2015-09-29 04:02:27 +00:00
console.log('waiting for local dns to change from %s to %s', ip, box.ip);
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);
});
it('wait for app', function () {
cloudron.waitForApp(appId);
});
it('can check the addons', function () {
2015-10-21 00:53:57 +00:00
cloudron.checkAddons(location, owner);
2015-06-16 19:00:46 +00:00
});
it('can uninstall app', function () {
cloudron.uninstallApp(appId);
});
it('can delete the cloudron', function () {
appStore.deleteCloudron(box);
});
});