1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/functional/sanity/racycrash.js
Juan Picado @jotadeveloper e00e41b24b refactor: fix linting
2018-01-07 07:59:36 +00:00

66 lines
1.7 KiB
JavaScript

import assert from 'assert';
export default function(server, express) {
describe('test for unexpected client hangs', () => {
let on_tarball;
beforeAll(function() {
express.get('/testexp-racycrash', function(request, response) {
response.send({
'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',
},
},
},
});
});
express.get('/testexp-racycrash/-/test.tar.gz', function(request, response) {
on_tarball(response);
});
});
test('should not crash on error if client disconnects', callback => {
on_tarball = function(res) {
res.header('content-length', 1e6);
res.write('test test test\n');
setTimeout(function() {
res.write('test test test\n');
res.socket.destroy();
cb();
}, 200);
};
server.request({uri: '/testexp-racycrash/-/test.tar.gz'})
.then(function(body) {
assert.equal(body, 'test test test\n');
});
function cb() {
// test for NOT crashing
server.request({uri: '/testexp-racycrash'})
.status(200)
.then(function() {
callback();
});
}
});
test('should not store tarball', () => {
on_tarball = function(res) {
res.socket.destroy();
};
return server.request({uri: '/testexp-racycrash/-/test.tar.gz'})
.body_error('internal server error');
});
});
}