89 lines
2.5 KiB
JavaScript
89 lines
2.5 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
/*
|
|
* This tests a flow for the cloudron 'user. The cloudron
|
|
* owner create a new user. This new user should be able to
|
|
* login with the resetToken.
|
|
*/
|
|
|
|
var AppStore = require('../appstore.js'),
|
|
assert = require('assert'),
|
|
Cloudron = require('../cloudron.js'),
|
|
common = require('../common.js'),
|
|
path = require('path'),
|
|
readlineSync = require('readline-sync'),
|
|
request = require('superagent-sync'),
|
|
semver = require('semver'),
|
|
util = require('util');
|
|
|
|
require('colors');
|
|
|
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
|
|
|
|
describe('Cloudron user creation testing', 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, newUser;
|
|
|
|
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 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);
|
|
});
|
|
|
|
it('can create user', function () {
|
|
newUser = cloudron.addUser('newuser', 'girish@forwardbias.in');
|
|
});
|
|
|
|
it('can use reset token to reset password', function () {
|
|
cloudron.resetPassword(newUser.resetToken, 'newpassword');
|
|
});
|
|
|
|
it('can login as new user', function () {
|
|
cloudron.getOauthToken({ username: 'newuser', email: 'test@cloudron.io', password: 'newpassword' });
|
|
});
|
|
|
|
it('can delete the cloudron', function () {
|
|
appStore.deleteCloudron(box);
|
|
});
|
|
|
|
});
|
|
|