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

71 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-04-19 21:15:28 +02:00
'use strict';
let assert = require('assert');
2014-03-07 19:20:41 +01:00
module.exports = function() {
2017-04-19 21:15:28 +02:00
let server = process.server;
let express = process.express;
2014-03-07 19:20:41 +01:00
describe('Racy', function() {
2017-04-19 21:15:28 +02:00
let on_tarball;
2014-03-07 20:48:24 +01:00
before(function() {
express.get('/testexp-racycrash', function(_, res) {
res.send({
2017-04-19 21:15:28 +02:00
'name': 'testexp-racycrash',
'versions': {
'0.1.0': {
'name': 'testexp_tags',
'version': '0.1.0',
'dist': {
'shasum': 'fake',
'tarball': 'http://localhost:55550/testexp-racycrash/-/test.tar.gz',
},
},
},
});
});
2014-03-07 19:20:41 +01:00
express.get('/testexp-racycrash/-/test.tar.gz', function(_, res) {
2017-04-19 21:15:28 +02:00
on_tarball(res);
});
});
2014-03-07 20:48:24 +01:00
it('should not crash on error if client disconnects', function(_cb) {
on_tarball = function(res) {
2017-04-19 21:15:28 +02:00
res.header('content-length', 1e6);
res.write('test test test\n');
setTimeout(function() {
2017-04-19 21:15:28 +02:00
res.write('test test test\n');
res.socket.destroy();
cb();
}, 200);
};
2014-03-07 19:20:41 +01:00
2017-04-19 21:15:28 +02:00
server.request({uri: '/testexp-racycrash/-/test.tar.gz'})
.then(function(body) {
assert.equal(body, 'test test test\n');
});
2014-03-07 19:20:41 +01:00
function cb() {
// test for NOT crashing
2017-04-19 21:15:28 +02:00
server.request({uri: '/testexp-racycrash'})
.status(200)
2017-04-19 21:15:28 +02:00
.then(function() {
_cb();
});
}
2017-04-19 21:15:28 +02:00
});
2014-03-07 20:48:24 +01:00
2017-04-19 21:15:28 +02:00
it('should not store tarball', function() {
on_tarball = function(res) {
2017-04-19 21:15:28 +02:00
res.socket.destroy();
};
2014-03-07 20:48:24 +01:00
2017-04-19 21:15:28 +02:00
return server.request({uri: '/testexp-racycrash/-/test.tar.gz'})
.body_error('internal server error');
});
});
};
2014-03-07 19:20:41 +01:00