cloudron-e2e-test/test/new-user-test.js

119 lines
3.5 KiB
JavaScript
Raw Normal View History

2015-06-14 04:33:42 +00:00
#!/usr/bin/env node
/*
* This tests a flow for cloudron owner creating a cloudron
* from the appstore. Owner creates a cloudron, activates
* it, installs and app and deletes the cloudron eventually
*/
2015-06-14 04:33:42 +00:00
'use strict';
2015-06-15 04:15:49 +00:00
var AppStore = require('../appstore.js'),
async = require('async'),
2015-06-15 04:15:49 +00:00
Cloudron = require('../cloudron.js'),
2015-06-22 06:57:13 +00:00
common = require('../common.js'),
2015-06-14 04:33:42 +00:00
request = require('superagent-sync'),
2015-06-22 07:14:44 +00:00
semver = require('semver');
2015-06-14 04:33:42 +00:00
require('colors');
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
2015-06-16 03:50:39 +00:00
describe('Appstore new user flow', function () {
2015-06-14 04:33:42 +00:00
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-06-15 04:15:49 +00:00
var res, latestVersion, cloudron, appId, box;
2015-06-14 04:33:42 +00:00
it('can query versions', function () {
res = request.get('https://s3.amazonaws.com/staging-cloudron-releases/versions.json').end();
2015-06-19 20:06:00 +00:00
common.verifyResponse(res);
2015-06-14 04:33:42 +00:00
var boxVersions = Object.keys(res.body).sort(semver.rcompare);
2015-06-15 04:15:49 +00:00
latestVersion = boxVersions[0];
2015-06-14 04:33:42 +00:00
});
it('can login to the store', function () {
var accessToken = appStore.getAccessToken(owner);
appStore.setCredentials(owner.password, accessToken);
});
2015-09-24 11:24:22 +00:00
it('can get profile', function () {
var profile = appStore.getProfile();
owner.id = profile.id;
});
it('can setup billing details', function (done) {
2015-09-24 11:24:22 +00:00
appStore.setupBilling(owner, done);
});
2015-06-14 04:33:42 +00:00
it('can create a cloudron', function () {
box = appStore.createCloudron({
2015-06-20 18:47:59 +00:00
domain: common.cloudronDomain(__filename),
2015-06-14 04:33:42 +00:00
zoneName: 'smartserver.io',
region: 'sfo1',
size: '512mb',
2015-06-15 04:15:49 +00:00
version: latestVersion
2015-06-14 04:33:42 +00:00
});
2015-09-29 04:02:27 +00:00
box = appStore.waitForCloudron(box.id);
2015-06-14 04:33:42 +00:00
cloudron = new Cloudron(box);
});
it('has setup DNS records correctly', function (done) {
async.series([
2015-09-30 00:32:21 +00:00
cloudron.checkA.bind(cloudron),
2015-09-29 01:44:35 +00:00
cloudron.checkSPF.bind(cloudron),
cloudron.checkDKIM.bind(cloudron),
2015-09-29 03:21:50 +00:00
cloudron.checkDMARC.bind(cloudron)
], done);
});
2015-06-14 04:33:42 +00:00
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 = 'haste' + (Math.random() * 10000).toFixed();
it('can install app', function () {
2015-07-18 00:53:03 +00:00
var manifest = appStore.getManifest('com.hastebin.cloudronapp', '0.1.1');
2015-06-14 04:33:42 +00:00
appId = cloudron.installApp(location, manifest);
});
it('can configure app', function () {
2015-06-16 16:59:22 +00:00
location = location + 'x';
cloudron.configureApp(appId, location);
2015-06-14 04:33:42 +00:00
});
it('can uninstall app', function () {
cloudron.uninstallApp(appId);
});
it('can delete the cloudron', function () {
appStore.deleteCloudron(box);
});
2015-09-30 00:30:10 +00:00
it('has setup DNS records cleaned up', function (done) {
2015-09-30 03:29:09 +00:00
function expectError(tag, fn) {
2015-09-30 00:30:10 +00:00
return function (cb) {
fn(function (error) {
2015-09-30 03:29:09 +00:00
cb(error ? null : new Error('Expecting error for ' + tag));
2015-09-30 00:30:10 +00:00
});
};
}
async.series([
2015-09-30 03:29:09 +00:00
expectError('checkA', cloudron.checkA.bind(cloudron)),
expectError('checkSPF', cloudron.checkSPF.bind(cloudron)),
expectError('checkDKIM', cloudron.checkDKIM.bind(cloudron)),
expectError('checkDMARC', cloudron.checkDMARC.bind(cloudron))
2015-09-30 00:30:10 +00:00
], done);
});
2015-06-14 04:33:42 +00:00
});