Make tests parallel

This commit is contained in:
Girish Ramakrishnan 2015-06-14 21:15:49 -07:00
parent b308e5d6b8
commit 2f19e8a71e
3 changed files with 95 additions and 3 deletions

View File

@ -4,7 +4,8 @@
"description": "End to end testing",
"main": "test.js",
"scripts": {
"test": "DEBUG=superagent-sync,e2e mocha test.js"
"test": "DEBUG=superagent-sync,e2e:* ./node_modules/.bin/mocha test/*",
"parallel_test": "./node_modules/.bin/parallel-mocha test/*"
},
"repository": {
"type": "git",
@ -16,6 +17,7 @@
"colors": "^1.1.0",
"debug": "^2.2.0",
"mocha": "^2.2.5",
"parallel-mocha": "0.0.7",
"readline-sync": "^1.2.19",
"semver": "^4.3.6",
"should": "^6.0.3",

90
test/new-user-test.js Normal file
View File

@ -0,0 +1,90 @@
#!/usr/bin/env node
'use strict';
var AppStore = require('../appstore.js'),
assert = require('assert'),
Cloudron = require('../cloudron.js'),
readlineSync = require('readline-sync'),
request = require('superagent-sync'),
semver = require('semver'),
sleep = require('sleep').sleep,
util = require('util');
require('colors');
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
function verifyResponse(res, errorMessage) {
if (res.statusCode < 200 || res.statusCode > 299) {
console.log('Response error statusCode:%s error:%s body:%s', res.statusCode, res.error, res.body);
console.log(errorMessage.red);
process.exit(1);
}
}
describe('End to end 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;
it('can query versions', function () {
res = request.get('https://s3.amazonaws.com/staging-cloudron-releases/versions.json').end();
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({
name: 'testbox' + (Math.random() * 1000).toFixed() + '.smartserver.io',
zoneName: 'smartserver.io',
region: 'sfo1',
size: '512mb',
version: latestVersion
});
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 = 'haste' + (Math.random() * 10000).toFixed();
it('can install app', function () {
var manifest = appStore.getManifest('com.hastebin.cloudronapp', '0.1.0');
appId = cloudron.installApp(location, manifest);
});
it('can configure app', function () {
cloudron.configureApp(appId, location + 'x');
});
it('can uninstall app', function () {
cloudron.uninstallApp(appId);
});
it('can delete the cloudron', function () {
appStore.deleteCloudron(box);
});
});

4
test.js → test/update-test.js Executable file → Normal file
View File

@ -2,9 +2,9 @@
'use strict';
var AppStore = require('./appstore.js'),
var AppStore = require('../appstore.js'),
assert = require('assert'),
Cloudron = require('./cloudron.js'),
Cloudron = require('../cloudron.js'),
readlineSync = require('readline-sync'),
request = require('superagent-sync'),
semver = require('semver'),