1
0
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:
Juan Picado @jotadeveloper 2018-03-11 18:55:19 +01:00
parent bec7930bc0
commit 547da379e9
No known key found for this signature in database
GPG Key ID: 18AC54485952D158
3 changed files with 96 additions and 0 deletions

1
.gitignore vendored

@ -6,6 +6,7 @@ build/
###
!bin/verdaccio
test-storage*
access-storage*
.verdaccio_test_env
node_modules
package-lock.json

@ -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();
});
});
});
});

@ -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;