2019-08-19 14:41:09 +03:00
|
|
|
var should = require('should'),
|
|
|
|
sinon = require('sinon'),
|
2020-04-22 08:26:13 +03:00
|
|
|
versionMatch = require('../../../../../core/server/web/api/middleware/version-match');
|
2016-06-09 18:14:36 +03:00
|
|
|
|
|
|
|
describe('Version Mismatch', function () {
|
|
|
|
var req, res, getStub, nextStub;
|
|
|
|
afterEach(function () {
|
2019-01-21 19:53:44 +03:00
|
|
|
sinon.restore();
|
2016-06-09 18:14:36 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(function () {
|
2019-01-21 19:53:44 +03:00
|
|
|
getStub = sinon.stub();
|
|
|
|
nextStub = sinon.stub();
|
2016-06-09 18:14:36 +03:00
|
|
|
|
|
|
|
req = {
|
|
|
|
get: getStub
|
|
|
|
};
|
|
|
|
res = {
|
2017-08-22 12:59:01 +03:00
|
|
|
locals: {}
|
2016-06-09 18:14:36 +03:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2017-08-22 12:59:01 +03:00
|
|
|
function testVersionMatch(serverVersion, clientVersion) {
|
|
|
|
// Set the server version
|
|
|
|
res.locals.version = serverVersion;
|
|
|
|
|
|
|
|
if (clientVersion) {
|
|
|
|
// Optionally set the client version
|
|
|
|
getStub.returns(clientVersion);
|
|
|
|
}
|
|
|
|
|
2016-06-09 18:14:36 +03:00
|
|
|
versionMatch(req, res, nextStub);
|
2017-08-22 12:59:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
it('should call next if request does not include a version', function () {
|
|
|
|
var server = '1.5.1';
|
|
|
|
|
|
|
|
testVersionMatch(server);
|
2016-06-09 18:14:36 +03:00
|
|
|
|
|
|
|
nextStub.calledOnce.should.be.true();
|
|
|
|
nextStub.firstCall.args.should.be.empty();
|
|
|
|
});
|
|
|
|
|
2017-08-22 12:59:01 +03:00
|
|
|
it('should call next if versions are an exact match', function () {
|
|
|
|
var server = '1.5.0',
|
|
|
|
client = '1.5';
|
|
|
|
|
|
|
|
testVersionMatch(server, client);
|
2016-06-09 18:14:36 +03:00
|
|
|
|
|
|
|
nextStub.calledOnce.should.be.true();
|
|
|
|
nextStub.firstCall.args.should.be.empty();
|
|
|
|
});
|
|
|
|
|
2017-08-22 12:59:01 +03:00
|
|
|
it('should call next if client version is earlier than server', function () {
|
|
|
|
var server = '1.5.0',
|
|
|
|
client = '1.3';
|
|
|
|
|
|
|
|
testVersionMatch(server, client);
|
|
|
|
|
|
|
|
nextStub.calledOnce.should.be.true();
|
|
|
|
nextStub.firstCall.args.should.be.empty();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should throw VersionMismatchError if client version is earlier by a major version', function () {
|
|
|
|
var server = '2.5.0',
|
|
|
|
client = '1.3';
|
|
|
|
|
|
|
|
testVersionMatch(server, client);
|
|
|
|
|
|
|
|
nextStub.calledOnce.should.be.true();
|
|
|
|
nextStub.firstCall.args.should.have.lengthOf(1);
|
|
|
|
nextStub.firstCall.args[0].should.have.property('errorType', 'VersionMismatchError');
|
|
|
|
nextStub.firstCall.args[0].should.have.property('statusCode', 400);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should throw VersionMismatchError if client version is later than server', function () {
|
|
|
|
var server = '1.3.0',
|
|
|
|
client = '1.5';
|
|
|
|
|
|
|
|
testVersionMatch(server, client);
|
|
|
|
|
|
|
|
nextStub.calledOnce.should.be.true();
|
|
|
|
nextStub.firstCall.args.should.have.lengthOf(1);
|
|
|
|
nextStub.firstCall.args[0].should.have.property('errorType', 'VersionMismatchError');
|
|
|
|
nextStub.firstCall.args[0].should.have.property('statusCode', 400);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should throw VersionMismatchError if client version is later by a major version', function () {
|
|
|
|
var server = '1.5.0',
|
|
|
|
client = '2.3';
|
|
|
|
|
|
|
|
testVersionMatch(server, client);
|
2016-06-09 18:14:36 +03:00
|
|
|
|
|
|
|
nextStub.calledOnce.should.be.true();
|
|
|
|
nextStub.firstCall.args.should.have.lengthOf(1);
|
|
|
|
nextStub.firstCall.args[0].should.have.property('errorType', 'VersionMismatchError');
|
|
|
|
nextStub.firstCall.args[0].should.have.property('statusCode', 400);
|
|
|
|
});
|
2018-01-03 22:20:18 +03:00
|
|
|
|
|
|
|
it('should call next if pre-release is allowed', function () {
|
|
|
|
var server = '1.5.0-pre',
|
|
|
|
client = '1.4';
|
|
|
|
|
|
|
|
testVersionMatch(server, client);
|
|
|
|
|
|
|
|
nextStub.calledOnce.should.be.true();
|
|
|
|
nextStub.firstCall.args.should.be.empty();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('throws error if server is a pre-release, but later by major version', function () {
|
|
|
|
var server = '2.0.0-alpha',
|
|
|
|
client = '1.5';
|
|
|
|
|
|
|
|
testVersionMatch(server, client);
|
|
|
|
|
|
|
|
nextStub.calledOnce.should.be.true();
|
|
|
|
nextStub.firstCall.args.should.have.lengthOf(1);
|
|
|
|
nextStub.firstCall.args[0].should.have.property('errorType', 'VersionMismatchError');
|
|
|
|
nextStub.firstCall.args[0].should.have.property('statusCode', 400);
|
|
|
|
});
|
2016-06-09 18:14:36 +03:00
|
|
|
});
|