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

91 lines
3.1 KiB
JavaScript
Raw Normal View History

import zlib from 'zlib';
import {readFile} from '../lib/test.utils';
2018-09-21 17:34:12 +02:00
import {HEADER_TYPE, HEADERS, HTTP_STATUS, CHARACTER_ENCODING} from "../../../src/lib/constants";
2014-03-30 23:05:42 +02:00
export default function(server, express) {
2018-06-22 07:49:10 +02:00
const PKG_NAME = 'testexp_gzip';
2018-06-24 10:11:52 +02:00
const PKG_VERSION = '0.0.1';
const PKG_BAD_DATA = 'testexp_baddata';
const VERSION_TOTAL = 4;
2017-04-19 21:15:28 +02:00
describe('test gzip support', () => {
beforeAll(function() {
2018-06-22 07:49:10 +02:00
express.get(`/${PKG_NAME}`, function(req, res) {
2018-06-24 10:11:52 +02:00
const pkg = JSON.parse(readFile('../fixtures/publish.json5')
2018-09-21 17:34:12 +02:00
.toString(CHARACTER_ENCODING.UTF8)
2018-06-22 07:49:10 +02:00
.replace(/__NAME__/g, PKG_NAME)
2018-06-24 10:11:52 +02:00
.replace(/__VERSION__/g, PKG_VERSION));
2014-03-30 23:05:42 +02:00
// overcoming compress threshold
2018-06-24 10:11:52 +02:00
for (let i = 1; i <= VERSION_TOTAL; i++) {
pkg.versions[`0.0.${i}`] = pkg.versions[PKG_VERSION];
}
2014-03-30 23:05:42 +02:00
2018-06-24 10:11:52 +02:00
zlib.gzip(JSON.stringify(pkg), (err, buf) => {
2018-06-22 07:49:10 +02:00
expect(err).toBeNull();
expect(req.headers[HEADER_TYPE.ACCEPT_ENCODING]).toBe(HEADERS.GZIP);
res.header(HEADER_TYPE.CONTENT_ENCODING, HEADERS.GZIP);
2017-04-19 21:15:28 +02:00
res.send(buf);
});
});
2014-03-30 23:05:42 +02:00
2018-06-24 10:11:52 +02:00
express.get(`/${PKG_BAD_DATA}`, function(req, res) {
expect(req).toBeDefined();
expect(res).toBeDefined();
2018-06-22 07:49:10 +02:00
expect(req.headers[HEADER_TYPE.ACCEPT_ENCODING]).toBe(HEADERS.GZIP);
res.header(HEADER_TYPE.CONTENT_ENCODING, HEADERS.GZIP);
2017-04-19 21:15:28 +02:00
res.send(new Buffer([1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 3, 2, 1]));
});
});
2014-03-30 23:05:42 +02:00
test('should not fail on bad gzip', () => {
2018-06-24 10:11:52 +02:00
return server.getPackage(PKG_BAD_DATA).status(HTTP_STATUS.NOT_FOUND);
2017-04-19 21:15:28 +02:00
});
2014-03-30 23:05:42 +02:00
2018-06-24 10:11:52 +02:00
test('should understand non gzipped data from uplink', () => {
2018-06-22 07:49:10 +02:00
return server.getPackage(PKG_NAME)
2018-06-24 10:11:52 +02:00
.status(HTTP_STATUS.OK)
.response((res) => {
expect(res.headers[HEADER_TYPE.CONTENT_ENCODING]).toBeUndefined();
}).then(body => {
expect(body.name).toBe(PKG_NAME);
expect(Object.keys(body.versions)).toHaveLength(VERSION_TOTAL);
});
2017-04-19 21:15:28 +02:00
});
2014-03-30 23:05:42 +02:00
test('should serve gzipped data', () => {
return server.request({
2018-06-24 10:11:52 +02:00
uri: `/${PKG_NAME}`,
encoding: null,
headers: {
2018-06-22 07:49:10 +02:00
[HEADER_TYPE.ACCEPT_ENCODING]: HEADERS.GZIP,
},
json: false,
2018-06-22 07:49:10 +02:00
}).status(HTTP_STATUS.OK)
2017-04-19 21:15:28 +02:00
.response(function(res) {
2018-06-22 07:49:10 +02:00
expect(res.headers[HEADER_TYPE.CONTENT_ENCODING]).toBe(HEADERS.GZIP);
})
2018-06-24 10:11:52 +02:00
.then(async function(body) {
// should fails since is zipped
2018-06-22 07:49:10 +02:00
expect(function() {
2018-09-21 17:34:12 +02:00
JSON.parse(body.toString(CHARACTER_ENCODING.UTF8));
2018-06-22 07:49:10 +02:00
}).toThrow(/Unexpected/);
2018-06-24 10:11:52 +02:00
// we unzip content and check content
await new Promise(function(resolve) {
zlib.gunzip(body, function(err, buffer) {
2018-06-22 07:49:10 +02:00
expect(err).toBeNull();
2018-06-24 10:11:52 +02:00
expect(buffer).not.toBeNull();
const unzipedBody = JSON.parse(buffer);
expect(unzipedBody.name).toBe(PKG_NAME);
expect(Object.keys(unzipedBody.versions)).toHaveLength(VERSION_TOTAL);
2017-04-19 21:15:28 +02:00
resolve();
});
});
});
});
});
}