Cleanup lib and build unit tests.

Former-commit-id: 96171aa70fee408f5237e0615ace4faa6541caa7
This commit is contained in:
John-David Dalton
2012-12-09 21:59:05 -08:00
parent 11cd924ce1
commit 8684f75254
2 changed files with 142 additions and 111 deletions

View File

@@ -444,7 +444,7 @@
console.log(e); console.log(e);
pass = false; pass = false;
} }
equal(pass, true, '_.' + methodName + ': ' + message); ok(pass, '_.' + methodName + ': ' + message);
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
@@ -632,7 +632,7 @@
return pass; return pass;
}); });
equal(actual, true, basename); ok(actual, basename);
start(); start();
}); });
}); });
@@ -664,12 +664,18 @@
ok(lodash(1).chain() instanceof lodash, '_#chain: ' + basename); ok(lodash(1).chain() instanceof lodash, '_#chain: ' + basename);
var wrapped = lodash(1); var wrapped = lodash(1);
equal(wrapped.clone() instanceof lodash, false, '_(...) wrapped values are not chainable by default: ' + basename); strictEqual(wrapped.identity(), 1, '_(...) wrapped values are not chainable by default: ' + basename);
equal(String(wrapped) === '1', false, '_#toString should not be implemented: ' + basename); equal(String(wrapped) === '1', false, '_#toString should not be implemented: ' + basename);
equal(Number(wrapped) === 1 , false, '_#valueOf should not be implemented: ' + basename); equal(Number(wrapped) === 1 , false, '_#valueOf should not be implemented: ' + basename);
wrapped.chain(); wrapped.chain();
equal(wrapped.has('x') instanceof lodash, true, '_#has returns wrapped values when chaining: ' + basename); ok(wrapped.has('x') instanceof lodash, '_#has returns wrapped values when chaining: ' + basename);
ok(wrapped.join() instanceof lodash, '_#join returns wrapped values when chaining: ' + basename);
wrapped = lodash([1, 2, 3]);
ok(wrapped.pop() instanceof lodash, '_#pop returns wrapped values: ' + basename);
ok(wrapped.shift() instanceof lodash, '_#shift returns wrapped values: ' + basename);
deepEqual(wrapped.splice(0, 0).value(), [2], '_#splice returns wrapper: ' + basename);
start(); start();
}); });
@@ -697,10 +703,10 @@
var object = { 'fn': lodash.bind(function(foo) { return foo + this.bar; }, { 'bar': 1 }, 1) }; var object = { 'fn': lodash.bind(function(foo) { return foo + this.bar; }, { 'bar': 1 }, 1) };
equal(object.fn(), 2, '_.bind: ' + basename); equal(object.fn(), 2, '_.bind: ' + basename);
ok(lodash.clone(array, true)[0] === array[0], '_.clone should be shallow: ' + basename); strictEqual(lodash.clone(array, true)[0], array[0], '_.clone should be shallow: ' + basename);
equal(lodash.contains({ 'a': 1, 'b': 2 }, 1), true, '_.contains should work with objects: ' + basename); ok(lodash.contains({ 'a': 1, 'b': 2 }, 1), '_.contains should work with objects: ' + basename);
equal(lodash.contains([1, 2, 3], 1, 2), true, '_.contains should ignore `fromIndex`: ' + basename); ok(lodash.contains([1, 2, 3], 1, 2), '_.contains should ignore `fromIndex`: ' + basename);
equal(lodash.every([true, false, true]), false, '_.every: ' + basename); ok(!lodash.every([true, false, true]), '_.every: ' + basename);
function Foo() {} function Foo() {}
Foo.prototype = { 'a': 1 }; Foo.prototype = { 'a': 1 };
@@ -739,7 +745,7 @@
actual = lodash.pick(object, function(value) { return value != 3; }); actual = lodash.pick(object, function(value) { return value != 3; });
deepEqual(_.keys(actual), [], '_.pick should not accept a `callback`: ' + basename); deepEqual(_.keys(actual), [], '_.pick should not accept a `callback`: ' + basename);
equal(lodash.some([false, true, false]), true, '_.some: ' + basename); ok(lodash.some([false, true, false]), '_.some: ' + basename);
equal(lodash.template('${a}', object), '${a}', '_.template should ignore ES6 delimiters: ' + basename); equal(lodash.template('${a}', object), '${a}', '_.template should ignore ES6 delimiters: ' + basename);
equal(lodash.uniqueId(0), '1', '_.uniqueId should ignore a prefix of `0`: ' + basename); equal(lodash.uniqueId(0), '1', '_.uniqueId should ignore a prefix of `0`: ' + basename);
@@ -843,8 +849,8 @@
case 1: case 1:
context.exports = {}; context.exports = {};
vm.runInContext(source, context); vm.runInContext(source, context);
ok(context._ === undefined, basename); ok(_.isFunction(context.exports._), basename);
ok(_.isFunction(context.exports._), basename) strictEqual(context._, undefined, basename);
break; break;
case 2: case 2:
@@ -856,13 +862,13 @@
context.exports = {}; context.exports = {};
context.module = { 'exports': context.exports }; context.module = { 'exports': context.exports };
vm.runInContext(source, context); vm.runInContext(source, context);
ok(context._ === undefined, basename);
ok(_.isFunction(context.module.exports), basename); ok(_.isFunction(context.module.exports), basename);
strictEqual(context._, undefined, basename);
break; break;
case 4: case 4:
vm.runInContext(source, context); vm.runInContext(source, context);
ok(context._ === undefined, basename); strictEqual(context._, undefined, basename);
} }
start(); start();
}); });
@@ -978,7 +984,6 @@
} catch(e) { } catch(e) {
console.log(e); console.log(e);
} }
var underscore = context._ || {}; var underscore = context._ || {};
ok(_.isString(underscore.VERSION)); ok(_.isString(underscore.VERSION));
ok(!/Lo-Dash/.test(result) && result.match(/\n/g).length < source.match(/\n/g).length); ok(!/Lo-Dash/.test(result) && result.match(/\n/g).length < source.match(/\n/g).length);
@@ -1019,7 +1024,7 @@
deepEqual(lodash.merge(object1, object2), object3, basename); deepEqual(lodash.merge(object1, object2), object3, basename);
deepEqual(lodash.sortBy([3, 2, 1], _.identity), array, basename); deepEqual(lodash.sortBy([3, 2, 1], _.identity), array, basename);
equal(lodash.isEqual(circular1, circular2), true, basename); ok(lodash.isEqual(circular1, circular2), basename);
var actual = lodash.clone(circular1, true); var actual = lodash.clone(circular1, true);
ok(actual != circular1 && actual.b == actual, basename); ok(actual != circular1 && actual.b == actual, basename);

