1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-17 07:45:52 +01:00
verdaccio/test/functional/sanity/incomplete.js

80 lines
2.2 KiB
JavaScript
Raw Normal View History

2018-06-23 11:12:20 +02:00
import {API_ERROR, HEADER_TYPE, HTTP_STATUS} from '../../../src/lib/constants';
2018-06-24 10:11:52 +02:00
import {DOMAIN_SERVERS, PORT_SERVER_APP} from '../config.functional';
const defaultPkg = {
'name': 'testexp-incomplete',
'versions': {
'0.1.0': {
'name': 'testexp_tags',
'version': '0.1.0',
'dist': {
'shasum': 'fake',
2018-06-23 11:12:20 +02:00
'tarball': `http://${DOMAIN_SERVERS}:${PORT_SERVER_APP}/testexp-incomplete/-/content-length.tar.gz`,
},
},
'0.1.1': {
'name': 'testexp_tags',
'version': '0.1.1',
'dist': {
'shasum': 'fake',
2018-06-23 11:12:20 +02:00
'tarball': `http://${DOMAIN_SERVERS}:${PORT_SERVER_APP}/testexp-incomplete/-/chunked.tar.gz`,
},
},
},
};
2017-12-02 11:19:08 +01:00
export default function (server, express) {
2018-06-23 11:12:20 +02:00
const listofCalls = [HEADER_TYPE.CONTENT_LENGTH, 'chunked'];
2017-12-02 11:19:08 +01:00
describe('test send incomplete packages', () => {
2017-12-02 11:19:08 +01:00
beforeAll(function () {
express.get('/testexp-incomplete', function (_, res) {
res.send(defaultPkg);
});
});
2018-06-24 10:11:52 +02:00
listofCalls.forEach((type) => {
test(`should not store tarballs / ${type}`, callback => {
let called;
2018-06-24 10:11:52 +02:00
express.get(`/testexp-incomplete/-/${type}.tar.gz`, function (_, response) {
if (called) {
return response.socket.destroy();
}
called = true;
if (type !== 'chunked') {
2018-06-23 11:12:20 +02:00
response.header(HEADER_TYPE.CONTENT_LENGTH, 1e6);
}
response.write('test test test\n');
setTimeout(function () {
response.socket.write('200\nsss\n');
response.socket.destroy();
cb();
}, 10);
});
server.request({uri: '/testexp-incomplete/-/' + type + '.tar.gz'})
2018-06-23 11:12:20 +02:00
.status(HTTP_STATUS.OK)
.response(function (res) {
if (type !== 'chunked') {
2018-06-23 11:12:20 +02:00
expect(parseInt(res.headers[HEADER_TYPE.CONTENT_LENGTH], 10)).toBe(1e6);
}
}).then(function (body) {
2018-06-23 11:12:20 +02:00
expect(body).toMatch(/test test test/);
});
function cb() {
server.request({uri: '/testexp-incomplete/-/' + type + '.tar.gz'})
2018-06-23 11:12:20 +02:00
.body_error(API_ERROR.INTERNAL_SERVER_ERROR)
.then(function () {
callback();
});
}
});
});
});
2017-12-02 11:19:08 +01:00
}