2015-06-16 03:50:33 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
2015-06-16 17:40:50 +00:00
|
|
|
/*
|
|
|
|
* This tests an app flow on the cloudron. User installs
|
|
|
|
* an app, tries to configure and then uninstall it.
|
|
|
|
*/
|
|
|
|
|
2015-06-16 03:50:33 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var AppStore = require('../appstore.js'),
|
|
|
|
assert = require('assert'),
|
|
|
|
Cloudron = require('../cloudron.js'),
|
2015-06-17 02:13:17 +00:00
|
|
|
common = require('../common.js'),
|
2015-11-19 18:28:43 +00:00
|
|
|
request = require('superagent-sync');
|
2015-06-16 03:50:33 +00:00
|
|
|
|
|
|
|
require('colors');
|
|
|
|
|
|
|
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
|
2015-11-19 18:28:43 +00:00
|
|
|
var BOX_VERSION = process.env.BOX_VERSION;
|
2015-06-16 03:50:33 +00:00
|
|
|
|
|
|
|
describe('Application flow test', function () {
|
|
|
|
this.timeout(0);
|
|
|
|
|
|
|
|
var appStore = new AppStore('https://api.staging.cloudron.io');
|
|
|
|
|
2015-07-23 21:05:52 +00:00
|
|
|
var owner = common.getOwner();
|
2015-11-29 16:41:28 +00:00
|
|
|
var admin = common.getAdmin();
|
2015-11-19 18:28:43 +00:00
|
|
|
var cloudron, appId, box;
|
2015-06-16 03:50:33 +00:00
|
|
|
|
|
|
|
it('can login to the store', function () {
|
|
|
|
var accessToken = appStore.getAccessToken(owner);
|
|
|
|
appStore.setCredentials(owner.password, accessToken);
|
2015-11-29 16:41:28 +00:00
|
|
|
|
|
|
|
var adminAccessToken = appStore.getAccessToken(admin);
|
2015-12-18 16:31:22 +00:00
|
|
|
appStore.setAdminCredentials(admin.password, adminAccessToken);
|
2015-06-16 03:50:33 +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-16 03:50:33 +00:00
|
|
|
region: 'sfo1',
|
2016-01-19 10:28:27 +00:00
|
|
|
size: '1gb',
|
2015-11-19 18:28:43 +00:00
|
|
|
version: BOX_VERSION
|
2015-06-16 03:50:33 +00:00
|
|
|
});
|
2015-09-29 04:02:27 +00:00
|
|
|
box = appStore.waitForCloudron(box.id);
|
2015-06-16 03:50:33 +00:00
|
|
|
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 () {
|
2015-06-17 02:13:17 +00:00
|
|
|
var manifest = appStore.getManifest(common.TESTAPP_ID, common.TESTAPP_VERSION);
|
2015-06-16 03:50:33 +00:00
|
|
|
appId = cloudron.installApp(location, manifest);
|
|
|
|
});
|
|
|
|
|
2015-06-16 04:30:07 +00:00
|
|
|
it('can populate the addons', function () {
|
2015-06-16 15:59:22 +00:00
|
|
|
var res = request.post('https://' + location + '-' + box.domain + '/populate_addons').end();
|
2015-06-16 04:30:07 +00:00
|
|
|
assert.strictEqual(res.statusCode, 200);
|
|
|
|
assert.strictEqual(res.body.mysql, 'OK');
|
|
|
|
assert.strictEqual(res.body.postgresql, 'OK');
|
|
|
|
assert.strictEqual(res.body.mongodb, 'OK');
|
2015-06-17 02:13:17 +00:00
|
|
|
assert.strictEqual(res.body.localstorage, 'OK');
|
2015-10-10 21:38:54 +00:00
|
|
|
assert.strictEqual(res.body.redis, 'OK');
|
2015-06-16 04:30:07 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('can check the addons', function () {
|
2015-10-21 00:53:57 +00:00
|
|
|
cloudron.checkAddons(location, owner);
|
2015-06-16 04:30:07 +00:00
|
|
|
});
|
|
|
|
|
2016-04-06 01:33:11 +00:00
|
|
|
it('displays app graphs', function () {
|
2016-04-06 01:43:30 +00:00
|
|
|
cloudron.checkAppGraphs(appId);
|
2016-04-06 01:33:11 +00:00
|
|
|
});
|
|
|
|
|
2015-06-16 03:50:33 +00:00
|
|
|
it('can configure app', function () {
|
2015-06-16 16:59:22 +00:00
|
|
|
location = location + 'x';
|
|
|
|
cloudron.configureApp(appId, location);
|
2015-06-16 03:50:33 +00:00
|
|
|
});
|
|
|
|
|
2015-06-16 04:30:07 +00:00
|
|
|
it('can check the addons', function () {
|
2015-10-21 00:53:57 +00:00
|
|
|
cloudron.checkAddons(location, owner);
|
2015-06-16 04:30:07 +00:00
|
|
|
});
|
|
|
|
|
2015-08-31 04:48:33 +00:00
|
|
|
it('can reboot the cloudron', function () {
|
|
|
|
cloudron.reboot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can check the addons', function () {
|
2015-10-21 00:53:57 +00:00
|
|
|
cloudron.checkAddons(location, owner);
|
2015-08-31 04:48:33 +00:00
|
|
|
});
|
|
|
|
|
2015-06-16 03:50:33 +00:00
|
|
|
it('can uninstall app', function () {
|
|
|
|
cloudron.uninstallApp(appId);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can delete the cloudron', function () {
|
|
|
|
appStore.deleteCloudron(box);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|