Skip to content
This repository has been archived by the owner on Sep 25, 2020. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Cavage committed Jun 23, 2012
0 parents commit d186d01
Show file tree
Hide file tree
Showing 3 changed files with 302 additions and 0 deletions.
126 changes: 126 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
# node-assert-extra

This library is a super small wrapper over node's assert module that has two
things: (1) the ability to disable assertions with the environment variable
NODE_NDEBUG, and (2) some API wrappers for argument testing. Like
`assert.string(myArg, 'myArg')`. As a simple example, most of my code looks
like this:

var assert = require('assert-plus');

function fooAccount(options, callback) {
assert.object(options, 'options');
assert.number(options.id, 'options.id);
assert.bool(options.isManager, 'options.isManager');
assert.string(options.name, 'options.name');
assert.array(options.email, 'string', 'options.email');
assert.func(callback, 'callback');

// Do stuff
callback(null, {});
}

# API

All methods that *aren't* part of node's core assert API are simply assumed to
take an argument, and then a string 'name' that's not a message; `AssertionError`
will be thrown if the assertion fails with a message like:

AssertionError: foo (string) is required
at test (/home/mark/work/foo/foo.js:3:9)
at Object.<anonymous> (/home/mark/work/foo/foo.js:15:1)
at Module._compile (module.js:446:26)
at Object..js (module.js:464:10)
at Module.load (module.js:353:31)
at Function._load (module.js:311:12)
at Array.0 (module.js:484:10)
at EventEmitter._tickCallback (node.js:190:38)

from:

function test(foo) {
assert.string(foo, 'foo');
}

There you go. You can check that arrays are of a homogenous type with `Arrayof$Type`:

function test(foo) {
assert.arrayOfString(foo, 'foo');
}

You can assert IFF an argument is not `undefined` (i.e., an optional arg):

assert.optionalString(foo, 'foo');

Lastly, you can opt-out of assertion checking altogether by setting the
environment variable `NODE_NDEBUG=1`. This is pseudo-useful if you have
lots of assertions, and don't want to pay `typeof ()` taxes to v8 in
production.

The complete list of APIs is:

* assert.bool
* assert.buffer
* assert.func
* assert.number
* assert.object
* assert.string
* assert.arrayOfBool
* assert.arrayOfFunc
* assert.arrayOfNumber
* assert.arrayOfObject
* assert.arrayOfString
* assert.optionalBool
* assert.optionalBuffer
* assert.optionalFunc
* assert.optionalNumber
* assert.optionalObject
* assert.optionalString
* assert.optionalArrayOfBool
* assert.optionalArrayOfFunc
* assert.optionalArrayOfNumber
* assert.optionalArrayOfObject
* assert.optionalArrayOfString
* assert.AssertionError
* assert.fail
* assert.ok
* assert.equal
* assert.notEqual
* assert.deepEqual
* assert.notDeepEqual
* assert.strictEqual
* assert.notStrictEqual
* assert.throws
* assert.doesNotThrow
* assert.ifError

# Installation

npm install assert-plus

## License

The MIT License (MIT)
Copyright (c) 2012 Mark Cavage

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

## Bugs

See <https://github.com/mcavage/node-assert-plus/issues>.
163 changes: 163 additions & 0 deletions assert.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
// Copyright (c) 2012, Mark Cavage. All rights reserved.

var assert = require('assert');
var util = require('util');



///--- Globals

var NDEBUG = process.env.NODE_NDEBUG || false;



///--- Messages

var ARRAY_TYPE_REQUIRED = '%s ([%s]) required';
var TYPE_REQUIRED = '%s (%s) is required';



///--- Internal

function capitalize(str) {
return (str.charAt(0).toUpperCase() + str.slice(1));
}

function _() {
return (util.format.apply(util, arguments));
}


function _assert(arg, type, name, stackFunc) {
if (!NDEBUG) {
name = name || type;
stackFunc = stackFunc || _assert.caller;
var t = typeof (arg);

if (t !== type) {
throw new assert.AssertionError({
message: _(TYPE_REQUIRED, name, type),
actual: t,
expected: type,
operator: '===',
stackStartFunction: stackFunc
});
}
}
}



///--- API

function array(arr, type, name) {
if (!NDEBUG) {
name = name || type;

if (!Array.isArray(arr)) {
throw new assert.AssertionError({
message: _(ARRAY_TYPE_REQUIRED, name, type),
actual: typeof (arr),
expected: 'array',
operator: 'Array.isArray',
stackStartFunction: array.caller
});
}

for (var i = 0; i < arr.length; i++) {
_assert(arr[i], type, name, array);
}
}
}


function bool(arg, name) {
_assert(arg, 'boolean', name, bool);
}


function buffer(arg, name) {
if (!Buffer.isBuffer(arg)) {
throw new assert.AssertionError({
message: _(TYPE_REQUIRED, name, type),
actual: typeof (arg),
expected: 'buffer',
operator: 'Buffer.isBuffer',
stackStartFunction: buffer
});
}
}


function func(arg, name) {
_assert(arg, 'function', name);
}


function number(arg, name) {
_assert(arg, 'number', name);
}


function object(arg, name) {
_assert(arg, 'object', name);
}


function string(arg, name) {
_assert(arg, 'string', name);
}



///--- Exports

module.exports = {
bool: bool,
buffer: buffer,
func: func,
number: number,
object: object,
string: string
};


Object.keys(module.exports).forEach(function (k) {
if (k === 'buffer')
return;

var name = 'arrayOf' + capitalize(k);

if (k === 'bool')
k = 'boolean';
if (k === 'func')
k = 'function';
module.exports[name] = function (arg, name) {
array(arg, k, name);
};
});

Object.keys(module.exports).forEach(function (k) {
var _name = 'optional' + capitalize(k);
module.exports[_name] = function (arg, type, name) {
if (!NDEBUG && arg !== undefined) {
_assert(arg, type, name);
}
};
});


// Reexport built-in assertions
Object.keys(assert).forEach(function (k) {
if (k === 'AssertionError') {
module.exports[k] = assert[k];
return;
}

module.exports[k] = function () {
if (!NDEBUG) {
assert[k].apply(assert[k], arguments);
}
};
});
13 changes: 13 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"author": "Mark Cavage <mcavage@gmail.com>",
"name": "assert-plus",
"description": "Extra assertions on top of node's assert module",
"version": "0.1.0",
"main": "./assert.js",
"dependencies": {},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": ">=0.6"
}
}

0 comments on commit d186d01

Please sign in to comment.