mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
d41a990e97
Resolve one eslint warning
88 lines
2.3 KiB
JavaScript
88 lines
2.3 KiB
JavaScript
import request from 'supertest';
|
|
import _ from 'lodash';
|
|
import path from 'path';
|
|
import rimraf from 'rimraf';
|
|
|
|
import { HEADERS, HTTP_STATUS } from '../../../src/lib/constants';
|
|
import configDefault from '../partials/config/config_access';
|
|
import Config from '../../../src/lib/config';
|
|
import endPointAPI from '../../../src/api/index';
|
|
import {mockServer} from './mock';
|
|
import {DOMAIN_SERVERS} from '../../functional/config.functional';
|
|
|
|
require('../../../src/lib/logger').setup([]);
|
|
|
|
describe('api with no limited access configuration', () => {
|
|
let config;
|
|
let app;
|
|
let mockRegistry;
|
|
|
|
beforeAll(function(done) {
|
|
const mockServerPort = 55530;
|
|
const store = path.join(__dirname, './partials/store/access-storage');
|
|
rimraf(store, async () => {
|
|
const configForTest = _.clone(configDefault);
|
|
configForTest.auth = {
|
|
htpasswd: {
|
|
file: './access-storage/htpasswd-access-test'
|
|
}
|
|
};
|
|
configForTest.self_path = store;
|
|
configForTest.uplinks = {
|
|
npmjs: {
|
|
url: `http://${DOMAIN_SERVERS}:${mockServerPort}`
|
|
}
|
|
};
|
|
config = new Config(configForTest);
|
|
app = await endPointAPI(config);
|
|
mockRegistry = await mockServer(mockServerPort).init();
|
|
done();
|
|
});
|
|
});
|
|
|
|
afterAll(function(done) {
|
|
const store = path.join(__dirname, './partials/store/access-storage');
|
|
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)
|
|
.get('/jquery')
|
|
.set('content-type', HEADERS.JSON_CHARSET)
|
|
.expect('Content-Type', /json/)
|
|
.expect(HTTP_STATUS.NOT_FOUND)
|
|
.end(function(err, res) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
|
|
test('should success on fetch endpoint /-/vue', (done) => {
|
|
request(app)
|
|
.get('/vue')
|
|
.set('content-type', HEADERS.JSON_CHARSET)
|
|
.expect('Content-Type', /json/)
|
|
.expect(200)
|
|
.end(function(err, res) {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
});
|