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:
parent
819f06015e
commit
ec36521ab8
2 changed files with 37 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue