mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
66f4197236
* chore: test * chore: add * chore: more progress * chore: progress in migration, fix prettier parser * chore: reduce tsc errors * chore: refactor storage utils types * chore: refactor utils types * chore: refactor local storage types * chore: refactor config utils types * chore: refactor tsc types * refactor: apply eslint fix, tabs etc * chore: fix lint errors * test: update unit test conf to typescript setup few test refactored to typescript * chore: enable more unit test migrate to typescript * chore: migrate storage test to tsc * chore: migrate up storage test to tsc * refactor: enable plugin and auth test * chore: migrate plugin loader test * chore: update dependencies * chore: migrate functional test to typescript * chore: add codecove * chore: update express * chore: downgrade puppeteer The latest version does not seems to work properly fine. * chore: update dependencies
95 lines
2.3 KiB
TypeScript
95 lines
2.3 KiB
TypeScript
import request from 'supertest';
|
|
import _ from 'lodash';
|
|
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/config_access';
|
|
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 = _.assign({}, _.cloneDeep(configDefault), {
|
|
auth: {
|
|
htpasswd: {
|
|
file: './access-storage/htpasswd-pkg-access'
|
|
}
|
|
},
|
|
self_path: store,
|
|
uplinks: {
|
|
npmjs: {
|
|
url: `http://${DOMAIN_SERVERS}:${mockServerPort}`
|
|
}
|
|
}
|
|
});
|
|
|
|
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 /-/jquery', (done) => {
|
|
request(app)
|
|
// @ts-ignore
|
|
.get('/jquery')
|
|
.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 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, res) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
});
|