Make selfhost cloudron creation test run

This commit is contained in:
Johannes Zellner 2016-06-23 15:38:05 +02:00
parent e5b7cd5345
commit 6645436577
1 changed files with 28 additions and 15 deletions

View File

@ -18,8 +18,19 @@ var AppStore = require('../appstore.js'),
require('colors');
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
var BOX_VERSION = process.env.BOX_VERSION;
var CUSTOM_DOMAIN = process.env.CUSTOM_DOMAIN;
const BOX_VERSION = process.env.BOX_VERSION;
const CUSTOM_DOMAIN = process.env.CUSTOM_DOMAIN;
const EC2_TYPE = 't2.micro';
const EC2_REGION = 'eu-central-1';
const EC2_SSH_KEY = 'id_rsa_yellowtent';
const EC2_SUBNET = 'subnet-801402e9';
const EC2_SECURITY_GROUP = 'sg-b9a473d1';
const BACKUP_KEY = 'somesecret';
const BACKUP_BUCKET = 'selfhost-test';
const AWS_ACCESS_KEY = process.env.AWS_ACCESS_KEY;
const AWS_ACCESS_SECRET = process.env.AWS_ACCESS_SECRET;
process.env.CLOUDRON_VERSIONS_URL = process.env.BOX_VERSIONS_URL;
function machine(args, options) {
// https://github.com/nodejs/node-v0.x-archive/issues/9265
@ -27,7 +38,7 @@ function machine(args, options) {
args = util.isArray(args) ? args : args.match(/[^\s"]+|"([^"]+)"/g);
args = args.map(function (e) { return e[0] === '"' ? e.slice(1, -1) : e; }); // remove the quotes
console.log('cloudron ' + args.join(' '));
console.log('machine ' + args.join(' '));
try {
var cp = child_process.spawnSync('machine', args, { stdio: [ options.stdin || 'pipe', options.stdout || 'pipe', 'pipe' ], encoding: options.encoding || 'utf8' });
@ -44,13 +55,18 @@ describe('Selfhost EC2 Cloudron creation', function () {
var appStore = new AppStore('https://api.staging.cloudron.io');
var owner = common.getOwner();
var cloudron, appId, box, backupInfo;
var cloudron, appId, backupInfo;
it('can create a cloudron', function () {
var out = machine('create ec2');
console.log(out);
asdf
cloudron = new Cloudron(box);
var out = machine(util.format('create ec2 --fqdn %s --type %s --region %s --ssh-key %s --access-key-id %s --secret-access-key %s --subnet %s --security-group %s --backup-key %s --backup-bucket %s --release %s', CUSTOM_DOMAIN, EC2_TYPE, EC2_REGION, EC2_SSH_KEY, AWS_ACCESS_KEY, AWS_ACCESS_SECRET, EC2_SUBNET, EC2_SECURITY_GROUP, BACKUP_KEY, BACKUP_BUCKET, BOX_VERSION));
assert(out.stdout.indexOf('You can now use your Cloudron at') !== -1);
cloudron = new Cloudron({
domain: CUSTOM_DOMAIN,
setupToken: null,
version: BOX_VERSION,
ip: null
});
});
it('can activate the box', function () {
@ -66,9 +82,6 @@ describe('Selfhost EC2 Cloudron creation', function () {
mailer.sendMailToCloudronUser(owner.username + '@' + CUSTOM_DOMAIN, done);
});
it('can set dns credentials', function () {
cloudron.setDnsConfig({ provider: 'route53', accessKeyId: process.env.AWS_STAGING_ACCESS_KEY, secretAccessKey: process.env.AWS_STAGING_SECRET_KEY });
});
var location = 'test' + (Math.random() * 10000).toFixed();
it('can install app', function () {
var manifest = appStore.getManifest(common.TESTAPP_ID, common.TESTAPP_VERSION);
@ -89,8 +102,8 @@ describe('Selfhost EC2 Cloudron creation', function () {
});
it('can restore the box', function () {
appStore.restore(box.id, backupInfo.id);
box = appStore.waitForCloudron(box.id);
var out = machine(util.format('restore ec2 --fqdn %s --type %s --region %s --ssh-key %s --access-key-id %s --secret-access-key %s --subnet %s --security-group %s --backup-key %s --backup-bucket %s --backup %s', CUSTOM_DOMAIN, EC2_TYPE, EC2_REGION, EC2_SSH_KEY, AWS_ACCESS_KEY, AWS_ACCESS_SECRET, EC2_SUBNET, EC2_SECURITY_GROUP, BACKUP_KEY, BACKUP_BUCKET, backupInfo.id));
assert(out.stdout.indexOf('You can now use your Cloudron at') !== -1);
});
it('wait for app to be ready', function () {
@ -123,7 +136,7 @@ describe('Selfhost EC2 Cloudron creation', function () {
});
// check this after activation
it('has setup DNS records correctly', function (done) {
xit('has setup DNS records correctly', function (done) {
async.series([
// cloudron.checkA.bind(cloudron), // this is at user's discretion
cloudron.checkSPF.bind(cloudron),
@ -133,6 +146,6 @@ describe('Selfhost EC2 Cloudron creation', function () {
], done);
});
it('can delete the cloudron', function () {
xit('can delete the cloudron', function () {
});
});