cloudron-e2e-test/test/new-user-test.js
2015-06-29 00:20:38 -07:00

91 lines
2.5 KiB
JavaScript

#!/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
*/
'use strict';
var AppStore = require('../appstore.js'),
Cloudron = require('../cloudron.js'),
common = require('../common.js'),
request = require('superagent-sync'),
semver = require('semver');
require('colors');
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
describe('Appstore new user flow', function () {
this.timeout(0);
var appStore = new AppStore('https://api.staging.cloudron.io');
var owner = {
username: 'test',
password: 'test1234',
email: 'test@cloudron.io'
};
var res, latestVersion, cloudron, appId, box;
it('can query versions', function () {
res = request.get('https://s3.amazonaws.com/staging-cloudron-releases/versions.json').end();
common.verifyResponse(res);
var boxVersions = Object.keys(res.body).sort(semver.rcompare);
latestVersion = boxVersions[0];
});
it('can login to the store', function () {
var accessToken = appStore.getAccessToken(owner);
appStore.setCredentials(owner.password, accessToken);
});
it('can setup billing details', function (done) {
appStore.setupBilling(done);
});
it('can create a cloudron', function () {
box = appStore.createCloudron({
domain: common.cloudronDomain(__filename),
zoneName: 'smartserver.io',
region: 'sfo1',
size: '512mb',
version: latestVersion
});
appStore.waitForCloudron(box.id);
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 = 'haste' + (Math.random() * 10000).toFixed();
it('can install app', function () {
var manifest = appStore.getManifest('com.hastebin.cloudronapp', '0.3.0');
appId = cloudron.installApp(location, manifest);
});
it('can configure app', function () {
location = location + 'x';
cloudron.configureApp(appId, location);
});
it('can uninstall app', function () {
cloudron.uninstallApp(appId);
});
it('can delete the cloudron', function () {
appStore.deleteCloudron(box);
});
});