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

178 lines
5.5 KiB
JavaScript
Raw Permalink Normal View History

/*
2016-06-24 04:52:18 +00:00
* This is essentially an appstore pov test.
* 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';
2017-01-31 18:48:51 +00:00
var assert = require('assert'),
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'),
dns = require('dns'),
2017-01-31 00:23:08 +00:00
ImapProbe = require('../imap-probe.js'),
request = require('superagent-sync');
2015-06-14 04:33:42 +00:00
require('colors');
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
var BOX_VERSION = process.env.BOX_VERSION;
2015-06-14 04:33:42 +00:00
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();
2015-06-14 04:33:42 +00:00
2015-07-23 20:46:47 +00:00
var owner = common.getOwner();
var admin = common.getAdmin();
var cloudron, appId, box;
2015-06-14 04:33:42 +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
tls: true,
readOnly: true
});
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);
var adminAccessToken = appStore.getAccessToken(admin);
2015-12-18 16:31:22 +00:00
appStore.setAdminCredentials(admin.password, adminAccessToken);
2015-06-14 04:33:42 +00:00
});
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
region: 'sfo1',
size: '1gb',
version: BOX_VERSION
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('sent a mail to the user about cloudron ready', function (done) {
imap.probe({
2016-06-23 20:55:28 +00:00
subject: new RegExp('Cloudron ' + box.domain + ' is ready$'),
from: /Cloudron Team/
}, 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);
});
2016-09-01 16:38:27 +00:00
it('can enable email', function () {
cloudron.setEmailEnabled(true);
});
2015-06-14 04:33:42 +00:00
2016-06-10 22:39:19 +00:00
var location = 'haste' + (Math.random() * 10000).toFixed();
2015-06-14 04:33:42 +00:00
it('can install app', function () {
appId = cloudron.installApp(location, 'com.hastebin.cloudronapp@0.3.0');
2015-06-14 04:33:42 +00:00
});
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
});
2016-10-03 21:30:47 +00:00
// clone requires a backup to work with
it('can backup app', function () {
cloudron.backupApp(appId);
});
2016-10-03 20:38:55 +00:00
it('can clone app', function () {
cloudron.cloneApp(appId, location + 'clone');
});
2015-06-14 04:33:42 +00:00
it('can uninstall app', function () {
cloudron.uninstallApp(appId);
});
2016-06-10 22:39:19 +00:00
it('can get the timezone', function () {
// cloudron timezone is set async and this check is here to give Cloudron some time
cloudron.checkTimeZone('America/New_York'); // this is the timezone of the ec2 ci machine
2016-06-10 22:39:19 +00:00
});
2017-01-31 00:23:08 +00:00
it('gets redirected for IP based access', function () {
var res = request.get('https://' + box.ip + '/api/v1/cloudron/status').end();
assert.strictEqual(res.statusCode, 200);
assert.strictEqual(res.body.version, box.version);
});
2015-10-31 02:41:00 +00:00
// check this after activation
it('has setup DNS records correctly', function (done) {
async.series([
cloudron.checkA.bind(cloudron),
cloudron.checkSPF.bind(cloudron),
2016-05-18 06:31:50 +00:00
cloudron.checkMX.bind(cloudron),
2015-10-31 02:41:00 +00:00
cloudron.checkDKIM.bind(cloudron),
cloudron.checkDMARC.bind(cloudron)
], done);
});
2017-03-30 23:31:22 +00:00
it('does TCP ratelimiting', function (done) {
2017-03-31 03:03:07 +00:00
this.timeout(12000);
2017-03-30 23:31:22 +00:00
async.series([
cloudron.checkTcpRateLimit.bind(cloudron, 202, 5), // ssh
cloudron.checkTcpRateLimit.bind(cloudron, 25, 50), // mail
2017-03-31 03:03:07 +00:00
cloudron.checkTcpRateLimit.bind(cloudron, 587, 60), // msa
cloudron.checkTcpRateLimit.bind(cloudron, 993, 60), // imap
cloudron.checkTcpRateLimit.bind(cloudron, 4190, 60), // sieve
2017-03-30 23:31:22 +00:00
], done);
});
it('does nginx ratelimiting', function (done) {
2017-03-31 03:03:07 +00:00
cloudron.checkNginxRateLimit(owner, 10, done);
2017-03-30 23:31:22 +00:00
});
2015-06-14 04:33:42 +00:00
it('can delete the cloudron', function () {
appStore.deleteCloudron(box);
});
2015-09-30 00:30:10 +00:00
xit('has setup DNS records cleaned up', function (done) {
2015-09-30 04:39:11 +00:00
dns.setServers([ '205.251.199.12' ]); // use different dns server so as to not get cached results
2015-09-30 03:38:56 +00:00
2015-09-30 03:29:09 +00:00
function expectError(tag, fn) {
2015-09-30 00:30:10 +00:00
return function (cb) {
2015-09-30 04:39:11 +00:00
fn(function (error, records) {
if (!error) console.error('Records of %s is %j', tag, records);
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)),
2016-05-18 06:31:50 +00:00
expectError('checkDMARC', cloudron.checkDMARC.bind(cloudron)),
expectError('checkMX', cloudron.checkMX.bind(cloudron))
2015-09-30 00:30:10 +00:00
], done);
});
2015-06-14 04:33:42 +00:00
});