2018-01-25 15:36:26 -05:00
|
|
|
import request from 'supertest';
|
2018-01-25 17:14:03 -05:00
|
|
|
import _ from 'lodash';
|
|
|
|
import path from 'path';
|
|
|
|
import rimraf from 'rimraf';
|
|
|
|
|
2018-01-25 17:31:47 -05:00
|
|
|
import configDefault from './partials/config';
|
|
|
|
import Config from '../../src/lib/config';
|
|
|
|
import Storage from '../../src/lib/storage';
|
|
|
|
import Auth from '../../src/lib/auth';
|
|
|
|
import indexAPI from '../../src/api/index';
|
2018-01-25 15:36:26 -05:00
|
|
|
|
2018-01-25 17:31:47 -05:00
|
|
|
require('../../src/lib/logger').setup([]);
|
2018-01-25 15:36:26 -05:00
|
|
|
|
|
|
|
describe('endpoint unit test', () => {
|
|
|
|
let config;
|
|
|
|
let storage;
|
|
|
|
let auth;
|
|
|
|
let app;
|
|
|
|
|
2018-01-25 17:14:03 -05:00
|
|
|
beforeAll(function(done) {
|
2018-01-25 17:31:47 -05:00
|
|
|
const store = path.join(__dirname, './partials/store/test-storage');
|
2018-01-25 17:14:03 -05:00
|
|
|
rimraf(store, () => {
|
|
|
|
const configForTest = _.clone(configDefault);
|
|
|
|
configForTest.auth = {
|
|
|
|
htpasswd: {
|
|
|
|
file: './test-storage/htpasswd-test'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
configForTest.self_path = store;
|
|
|
|
config = new Config(configForTest);
|
|
|
|
storage = new Storage(config);
|
|
|
|
auth = new Auth(config);
|
|
|
|
app = indexAPI(config, auth, storage);
|
|
|
|
done();
|
|
|
|
});
|
2018-01-25 15:36:26 -05:00
|
|
|
});
|
|
|
|
|
2018-01-25 17:14:03 -05:00
|
|
|
describe('should test ping api', () => {
|
|
|
|
test('should test endpoint /-/ping', (done) => {
|
2018-01-25 15:36:26 -05:00
|
|
|
request(app)
|
|
|
|
.get('/-/ping')
|
|
|
|
.expect('Content-Type', /json/)
|
2018-01-25 17:14:03 -05:00
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
2018-01-25 15:36:26 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-01-25 17:14:03 -05:00
|
|
|
describe('should test whoami api', () => {
|
|
|
|
test('should test /-/whoami endpoint', (done) => {
|
2018-01-25 15:36:26 -05:00
|
|
|
request(app)
|
|
|
|
.get('/-/whoami')
|
|
|
|
.expect('Content-Type', /json/)
|
2018-01-25 17:14:03 -05:00
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
2018-01-25 15:36:26 -05:00
|
|
|
});
|
|
|
|
|
2018-01-25 17:14:03 -05:00
|
|
|
test('should test /whoami endpoint', (done) => {
|
2018-01-25 15:36:26 -05:00
|
|
|
request(app)
|
|
|
|
.get('/-/whoami')
|
|
|
|
.expect('Content-Type', /json/)
|
2018-01-25 17:14:03 -05:00
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('should test user api', () => {
|
|
|
|
const credentials = { name: 'Jota', password: 'secretPass' };
|
|
|
|
|
2018-01-26 01:35:41 -05:00
|
|
|
test('should test add a new user', (done) => {
|
2018-01-25 17:14:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.put('/-/user/org.couchdb.user:jota')
|
|
|
|
.send(credentials)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(201)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body.ok).toBeDefined();
|
|
|
|
expect(res.body.ok).toMatch(`user '${credentials.name}' created`);
|
|
|
|
done();
|
|
|
|
});
|
2018-01-25 15:36:26 -05:00
|
|
|
});
|
2018-01-25 17:14:03 -05:00
|
|
|
|
2018-01-26 01:35:41 -05:00
|
|
|
test('should test fails add a new user with missing name', (done) => {
|
|
|
|
|
|
|
|
const credentialsShort = _.clone(credentials);
|
|
|
|
delete credentialsShort.name;
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.put('/-/user/org.couchdb.user:jota')
|
|
|
|
.send(credentialsShort)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(409)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body.error).toBeDefined();
|
|
|
|
expect(res.body.error).toMatch(/username should not contain non-uri-safe characters/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should test fails add a new user with missing password', (done) => {
|
|
|
|
|
|
|
|
const credentialsShort = _.clone(credentials);
|
|
|
|
delete credentialsShort.password;
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.put('/-/user/org.couchdb.user:jota')
|
|
|
|
.send(credentialsShort)
|
|
|
|
.expect('Content-Type', /json/)
|
2018-01-27 20:40:07 -05:00
|
|
|
.expect(403)
|
2018-01-26 01:35:41 -05:00
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body.error).toBeDefined();
|
2018-01-27 20:40:07 -05:00
|
|
|
//FIXME: message is not 100% accurate
|
2018-01-26 01:35:41 -05:00
|
|
|
expect(res.body.error).toMatch(/this user already exists/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should test fails add a new user', (done) => {
|
2018-01-25 17:14:03 -05:00
|
|
|
|
|
|
|
request(app)
|
|
|
|
.put('/-/user/org.couchdb.user:jota')
|
|
|
|
.send(credentials)
|
|
|
|
.expect('Content-Type', /json/)
|
2018-01-27 20:40:07 -05:00
|
|
|
.expect(403)
|
2018-01-25 17:14:03 -05:00
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body.error).toBeDefined();
|
2018-01-27 20:40:07 -05:00
|
|
|
//FIXME: message is not 100% accurate
|
2018-01-25 17:14:03 -05:00
|
|
|
expect(res.body.error).toMatch(/this user already exists/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-01-26 01:35:41 -05:00
|
|
|
test('should test fails add a new user with wrong password', (done) => {
|
|
|
|
|
|
|
|
const credentialsShort = _.clone(credentials);
|
|
|
|
credentialsShort.password = 'failPassword';
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.put('/-/user/org.couchdb.user:jota')
|
|
|
|
.send(credentialsShort)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
//TODO: this should return 401 and will fail when issue
|
|
|
|
// https://github.com/verdaccio/verdaccio-htpasswd/issues/5
|
|
|
|
// is being fixed
|
2018-01-27 20:40:07 -05:00
|
|
|
.expect(403)
|
2018-01-26 01:35:41 -05:00
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body.error).toBeDefined();
|
|
|
|
expect(res.body.error).toMatch(/this user already exists/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-01-25 15:36:26 -05:00
|
|
|
});
|
|
|
|
|
2018-01-28 05:38:22 -05:00
|
|
|
describe('should test package api', () => {
|
|
|
|
|
|
|
|
test('should fetch jquery package from remote uplink', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/jquery')
|
|
|
|
.set('content-type', 'application/json; charset=utf-8')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body).toBeDefined();
|
|
|
|
expect(res.body.name).toMatch(/jquery/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-01-28 05:53:49 -05:00
|
|
|
test('should fetch jquery specific version package from remote uplink', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/jquery/1.5.1')
|
|
|
|
.set('content-type', 'application/json; charset=utf-8')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body).toBeDefined();
|
|
|
|
expect(res.body.name).toMatch(/jquery/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fetch jquery specific tag package from remote uplink', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/jquery/latest')
|
|
|
|
.set('content-type', 'application/json; charset=utf-8')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body).toBeDefined();
|
|
|
|
expect(res.body.name).toMatch(/jquery/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-01-28 08:40:38 -05:00
|
|
|
test('should fails on fetch jquery specific tag package from remote uplink', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/jquery/never-will-exist-this-tag')
|
|
|
|
.set('content-type', 'application/json; charset=utf-8')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(404)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-01-28 05:38:22 -05:00
|
|
|
test('should not found a unexisting remote package under scope', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/@verdaccio/not-found')
|
|
|
|
.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 forbid access to remote package', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/forbidden-place')
|
|
|
|
.set('content-type', 'application/json; charset=utf-8')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(403)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fetch a tarball from remote uplink', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/jquery/-/jquery-1.5.1.tgz')
|
|
|
|
.expect('Content-Type', /application\/octet-stream/)
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body).toBeDefined();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fails fetch a tarball from remote uplink', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/jquery/-/jquery-0.0.1.tgz')
|
|
|
|
.expect('Content-Type', /application\/octet-stream/)
|
|
|
|
.expect(404)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2018-01-28 08:40:38 -05:00
|
|
|
describe('should test dist-tag api', () => {
|
|
|
|
const jqueryVersion = '2.1.2';
|
|
|
|
const jqueryUpdatedVersion = {
|
|
|
|
'beta': '3.0.0',
|
|
|
|
'jota': '1.6.3'
|
|
|
|
};
|
|
|
|
|
|
|
|
test('should set a new tag on jquery', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.put('/jquery/verdaccio-tag')
|
|
|
|
.send(JSON.stringify(jqueryVersion))
|
|
|
|
.set('accept', 'gzip')
|
|
|
|
.set('accept-encoding', 'application/json')
|
|
|
|
.set('content-type', 'application/json')
|
|
|
|
.expect(201)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body.ok).toBeDefined();
|
|
|
|
expect(res.body.ok).toMatch(/package tagged/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fetch all tag for jquery', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/-/package/jquery/dist-tags')
|
|
|
|
.set('accept-encoding', 'application/json')
|
|
|
|
.set('content-type', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body).toBeDefined();
|
|
|
|
expect(res.body['verdaccio-tag']).toMatch(jqueryVersion);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should update a new tag on jquery', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.post('/-/package/jquery/dist-tags')
|
|
|
|
.send(JSON.stringify(jqueryUpdatedVersion))
|
|
|
|
.set('content-type', 'application/json')
|
|
|
|
.expect(201)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body.ok).toBeDefined();
|
|
|
|
expect(res.body.ok).toMatch(/tags updated/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fetch all tags for jquery and ccheck previous update', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.get('/-/package/jquery/dist-tags')
|
|
|
|
.set('accept-encoding', 'application/json')
|
|
|
|
.set('content-type', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body).toBeDefined();
|
|
|
|
expect(res.body['beta']).toMatch(jqueryUpdatedVersion['beta']);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should set a remove a tag on jquery', (done) => {
|
|
|
|
|
|
|
|
request(app)
|
|
|
|
.del('/-/package/jquery/dist-tags/verdaccio-tag')
|
|
|
|
.set('accept-encoding', 'application/json')
|
|
|
|
.set('content-type', 'application/json')
|
|
|
|
//.expect('Content-Type', /json/)
|
|
|
|
.expect(201)
|
|
|
|
.end(function(err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(res.body.ok).toBeDefined();
|
|
|
|
expect(res.body.ok).toMatch(/tag removed/);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2018-01-25 15:36:26 -05:00
|
|
|
});
|