mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
test: add test for proxy access
the test will check whether avoiding proxy on uplink configuration avoid proxy access
This commit is contained in:
parent
bec7930bc0
commit
547da379e9
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,6 +6,7 @@ build/
|
|||||||
###
|
###
|
||||||
!bin/verdaccio
|
!bin/verdaccio
|
||||||
test-storage*
|
test-storage*
|
||||||
|
access-storage*
|
||||||
.verdaccio_test_env
|
.verdaccio_test_env
|
||||||
node_modules
|
node_modules
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
69
test/unit/api.pkg.access.spec.js
Normal file
69
test/unit/api.pkg.access.spec.js
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
import request from 'supertest';
|
||||||
|
import _ from 'lodash';
|
||||||
|
import path from 'path';
|
||||||
|
import rimraf from 'rimraf';
|
||||||
|
|
||||||
|
import configDefault from './partials/config/access';
|
||||||
|
import Config from '../../src/lib/config';
|
||||||
|
import Storage from '../../src/lib/storage';
|
||||||
|
import Auth from '../../src/lib/auth';
|
||||||
|
import indexAPI from '../../src/api/index';
|
||||||
|
|
||||||
|
require('../../src/lib/logger').setup([]);
|
||||||
|
|
||||||
|
describe('api with no limited access configuration', () => {
|
||||||
|
let config;
|
||||||
|
let storage;
|
||||||
|
let auth;
|
||||||
|
let app;
|
||||||
|
|
||||||
|
beforeAll(function(done) {
|
||||||
|
const store = path.join(__dirname, '../partials/store/access-storage');
|
||||||
|
rimraf(store, () => {
|
||||||
|
const configForTest = _.clone(configDefault);
|
||||||
|
configForTest.auth = {
|
||||||
|
htpasswd: {
|
||||||
|
file: './access-storage/htpasswd-access-test'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
configForTest.self_path = store;
|
||||||
|
config = new Config(configForTest);
|
||||||
|
storage = new Storage(config);
|
||||||
|
auth = new Auth(config);
|
||||||
|
app = indexAPI(config, auth, storage);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('test proxy packages partially restricted', () => {
|
||||||
|
|
||||||
|
test('should test fails on fetch endpoint /-/jquery', (done) => {
|
||||||
|
request(app)
|
||||||
|
.get('/jquery')
|
||||||
|
.set('content-type', 'application/json; charset=utf-8')
|
||||||
|
.expect('Content-Type', /json/)
|
||||||
|
.expect(404)
|
||||||
|
.end(function(err, res) {
|
||||||
|
if (err) {
|
||||||
|
return done(err);
|
||||||
|
}
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('should success on fetch endpoint /-/react', (done) => {
|
||||||
|
request(app)
|
||||||
|
.get('/react')
|
||||||
|
.set('content-type', 'application/json; charset=utf-8')
|
||||||
|
.expect('Content-Type', /json/)
|
||||||
|
.expect(200)
|
||||||
|
.end(function(err, res) {
|
||||||
|
if (err) {
|
||||||
|
return done(err);
|
||||||
|
}
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
26
test/unit/partials/config/access.js
Normal file
26
test/unit/partials/config/access.js
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import path from 'path';
|
||||||
|
|
||||||
|
const config = {
|
||||||
|
storage: path.join(__dirname, '../store/access-storage'),
|
||||||
|
uplinks: {
|
||||||
|
'npmjs': {
|
||||||
|
'url': 'https://registry.npmjs.org/'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
packages: {
|
||||||
|
'jquery': {
|
||||||
|
allow_access: '$all',
|
||||||
|
allow_publish: '$all'
|
||||||
|
},
|
||||||
|
'**': {
|
||||||
|
allow_access: '$all',
|
||||||
|
allow_publish: '$all',
|
||||||
|
proxy: 'npmjs'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
logs: [
|
||||||
|
{type: 'stdout', format: 'pretty', level: 'fatal'},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = config;
|
Loading…
Reference in New Issue
Block a user