1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/functional/race.js

106 lines
2.9 KiB
JavaScript
Raw Normal View History

2017-04-19 21:15:28 +02:00
'use strict';
let assert = require('assert');
let async = require('async');
let _oksum = 0;
2013-12-19 16:11:54 +01:00
module.exports = function() {
2017-04-19 21:15:28 +02:00
let server = process.server;
2013-12-29 07:40:47 +01:00
describe('race', function() {
2017-04-19 21:15:28 +02:00
before(function() {
return server.putPackage('race', require('./lib/package')('race'))
.status(201)
2017-04-19 21:15:28 +02:00
.body_ok(/created new package/);
});
2013-12-19 16:11:54 +01:00
2017-04-19 21:15:28 +02:00
it('creating new package', function() {});
2013-12-19 16:11:54 +01:00
2017-04-19 21:15:28 +02:00
it('uploading 10 same versions', function(callback) {
let fns = [];
for (let i=0; i<10; i++) {
fns.push(function(cb_) {
2017-04-19 21:15:28 +02:00
let data = require('./lib/package')('race');
data.rand = Math.random();
2017-04-19 21:15:28 +02:00
let _res;
server.putVersion('race', '0.0.1', data)
2017-04-19 21:15:28 +02:00
.response(function(res) {
_res = res;
})
.then(function(body) {
cb_(null, [_res, body]);
});
});
}
2013-12-19 16:11:54 +01:00
async.parallel(fns, function(err, res) {
2017-04-19 21:15:28 +02:00
let okcount = 0;
let failcount = 0;
2017-04-19 21:15:28 +02:00
assert.equal(err, null);
2013-12-19 16:11:54 +01:00
res.forEach(function(arr) {
2017-04-19 21:15:28 +02:00
let resp = arr[0];
let body = arr[1];
if (resp.statusCode === 201 && ~body.ok.indexOf('published')) okcount++;
if (resp.statusCode === 409 && ~body.error.indexOf('already present')) failcount++;
if (resp.statusCode === 503 && ~body.error.indexOf('unavailable')) failcount++;
});
assert.equal(okcount + failcount, 10);
assert.equal(okcount, 1);
_oksum += okcount;
callback();
});
});
it('uploading 10 diff versions', function(callback) {
let fns = [];
for (let i=0; i<10; i++) {
(function(i) {
fns.push(function(cb_) {
2017-04-19 21:15:28 +02:00
let _res;
server.putVersion('race', '0.1.'+String(i), require('./lib/package')('race'))
2017-04-19 21:15:28 +02:00
.response(function(res) {
_res = res;
})
.then(function(body) {
cb_(null, [_res, body]);
});
});
})(i);
}
2013-12-19 16:11:54 +01:00
async.parallel(fns, function(err, res) {
2017-04-19 21:15:28 +02:00
let okcount = 0;
let failcount = 0;
2013-12-19 16:11:54 +01:00
2017-04-19 21:15:28 +02:00
assert.equal(err, null);
res.forEach(function(arr) {
2017-04-19 21:15:28 +02:00
let resp = arr[0];
let body = arr[1];
if (resp.statusCode === 201 && ~body.ok.indexOf('published')) okcount++;
if (resp.statusCode === 409 && ~body.error.indexOf('already present')) failcount++;
if (resp.statusCode === 503 && ~body.error.indexOf('unavailable')) failcount++;
});
assert.equal(okcount + failcount, 10);
assert.notEqual(okcount, 1);
_oksum += okcount;
callback();
});
});
after('downloading package', function() {
return server.getPackage('race')
.status(200)
2017-04-19 21:15:28 +02:00
.then(function(body) {
assert.equal(Object.keys(body.versions).length, _oksum);
});
});
});
};
2013-12-19 16:11:54 +01:00