mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
459b6fa72b
* Refactor local-storage async refactor local storage search stream Remove async from local-storage, refactor search with streams refactor search with undici fetch finish search refactor stream multiple request to single stream refactor storage types remove async dependency #1225 add score and refactor metadata remove old search async fix missing stream local data clean up clean up refactor folder search format fix some test fix issue on publish filter preview update ci delete package folder refactor refactor get packages methods fix tests fix lock file add changeset fix test windows disable some test update package json versions * fix merge * fix e2e cli * restore e2e * Update process.ts * Update process.ts * add improvement * format * Update utils.ts * test * test * Update search.spec.ts * Update search.spec.ts * Update search.spec.ts * test * Update ci.yml * clean up * fix tests * Update tags.ts * Update index.spec.ts * document changeset * format
113 lines
3.7 KiB
TypeScript
113 lines
3.7 KiB
TypeScript
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
/* global AbortController */
|
|
|
|
import path from 'path';
|
|
import semver from 'semver';
|
|
import getStream from 'get-stream';
|
|
import { Config, parseConfigFile } from '@verdaccio/config';
|
|
import { streamUtils } from '@verdaccio/core';
|
|
import { ProxyStorage } from '../src/up-storage';
|
|
|
|
// FUTURE: remove me when v15 is the min required version
|
|
if (semver.lte(process.version, 'v15.0.0')) {
|
|
global.AbortController = require('abortcontroller-polyfill/dist/cjs-ponyfill').AbortController;
|
|
}
|
|
|
|
const getConf = (name) => path.join(__dirname, '/conf', name);
|
|
|
|
const mockDebug = jest.fn();
|
|
const mockInfo = jest.fn();
|
|
const mockHttp = jest.fn();
|
|
const mockError = jest.fn();
|
|
const mockWarn = jest.fn();
|
|
jest.mock('@verdaccio/logger', () => {
|
|
const originalLogger = jest.requireActual('@verdaccio/logger');
|
|
return {
|
|
...originalLogger,
|
|
logger: {
|
|
child: () => ({
|
|
debug: (arg) => mockDebug(arg),
|
|
info: (arg) => mockInfo(arg),
|
|
http: (arg) => mockHttp(arg),
|
|
error: (arg) => mockError(arg),
|
|
warn: (arg) => mockWarn(arg),
|
|
}),
|
|
},
|
|
};
|
|
});
|
|
|
|
const { MockAgent } = require('undici');
|
|
const { setGlobalDispatcher } = require('undici-fetch');
|
|
const domain = 'https://registry.npmjs.org';
|
|
|
|
describe('proxy', () => {
|
|
const queryUrl = '/-/v1/search?maintenance=1&popularity=1&quality=1&size=10&text=verdaccio';
|
|
const defaultRequestOptions = {
|
|
url: domain,
|
|
};
|
|
const proxyPath = getConf('proxy1.yaml');
|
|
const conf = new Config(parseConfigFile(proxyPath));
|
|
|
|
const options = {
|
|
path: '/-/v1/search?maintenance=1&popularity=1&quality=1&size=10&text=verdaccio',
|
|
method: 'GET',
|
|
};
|
|
|
|
describe('search', () => {
|
|
test('get response from v1 endpoint', async () => {
|
|
const response = require('./partials/search-v1.json');
|
|
const mockAgent = new MockAgent({ connections: 1 });
|
|
mockAgent.disableNetConnect();
|
|
setGlobalDispatcher(mockAgent);
|
|
const mockClient = mockAgent.get(domain);
|
|
mockClient.intercept(options).reply(200, JSON.stringify(response));
|
|
const prox1 = new ProxyStorage(defaultRequestOptions, conf);
|
|
const abort = new AbortController();
|
|
const stream = await prox1.search({
|
|
abort,
|
|
url: queryUrl,
|
|
});
|
|
|
|
const searchResponse = await getStream(stream.pipe(streamUtils.transformObjectToString()));
|
|
expect(searchResponse).toEqual(searchResponse);
|
|
});
|
|
|
|
test('handle bad response 409', async () => {
|
|
const mockAgent = new MockAgent({ connections: 1 });
|
|
mockAgent.disableNetConnect();
|
|
setGlobalDispatcher(mockAgent);
|
|
const mockClient = mockAgent.get(domain);
|
|
mockClient.intercept(options).reply(409, {});
|
|
const abort = new AbortController();
|
|
const prox1 = new ProxyStorage(defaultRequestOptions, conf);
|
|
await expect(
|
|
prox1.search({
|
|
abort,
|
|
url: queryUrl,
|
|
})
|
|
).rejects.toThrow('bad status code 409 from uplink');
|
|
});
|
|
|
|
test.todo('abort search from v1 endpoint');
|
|
|
|
// TODO: we should test the gzip deflate here, but is hard to test
|
|
// fix me if you can deal with Incorrect Header Check issue
|
|
test.todo('get file from v1 endpoint with gzip headers');
|
|
|
|
test('search v1 endpoint fails', async () => {
|
|
const mockAgent = new MockAgent({ connections: 1 });
|
|
mockAgent.disableNetConnect();
|
|
setGlobalDispatcher(mockAgent);
|
|
const mockClient = mockAgent.get(domain);
|
|
mockClient.intercept(options).reply(500, {});
|
|
const abort = new AbortController();
|
|
const prox1 = new ProxyStorage(defaultRequestOptions, conf);
|
|
await expect(
|
|
prox1.search({
|
|
abort,
|
|
url: queryUrl,
|
|
})
|
|
).rejects.toThrow('bad status code 500 from uplink');
|
|
});
|
|
});
|
|
});
|