128 lines
3.7 KiB
JavaScript
128 lines
3.7 KiB
JavaScript
/*
|
|
* This tests an app flow on the cloudron. User installs
|
|
* an app, tries to configure and then uninstall it.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var AppStore = require('../appstore.js'),
|
|
assert = require('assert'),
|
|
Cloudron = require('../cloudron.js'),
|
|
common = require('../common.js'),
|
|
net = require('net');
|
|
|
|
require('colors');
|
|
|
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
|
|
var BOX_VERSION = process.env.BOX_VERSION;
|
|
|
|
describe('Application flow test', function () {
|
|
this.timeout(0);
|
|
|
|
var appStore = new AppStore('https://api.staging.cloudron.io');
|
|
|
|
var owner = common.getOwner();
|
|
var admin = common.getAdmin();
|
|
var cloudron, appId, box;
|
|
|
|
it('can login to the store', function () {
|
|
var accessToken = appStore.getAccessToken(owner);
|
|
appStore.setCredentials(owner.password, accessToken);
|
|
|
|
var adminAccessToken = appStore.getAccessToken(admin);
|
|
appStore.setAdminCredentials(admin.password, adminAccessToken);
|
|
});
|
|
|
|
it('can create a cloudron', function () {
|
|
box = appStore.createCloudron({
|
|
domain: common.cloudronDomain(__filename),
|
|
region: 'sfo1',
|
|
size: '1gb',
|
|
version: BOX_VERSION
|
|
});
|
|
box = 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 = 'test' + (Math.random() * 10000).toFixed();
|
|
it('can install app', function () {
|
|
var manifest = appStore.getManifest(common.TESTAPP_ID, common.TESTAPP_VERSION);
|
|
appId = cloudron.installApp(location, manifest, { ECHO_SERVER_PORT: 5151 });
|
|
});
|
|
|
|
it('can populate the addons', function () {
|
|
cloudron.populateAddons(cloudron.appFqdn(location));
|
|
});
|
|
|
|
it('can check the addons', function () {
|
|
cloudron.checkAddons(cloudron.appFqdn(location), owner);
|
|
});
|
|
|
|
function checkExposedPort(done) {
|
|
var client = new net.Socket();
|
|
var data = [ ];
|
|
client.connect(5151, cloudron.appFqdn(location), function() {
|
|
console.log('connected to 5151');
|
|
});
|
|
client.on('data', function (chunk) { data.push(chunk); });
|
|
client.on('close', function () {
|
|
var response = Buffer.concat(data).toString('utf8');
|
|
if (response === 'ECHO_SERVER_PORT=5151') return done();
|
|
console.log('unexpected response:', response);
|
|
done(new Error('bad response'));
|
|
});
|
|
client.on('error', done);
|
|
}
|
|
|
|
it('can access exposed port', function (done) {
|
|
checkExposedPort(done);
|
|
});
|
|
|
|
it('displays app graphs', function () {
|
|
cloudron.checkAppGraphs(appId);
|
|
});
|
|
|
|
it('can configure app', function () {
|
|
location = location + 'x';
|
|
cloudron.configureApp(appId, location, null /* altDomain */, { ECHO_SERVER_PORT: 5151 });
|
|
});
|
|
|
|
it('can check the addons', function () {
|
|
cloudron.checkAddons(cloudron.appFqdn(location), owner);
|
|
});
|
|
|
|
it('can access exposed port', function (done) {
|
|
checkExposedPort(done);
|
|
});
|
|
|
|
it('can reboot the cloudron', function () {
|
|
cloudron.reboot();
|
|
});
|
|
|
|
it('can check the addons', function () {
|
|
cloudron.checkAddons(cloudron.appFqdn(location), owner);
|
|
});
|
|
|
|
it('can access exposed port', function (done) {
|
|
checkExposedPort(done);
|
|
});
|
|
|
|
it('can uninstall app', function () {
|
|
cloudron.uninstallApp(appId);
|
|
});
|
|
|
|
it('can delete the cloudron', function () {
|
|
appStore.deleteCloudron(box);
|
|
});
|
|
});
|
|
|