mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
69d7df20d8
* chore: enable pnp yarn * chore: ignore pnp * fix type issues on run eslint * add missing dependency and fix some errors * fix most of the errors some were just disabled, already fixed in master * add missing jest-config * update jest@26 align with other deps * add missing @babel/register * clean up * use yarn node * use yarn node on release * chore: add husky 6 * chore: add husky 6 * chore: lint-stage * chore: test * chore: add hook git * chore: test * chore: test * update deps * chore: fix commit lint * fix docker run * update git ignore
112 lines
2.8 KiB
TypeScript
112 lines
2.8 KiB
TypeScript
import path from 'path';
|
|
import request from 'supertest';
|
|
import rimraf from 'rimraf';
|
|
|
|
import { setup } from '../../../../src/lib/logger';
|
|
|
|
setup([]);
|
|
|
|
import { HEADERS, HTTP_STATUS } from '../../../../src/lib/constants';
|
|
import configDefault from '../../partials/config';
|
|
import endPointAPI from '../../../../src/api';
|
|
import { mockServer } from '../../__helper/mock';
|
|
import { DOMAIN_SERVERS } from '../../../functional/config.functional';
|
|
|
|
require('../../../../src/lib/logger').setup([]);
|
|
|
|
describe('api with no limited access configuration', () => {
|
|
let app;
|
|
let mockRegistry;
|
|
const store = path.join(__dirname, '../../partials/store/access-storage');
|
|
jest.setTimeout(10000);
|
|
|
|
beforeAll(function (done) {
|
|
const mockServerPort = 55530;
|
|
|
|
rimraf(store, async () => {
|
|
const configForTest = configDefault(
|
|
{
|
|
auth: {
|
|
htpasswd: {
|
|
file: './access-storage/htpasswd-pkg-access'
|
|
}
|
|
},
|
|
self_path: store,
|
|
uplinks: {
|
|
remote: {
|
|
url: `http://${DOMAIN_SERVERS}:${mockServerPort}`
|
|
}
|
|
},
|
|
logs: [{ type: 'stdout', format: 'pretty', level: 'warn' }]
|
|
},
|
|
'pkg.access.spec.yaml'
|
|
);
|
|
|
|
app = await endPointAPI(configForTest);
|
|
mockRegistry = await mockServer(mockServerPort).init();
|
|
done();
|
|
});
|
|
});
|
|
|
|
afterAll(function (done) {
|
|
rimraf(store, (err) => {
|
|
if (err) {
|
|
mockRegistry[0].stop();
|
|
return done(err);
|
|
}
|
|
|
|
mockRegistry[0].stop();
|
|
return done();
|
|
});
|
|
});
|
|
|
|
describe('test proxy packages partially restricted', () => {
|
|
test('should test fails on fetch endpoint /-/not-found', (done) => {
|
|
request(app)
|
|
// @ts-ignore
|
|
.get('/not-found-for-sure')
|
|
.set(HEADERS.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(HEADERS.CONTENT_TYPE, /json/)
|
|
.expect(HTTP_STATUS.NOT_FOUND)
|
|
.end(function (err) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
done();
|
|
});
|
|
});
|
|
|
|
test('should test fetch endpoint /-/jquery', (done) => {
|
|
request(app)
|
|
// @ts-ignore
|
|
.get('/jquery')
|
|
.set(HEADERS.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(HEADERS.CONTENT_TYPE, /json/)
|
|
.expect(HTTP_STATUS.OK)
|
|
.end(function (err) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
done();
|
|
});
|
|
});
|
|
|
|
test('should success on fetch endpoint /-/vue', (done) => {
|
|
request(app)
|
|
// @ts-ignore
|
|
.get('/vue')
|
|
.set(HEADERS.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(HEADERS.CONTENT_TYPE, /json/)
|
|
.expect(HTTP_STATUS.OK)
|
|
.end(function (err) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|