Skip to content
This repository has been archived by the owner on Dec 19, 2022. It is now read-only.

Commit

Permalink
Proper validation of min and max
Browse files Browse the repository at this point in the history
optimization
  • Loading branch information
Mehdi Valikhani committed Mar 18, 2015
1 parent 50aadc5 commit afe98a2
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 5 deletions.
22 changes: 17 additions & 5 deletions lib/matchers/number.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
var s = require('../s');
var s = require('../s');
var utils = require('../utils');
var hasValue = utils.hasValue;

var parseFloatFromString = function (value) {
if(/^(\-|\+)?([0-9]+(\.[0-9]+)?)$/.test(value))
Expand All @@ -7,9 +9,19 @@ var parseFloatFromString = function (value) {
}

module.exports = function (opts) {

if (!opts) opts = {};

var hasMinValue = hasValue(opts.min);
var hasMaxValue = hasValue(opts.max);

if(hasMinValue && typeof opts.min !== 'number') {
throw new Error('Invalid minimum option: ' + opts.min);
}

if(hasMaxValue && typeof opts.max !== 'number') {
throw new Error('Invalid maximum option: ' + opts.max);
}

return s(function(value) {

if (opts.parse) {
Expand All @@ -21,13 +33,13 @@ module.exports = function (opts) {
}

if (opts) {
if (opts.min && opts.max && (value < opts.min || value > opts.max)) {
if (hasMinValue && hasMaxValue && (value < opts.min || value > opts.max)) {
return 'should be a number between ' + opts.min + ' and ' + opts.max;
}
if (opts.min && value < opts.min) {
if (hasMinValue && value < opts.min) {
return 'should be a number >= ' + opts.min;
}
if (opts.max && value > opts.max) {
if (hasMaxValue && value > opts.max) {
return 'should be a number <= ' + opts.max;
}
}
Expand Down
7 changes: 7 additions & 0 deletions lib/utils.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
var hasValue = function(val){
return (typeof val !== 'undefined') && (val !== null);
}

module.exports = {
hasValue: hasValue
}
17 changes: 17 additions & 0 deletions test/matchers/number.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,27 @@ describe('number matcher', function() {

it('supports min and max', function() {
number({min: 3})('', 0).should.have.error(/should be a number >= 3/);
number({min: 0})('', -10).should.have.error(/should be a number >= 0/);
number({max: 0})('', 12).should.have.error(/should be a number <= 0/);
number({max: 3})('', 5).should.have.error(/should be a number <= 3/);
number({min: 3, max: 5})('', 7).should.have.error(/should be a number between 3 and 5/);
});

it('fails for invalid min or max values', function(){
var shouldFail = function(val) {
(function(){
number({min: val});
}).should.throw('Invalid minimum option: ' + val);

(function(){
number({max: val});
}).should.throw('Invalid maximum option: ' + val);
}

var invalidValues = ['a', '', {}, []];
invalidValues.forEach(shouldFail);
});

it('can parse string into number', function() {
number({parse: true})('', 0).should.not.have.error();
number({parse: true})('', 3).should.not.have.error();
Expand Down
28 changes: 28 additions & 0 deletions test/util.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
var utils = require('../lib/utils');
var hasValue = utils.hasValue;

describe("hasValue() util function", function(){
it('Should return false when value is <null>', function(){
hasValue(null).should.be.false;
});

it('Should return false when value is <undefined>', function(){
hasValue(undefined).should.be.false;
});

it('Should return true when value is a number', function(){
hasValue(12).should.be.true;
});

it('Should return true when value is a string', function(){
hasValue('a').should.be.true;
});

it('Should return true when value is <{}>', function(){
hasValue({}).should.be.true;
});

it('Should return true when value is <"">', function(){
hasValue('').should.be.true;
});
});

0 comments on commit afe98a2

Please sign in to comment.