cloudron-e2e-test/appstore.js

198 lines
6.6 KiB
JavaScript
Raw Normal View History

2015-06-14 04:33:42 +00:00
'use strict';
2015-07-27 20:21:38 +00:00
var common = require('./common.js'),
debug = require('debug')('e2e:appstore'),
2015-06-14 04:33:42 +00:00
request = require('superagent-sync'),
sleep = require('./shell.js').sleep,
stripe = require('stripe');
2015-06-14 04:33:42 +00:00
exports = module.exports = AppStore;
function AppStore(origin) {
this._origin = origin || process.env.APPSTORE_API_ORIGIN;
2015-06-14 04:33:42 +00:00
// credentials for api calls
this._credentials = {
password: null,
accessToken: null
};
this._adminCredentials = {
password: null,
accessToken: null
};
2015-06-14 04:33:42 +00:00
}
AppStore.prototype.getAccessToken = function (user) {
2017-04-15 15:00:57 +00:00
var res = request.post(this._origin + '/api/v1/login').send({ email: user.email, password: user.password, persistent: true }).end();
2016-01-27 17:21:41 +00:00
common.verifyResponse2xx(res, 'Could not login as user:' + user.email + ' password:' + user.password);
2015-06-14 04:33:42 +00:00
return res.body.accessToken;
};
2015-09-24 11:24:22 +00:00
AppStore.prototype.getProfile = function () {
var res = request.get(this._origin + '/api/v1/profile').query({ accessToken: this._credentials.accessToken }).end();
return res.body.profile;
};
2015-06-14 04:33:42 +00:00
AppStore.prototype.setCredentials = function (password, accessToken) {
this._credentials = { password: password, accessToken: accessToken };
};
AppStore.prototype.setAdminCredentials = function (password, accessToken) {
this._adminCredentials = { password: password, accessToken: accessToken };
};
2015-07-27 23:17:37 +00:00
AppStore.prototype.getCloudrons = function () {
var res = request.get(this._origin + '/api/v1/cloudrons').query({ accessToken: this._credentials.accessToken, page: 1, per_page: 50 }).end();
return res.body.boxes;
};
AppStore.prototype.getCloudron = function (boxId) {
var res = request.get(this._origin + '/api/v1/cloudrons/' + boxId).query({ accessToken: this._credentials.accessToken }).retry(0).end();
if (res.statusCode === 404) return null;
2016-01-27 17:21:41 +00:00
common.verifyResponse2xx(res, 'Could not query cloudron status');
return res.body.box;
};
2015-12-17 21:58:49 +00:00
AppStore.prototype.waitForIP = function (boxId) {
process.stdout.write('Waiting for cloudron to get an IP.');
var res;
2016-05-03 20:47:03 +00:00
for (var i = 0; i < 60; i++) {
sleep(20);
2015-12-17 21:58:49 +00:00
process.stdout.write('.');
res = request.get(this._origin + '/api/v1/cloudrons/' + boxId).query({ accessToken: this._credentials.accessToken }).end();
2016-01-27 17:21:41 +00:00
common.verifyResponse2xx(res, 'Could not query cloudron status');
2015-12-17 21:58:49 +00:00
if (res.body.box.ip) {
debug();
break;
}
}
2016-01-27 02:30:02 +00:00
if (!res.body || !res.body.box.ip) throw new Error('waitForIP timeout');
2015-12-17 21:58:49 +00:00
debug('Box IP:%s'.green, res.body.box.ip);
return res.body.box.ip;
};
2015-06-16 19:00:46 +00:00
AppStore.prototype.waitForCloudron = function (boxId) {
2015-06-14 04:33:42 +00:00
var creationTime = new Date();
process.stdout.write('Waiting for cloudron to come up.');
2015-07-27 20:16:19 +00:00
var boxInfo = null, res;
for (var i = 0; i < 120; i++) {
sleep(30);
2015-06-14 04:33:42 +00:00
process.stdout.write('.');
2015-07-27 19:34:56 +00:00
res = request.get(this._origin + '/api/v1/cloudrons/' + boxId).query({ accessToken: this._credentials.accessToken }).end();
2016-01-27 17:21:41 +00:00
common.verifyResponse2xx(res, 'Could not query cloudron status');
2015-06-14 04:33:42 +00:00
2015-07-27 20:16:19 +00:00
boxInfo = res.body.box;
if (boxInfo.status === 'ready') {
2015-06-14 04:33:42 +00:00
debug();
break;
}
}
if (!boxInfo) throw new Error('waitForCloudron: could not get cloudron information');
2016-09-06 13:37:52 +00:00
// check for ready state
if (boxInfo.status !== 'ready') throw new Error('waitForCloudron: could not get cloudron status');
2016-01-27 02:30:02 +00:00
2016-09-20 09:09:14 +00:00
debug('Box created in %s minutes with IP:%s'.green, (new Date() - creationTime) / 60000, res.body.box.ip);
2015-07-27 19:34:56 +00:00
2015-07-27 20:16:19 +00:00
// even if the cloudron sent heartbeat to appstore, doesn't mean we can contact the cloudron thanks to DO networking insanity
process.stdout.write('Waiting for Cloudron to be reachable.');
2016-01-27 02:30:02 +00:00
for (i = 0; i < 60; i++) {
2016-05-03 20:47:03 +00:00
sleep(20);
2015-07-27 20:16:19 +00:00
process.stdout.write('.');
res = request.get('https://' + boxInfo.ip).end();
if (!res.error) break;
debug(res.error);
}
2016-01-27 02:30:02 +00:00
if (res.error) throw new Error('waitForCloudron: could not reach cloudron');
2015-07-27 20:16:19 +00:00
return boxInfo;
2015-06-16 19:00:46 +00:00
};
2015-06-14 04:33:42 +00:00
2015-06-16 19:00:46 +00:00
AppStore.prototype.createCloudron = function (box) {
var accessToken = this._credentials.accessToken;
var res = request.post(this._origin + '/api/v1/cloudrons').send(box).query({ accessToken: accessToken }).end();
2016-01-27 17:21:41 +00:00
common.verifyResponse2xx(res, 'Could not create cloudron %j', box);
2015-06-16 19:00:46 +00:00
2015-06-29 06:20:05 +00:00
debug('Cloudron %s created'.green, box.domain);
2015-06-14 04:33:42 +00:00
return res.body.box;
};
// Only allowed by admins
2015-06-14 04:33:42 +00:00
AppStore.prototype.deleteCloudron = function (box) {
var res = request.post(this._origin + '/api/v1/cloudrons/' + box.id)
.query({ accessToken: this._adminCredentials.accessToken })
2015-06-14 04:33:42 +00:00
.set('X-HTTP-Method-Override', 'DELETE')
.send({ password: this._adminCredentials.password })
2015-06-14 04:33:42 +00:00
.end();
2016-01-27 17:21:41 +00:00
common.verifyResponse2xx(res, 'Could not delete cloudron');
process.stdout.write('Waiting for Cloudron to disappear.');
2016-05-03 20:47:03 +00:00
for (var i = 0; i < 60; i++) {
2016-01-27 02:30:02 +00:00
if (this.getCloudron(box.id) === null) return;
2016-05-03 20:47:03 +00:00
sleep(20);
process.stdout.write('.');
}
2016-01-27 02:30:02 +00:00
throw new Error('deleteCloudron: timedout waiting for cloudron to disappear');
2015-06-14 04:33:42 +00:00
};
AppStore.prototype.getManifest = function (appId, version) {
var res = request.get(this._origin + '/api/v1/apps/' + appId + '/versions/' + version).end();
2016-01-27 17:21:41 +00:00
common.verifyResponse2xx(res, 'Could not get get app manifest');
2015-06-14 04:33:42 +00:00
return res.body.manifest;
};
2015-06-16 19:00:46 +00:00
AppStore.prototype.restore = function (boxId, backupId) {
2017-01-10 19:57:05 +00:00
var res = request.post(this._origin + '/api/v1/cloudrons/' + boxId + '/restore/' + encodeURIComponent(backupId)).query({ accessToken: this._credentials.accessToken }).end();
2016-01-27 17:21:41 +00:00
common.verifyResponse2xx(res, 'Could not restore cloudron');
2015-06-16 19:00:46 +00:00
};
2015-09-24 11:24:22 +00:00
AppStore.prototype.setupBilling = function (user, callback) {
2015-07-27 20:21:38 +00:00
var stripeApi = stripe(common.stripeSecret());
var that = this;
stripeApi.tokens.create({
card: {
number: '4242424242424242',
exp_month: 12,
2017-01-05 19:01:07 +00:00
exp_year: 2020,
cvc: '123'
}
}, function (error, token) {
if (error) return callback(error);
debug('Got stripe token', token.id);
var data = {
firstName: 'Max',
lastName: 'Mustermann',
company: 'Muster Inc',
street: '200 Muster Blvd.',
city: 'Muenster',
zip: '12312',
state: 'Munster',
country: 'DE',
billingToken: token.id
};
2015-09-24 11:24:22 +00:00
var res = request.put(that._origin + '/api/v1/users/' + user.id).send(data).query({ accessToken: that._credentials.accessToken }).end();
2016-01-27 17:21:41 +00:00
common.verifyResponse2xx(res, 'Could not setup billing');
callback(null);
});
};