2015-06-15 05:03:26 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-06-16 17:40:50 +00:00
|
|
|
/*
|
2015-06-22 06:57:13 +00:00
|
|
|
* This tests a flow for the cloudron 'user. The cloudron
|
2015-06-16 17:40:50 +00:00
|
|
|
* owner create a new user. This new user should be able to
|
|
|
|
* login with the resetToken.
|
|
|
|
*/
|
|
|
|
|
2015-06-15 05:03:26 +00:00
|
|
|
var AppStore = require('../appstore.js'),
|
|
|
|
Cloudron = require('../cloudron.js'),
|
2016-06-23 21:41:07 +00:00
|
|
|
common = require('../common.js'),
|
|
|
|
ImapProbe = require('../imap-probe.js');
|
2015-06-15 05:03:26 +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-15 05:03:26 +00:00
|
|
|
|
2015-06-16 03:50:39 +00:00
|
|
|
describe('Cloudron user creation testing', function () {
|
2015-06-15 05:03:26 +00:00
|
|
|
this.timeout(0);
|
|
|
|
|
|
|
|
var appStore = new AppStore('https://api.staging.cloudron.io');
|
|
|
|
|
2015-07-23 20:46:47 +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, box, newUser;
|
2015-06-15 05:03:26 +00:00
|
|
|
|
2016-06-23 21:41:07 +00:00
|
|
|
var imap = new ImapProbe({
|
|
|
|
user: process.env.IMAP_USERNAME,
|
|
|
|
password: process.env.IMAP_PASSWORD,
|
|
|
|
host: process.env.IMAP_HOST,
|
|
|
|
port: 993, // imap port
|
|
|
|
tls: true,
|
|
|
|
readOnly: true
|
|
|
|
});
|
|
|
|
|
2015-06-15 05:03:26 +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-11-29 16:57:47 +00:00
|
|
|
appStore.setAdminCredentials(admin.password, adminAccessToken);
|
2015-06-15 05:03:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('can create a cloudron', function () {
|
|
|
|
box = appStore.createCloudron({
|
2015-06-19 20:06:00 +00:00
|
|
|
domain: common.cloudronDomain(__filename),
|
2016-06-29 17:21:18 +00:00
|
|
|
region: 'ams2',
|
2016-01-19 10:28:27 +00:00
|
|
|
size: '1gb',
|
2015-11-19 18:28:43 +00:00
|
|
|
version: BOX_VERSION
|
2015-06-15 05:03:26 +00:00
|
|
|
});
|
2015-09-29 04:02:27 +00:00
|
|
|
box = appStore.waitForCloudron(box.id);
|
2015-06-15 05:03:26 +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);
|
|
|
|
});
|
|
|
|
|
2016-09-01 16:03:27 +00:00
|
|
|
it('can enable email', function () {
|
|
|
|
cloudron.setEmailEnabled(true);
|
|
|
|
});
|
|
|
|
|
2015-06-15 05:03:26 +00:00
|
|
|
it('can create user', function () {
|
2016-01-20 20:28:00 +00:00
|
|
|
newUser = cloudron.addUser('newuser', 'test+foo@cloudron.io');
|
2015-06-15 05:03:26 +00:00
|
|
|
});
|
|
|
|
|
2016-06-23 21:41:07 +00:00
|
|
|
it('did send invite mail to user', function (done) {
|
|
|
|
var url = 'https://' + cloudron.adminFqdn() + '/api/v1/session/account/setup.html?reset_token=' + newUser.resetToken;
|
|
|
|
var escapedUrl = url.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
|
|
|
|
|
|
|
|
imap.probe({
|
|
|
|
subject: new RegExp('Welcome to Cloudron ' + box.domain + '$'),
|
|
|
|
body: new RegExp(escapedUrl)
|
|
|
|
}, done);
|
|
|
|
});
|
|
|
|
|
2015-06-15 05:03:26 +00:00
|
|
|
it('can use reset token to reset password', function () {
|
2016-01-20 20:28:00 +00:00
|
|
|
cloudron.resetPassword(newUser.resetToken, 'Strong?132');
|
2015-06-15 05:03:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('can login as new user', function () {
|
2016-01-20 20:28:00 +00:00
|
|
|
cloudron.getOauthToken({ username: 'newuser', password: 'Strong?132' });
|
2015-06-15 05:03:26 +00:00
|
|
|
});
|
|
|
|
|
2016-06-24 05:29:34 +00:00
|
|
|
it('can send mail from one user to another', function (done) {
|
|
|
|
cloudron.sendMail(owner, 'newuser@' + cloudron.fqdn(), done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can receive mail', function (done) {
|
|
|
|
cloudron.checkMail({ username: 'newuser', password: 'Strong?132' }, done);
|
|
|
|
});
|
|
|
|
|
2015-06-15 05:03:26 +00:00
|
|
|
it('can delete the cloudron', function () {
|
2015-06-15 06:11:07 +00:00
|
|
|
appStore.deleteCloudron(box);
|
2015-06-15 05:03:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|