0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

fix(dist-tag): fix #411 latest tag is incorrect

This commit is contained in:
Juan Picado @jotadeveloper 2018-01-28 11:53:49 +01:00
parent 819f06015e
commit ec36521ab8
No known key found for this signature in database
GPG key ID: 18AC54485952D158
2 changed files with 37 additions and 3 deletions

View file

@ -1,5 +1,3 @@
'use strict';
const _ = require('lodash');
const createError = require('http-errors');
@ -30,7 +28,7 @@ module.exports = function(route, auth, storage, config) {
if (_.isNil(info['dist-tags'][queryVersion]) === false) {
queryVersion = info['dist-tags'][queryVersion];
t = Utils.get_version(info, queryVersion);
if (_.isNil(t)) {
if (_.isNil(t) === false) {
return next(t);
}
}

View file

@ -208,6 +208,42 @@ describe('endpoint unit test', () => {
});
});
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();
});
});
test('should not found a unexisting remote package under scope', (done) => {
request(app)