node-assert-plus
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:
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:
from:
There you go. You can check that arrays are of a homogenous type with Arrayof$Type
:
You can assert IFF an argument is not undefined
(i.e., an optional arg):
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
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.