0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/test/unit/modules/access/pkg.access.spec.ts
Juan Picado 93468211d6
chore: update eslint dependencies (#2126)
* chore: update eslint

* chore: update rules and style

* chore: aling formatting

* chore: update ci rules

* chore: aling formatting

* chore: aling formatting
2021-03-14 08:42:46 +01:00

112 lines
2.8 KiB
TypeScript

import request from 'supertest';
import path from 'path';
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();
});
});
});
});