'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'), Cloudron = require('../cloudron.js'), common = require('../common.js'), ImapProbe = require('../imap-probe.js'); require('colors'); process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'; var BOX_VERSION = process.env.BOX_VERSION; describe('Cloudron user creation testing', function () { this.timeout(0); var appStore = new AppStore('https://api.staging.cloudron.io'); var owner = common.getOwner(); var admin = common.getAdmin(); var cloudron, box, newUser; 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 }); 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: 'ams2', 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); }); it('can set cloudron name', function () { cloudron.setCloudronName('Acme Inc'); }); it('can enable email', function () { cloudron.setEmailEnabled(true); }); it('can create user', function () { newUser = cloudron.addUser('newuser', 'test+foo@cloudron.io'); }); 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 Acme Inc$'), body: new RegExp(escapedUrl) }, done); }); it('can use reset token to reset password', function () { cloudron.resetPassword(newUser.resetToken, 'Strong?132'); }); it('can login as new user', function () { cloudron.getOauthToken({ username: 'newuser', password: 'Strong?132' }); }); 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); }); it('can delete the cloudron', function () { appStore.deleteCloudron(box); }); });