View File

@@ -281,7 +281,7 @@
ok(_.isEqual(object, clone)); ok(_.isEqual(object, clone));
if (_.isObject(object)) { if (_.isObject(object)) {
ok(clone !== object); notStrictEqual(clone, object);
} else { } else {
skipTest(); skipTest();
} }
@@ -290,8 +290,8 @@
_.forOwn(nonCloneable, function(object, key) { _.forOwn(nonCloneable, function(object, key) {
test('should not clone ' + key, function() { test('should not clone ' + key, function() {
ok(_.clone(object) === object); strictEqual(_.clone(object), object);
ok(_.clone(object, true) === object); strictEqual(_.clone(object, true), object);
}); });
}); });
@@ -325,9 +325,9 @@
test('should clone problem JScript properties (test in IE < 9)', function() { test('should clone problem JScript properties (test in IE < 9)', function() {
deepEqual(_.clone(shadowed), shadowed); deepEqual(_.clone(shadowed), shadowed);
ok(_.clone(shadowed) != shadowed); notEqual(_.clone(shadowed), shadowed);
deepEqual(_.clone(shadowed, true), shadowed); deepEqual(_.clone(shadowed, true), shadowed);
ok(_.clone(shadowed, true) != shadowed); notEqual(_.clone(shadowed, true), shadowed);
}); });
}(1, 2, 3)); }(1, 2, 3));
@@ -343,7 +343,7 @@
}, },
function(collection, key) { function(collection, key) {
test('should work with ' + key + ' and a positive `fromIndex`', function() { test('should work with ' + key + ' and a positive `fromIndex`', function() {
equal(_.contains(collection, 1, 2), true); ok(_.contains(collection, 1, 2));
}); });
test('should work with ' + key + ' and a `fromIndex` >= collection\'s length', function() { test('should work with ' + key + ' and a `fromIndex` >= collection\'s length', function() {
@@ -354,12 +354,12 @@
}); });
test('should work with ' + key + ' and a negative `fromIndex`', function() { test('should work with ' + key + ' and a negative `fromIndex`', function() {
equal(_.contains(collection, 2, -3), true); ok(_.contains(collection, 2, -3));
}); });
test('should work with ' + key + ' and a negative `fromIndex` <= negative collection\'s length', function() { test('should work with ' + key + ' and a negative `fromIndex` <= negative collection\'s length', function() {
equal(_.contains(collection, 1, -6), true); ok(_.contains(collection, 1, -6));
equal(_.contains(collection, 2, -8), true); ok(_.contains(collection, 2, -8));
}); });
}); });
@@ -369,8 +369,8 @@
}, },
function(collection, key) { function(collection, key) {
test('should work with a string ' + key + ' for `collection`', function() { test('should work with a string ' + key + ' for `collection`', function() {
equal(_.contains(collection, 'bc'), true); ok(_.contains(collection, 'bc'));
equal(_.contains(collection, 'd'), false); ok(!_.contains(collection, 'd'));
}); });
}); });
}()); }());
@@ -453,7 +453,7 @@
(function() { (function() {
test('should return `false` as soon as the `callback` result is falsey', function() { test('should return `false` as soon as the `callback` result is falsey', function() {
equal(_.every([true, null, true], _.identity), false); ok(!_.every([true, null, true], _.identity));
}); });
}()); }());
@@ -770,7 +770,7 @@
(function() { (function() {
test('should use strict equality in its duck type check', function() { test('should use strict equality in its duck type check', function() {
var element = window.document ? document.body : { 'nodeType': 1 }; var element = window.document ? document.body : { 'nodeType': 1 };
equal(_.isElement(element), true); ok(_.isElement(element));
equal(_.isElement({ 'nodeType': new Number(1) }), false); equal(_.isElement({ 'nodeType': new Number(1) }), false);
equal(_.isElement({ 'nodeType': true }), false); equal(_.isElement({ 'nodeType': true }), false);
@@ -794,21 +794,21 @@
test('skips the prototype property of functions (test in Firefox < 3.6, Opera > 9.50 - Opera < 11.60, and Safari < 5.1)', function() { test('skips the prototype property of functions (test in Firefox < 3.6, Opera > 9.50 - Opera < 11.60, and Safari < 5.1)', function() {
function Foo() {} function Foo() {}
Foo.prototype.a = 1; Foo.prototype.a = 1;
equal(_.isEmpty(Foo), true); ok(_.isEmpty(Foo));
Foo.prototype = { 'a': 1 }; Foo.prototype = { 'a': 1 };
equal(_.isEmpty(Foo), true); ok(_.isEmpty(Foo));
}); });
test('should work with an object that has a `length` property', function() { test('should work with an object that has a `length` property', function() {
equal(_.isEmpty({ 'length': 0 }), false); ok(!_.isEmpty({ 'length': 0 }));
}); });
test('should work with jQuery/MooTools DOM query collections', function() { test('should work with jQuery/MooTools DOM query collections', function() {
function Foo(elements) { Array.prototype.push.apply(this, elements); } function Foo(elements) { Array.prototype.push.apply(this, elements); }
Foo.prototype = { 'length': 0, 'splice': Array.prototype.splice }; Foo.prototype = { 'length': 0, 'splice': Array.prototype.splice };
equal(_.isEmpty(new Foo([])), true); ok(_.isEmpty(new Foo([])));
}); });
test('should work with `arguments` objects (test in IE < 9)', function() { test('should work with `arguments` objects (test in IE < 9)', function() {
@@ -826,8 +826,8 @@
args2 = (function() { return arguments; }(1, 2, 3)), args2 = (function() { return arguments; }(1, 2, 3)),
args3 = (function() { return arguments; }(1, 2)); args3 = (function() { return arguments; }(1, 2));
equal(_.isEqual(args1, args2), true); ok(_.isEqual(args1, args2));
equal(_.isEqual(args1, args3), false); ok(!_.isEqual(args1, args3));
}); });
test('fixes the JScript [[DontEnum]] bug (test in IE < 9)', function() { test('fixes the JScript [[DontEnum]] bug (test in IE < 9)', function() {
@@ -838,7 +838,7 @@
// ensure `_._object` is assigned (unassigned in Opera 10.00) // ensure `_._object` is assigned (unassigned in Opera 10.00)
if (_._object) { if (_._object) {
var object = { 'a': 1, 'b': 2, 'c': 3 }; var object = { 'a': 1, 'b': 2, 'c': 3 };
equal(_.isEqual(object, _._object), true); ok(_.isEqual(object, _._object));
} }
else { else {
skipTest(); skipTest();
@@ -865,18 +865,18 @@
(function() { (function() {
test('should return `false` for non-numeric values', function() { test('should return `false` for non-numeric values', function() {
equal(_.isFinite(null), false); ok(!_.isFinite(null));
equal(_.isFinite([]), false); ok(!_.isFinite([]));
equal(_.isFinite(true), false); ok(!_.isFinite(true));
equal(_.isFinite(''), false); ok(!_.isFinite(''));
equal(_.isFinite(' '), false); ok(!_.isFinite(' '));
equal(_.isFinite('2px'), false); ok(!_.isFinite('2px'));
}); });
test('should return `true` for numeric string values', function() { test('should return `true` for numeric string values', function() {
equal(_.isFinite('2'), true); ok(_.isFinite('2'));
equal(_.isFinite('0'), true); ok(_.isFinite('0'));
equal(_.isFinite('08'), true); ok(_.isFinite('08'));
}); });
}()); }());
@@ -906,7 +906,7 @@
(function() { (function() {
test('returns `true` for `new Number(NaN)`', function() { test('returns `true` for `new Number(NaN)`', function() {
equal(_.isNaN(new Number(NaN)), true) ok(_.isNaN(new Number(NaN)));
}); });
}()); }());
@@ -920,9 +920,9 @@
this.a = 1; this.a = 1;
} }
equal(_.isPlainObject(new Foo(1)), false); ok(!_.isPlainObject(new Foo(1)));
equal(_.isPlainObject([1, 2, 3]), false); ok(!_.isPlainObject([1, 2, 3]));
equal(_.isPlainObject({ 'a': 1 }), true); ok(_.isPlainObject({ 'a': 1 }));
}); });
}()); }());
@@ -947,7 +947,8 @@
'isRegExp', 'isRegExp',
'isString', 'isString',
'isUndefined' 'isUndefined'
], function(methodName) { ],
function(methodName) {
var func = _[methodName]; var func = _[methodName];
test('lodash.' + methodName + ' should return a boolean', function() { test('lodash.' + methodName + ' should return a boolean', function() {
@@ -1357,7 +1358,7 @@
while ((new Date - start) < 50 && actual == 5) { while ((new Date - start) < 50 && actual == 5) {
actual = _.random(5); actual = _.random(5);
} }
ok(actual != 5); notEqual(actual, 5);
}); });
}()); }());
@@ -1540,7 +1541,7 @@
(function() { (function() {
test('should return `true` as soon as the `callback` result is truthy', function() { test('should return `true` as soon as the `callback` result is truthy', function() {
equal(_.some([null, true, null], _.identity), true); ok(_.some([null, true, null], _.identity));
}); });
}()); }());
@@ -1667,7 +1668,8 @@
'<%= new Boolean %>': 'false', '<%= new Boolean %>': 'false',
'<%= typeof a %>': 'number', '<%= typeof a %>': 'number',
'<%= void a %>': '' '<%= void a %>': ''
}, function(value, key) { },
function(value, key) {
var compiled = _.template(key), var compiled = _.template(key),
data = { 'a': 1, 'b': 2 }; data = { 'a': 1, 'b': 2 };
@@ -1938,7 +1940,7 @@
test('should coerce the prefix argument to a string', function() { test('should coerce the prefix argument to a string', function() {
var actual = [_.uniqueId(3), _.uniqueId(2), _.uniqueId(1)]; var actual = [_.uniqueId(3), _.uniqueId(2), _.uniqueId(1)];
equal(/3\d+,2\d+,1\d+/.test(actual), true); ok(/3\d+,2\d+,1\d+/.test(actual));
}); });
}()); }());
@@ -2045,6 +2047,78 @@
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
QUnit.module('lodash(...) methods that return wrapped values');
(function() {
var array = [1, 2, 3],
wrapped = _(array);
var funcs = [
'concat',
'splice'
];
_.each(funcs, function(methodName) {
test('_.' + methodName + ' should return a wrapped value', function() {
ok(wrapped[methodName]() instanceof _);
});
});
}());
/*--------------------------------------------------------------------------*/
QUnit.module('lodash(...) methods that return unwrapped values');
(function() {
var array = [1, 2, 3],
wrapped = _(array);
var funcs = [
'clone',
'contains',
'every',
'find',
'first',
'has',
'isArguments',
'isArray',
'isBoolean',
'isDate',
'isElement',
'isEmpty',
'isEqual',
'isFinite',
'isFunction',
'isNaN',
'isNull',
'isNumber',
'isObject',
'isPlainObject',
'isRegExp',
'isString',
'isUndefined',
'join',
'last',
'pop',
'shift',
'reduce',
'reduceRight',
'some'
];
_.each(funcs, function(methodName) {
test('_.' + methodName + ' should return an unwrapped value', function() {
var result = methodName == 'reduceRight'
? wrapped[methodName](_.identity)
: wrapped[methodName]();
equal(result instanceof _, false);
});
});
}());
/*--------------------------------------------------------------------------*/
QUnit.module('lodash(...) methods capable of returning wrapped and unwrapped values'); QUnit.module('lodash(...) methods capable of returning wrapped and unwrapped values');
(function() { (function() {
@@ -2069,68 +2143,20 @@
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
QUnit.module('lodash(...) methods that return unwrapped values');
(function() {
var array = [1, 2, 3],
wrapped = _(array);
var funcs = [
'contains',
'every',
'find',
'first',
'has',
'isArguments',
'isArray',
'isBoolean',
'isDate',
'isElement',
'isEmpty',
'isEqual',
'isFinite',
'isFunction',
'isNaN',
'isNull',
'isNumber',
'isObject',
'isPlainObject',
'isRegExp',
'isString',
'isUndefined',
'last',
'reduce',
'reduceRight',
'some'
];
_.each(funcs, function(methodName) {
test('_.' + methodName + ' should return unwrapped values', function() {
var result = methodName == 'reduceRight'
? wrapped[methodName](_.identity)
: wrapped[methodName];
notEqual(typeof result, 'object', '_.' + methodName + ' returns unwrapped values');
});
});
}());
/*--------------------------------------------------------------------------*/
QUnit.module('lodash methods'); QUnit.module('lodash methods');
(function() { (function() {
test('should allow falsey arguments', function() { test('should allow falsey arguments', function() {
var returnArrays = [ var returnArrays = [
'filter', 'filter',
'invoke', 'invoke',
'map', 'map',
'pluck', 'pluck',
'reject', 'reject',
'shuffle', 'shuffle',
'sortBy', 'sortBy',
'toArray', 'toArray',
'where' 'where'
]; ];
var funcs = _.without.apply(_, [_.functions(_)].concat([ var funcs = _.without.apply(_, [_.functions(_)].concat([
@@ -2220,7 +2246,7 @@
} }
if (expected === null) { if (expected === null) {
deepEqual(thisArg, null, message); strictEqual(thisArg, null, message);
} else { } else {
equal(thisArg, expected, message); equal(thisArg, expected, message);
} }