8. Assertion API
8.1. Assertions in software development
In software development, assertions state facts about values or pieces of code that must be true. If they aren’t, an exception is thrown. Node.js supports assertions via its built-in module assert
. For example:
This assertion states that the expected result of 3 plus 5 is 8. The import statement uses the recommended strict
version of assert
.
8.2. How assertions are used in this book
In this book, assertions are used in two ways: to document results in code examples and to implement test-driven exercises.
8.2.1. Documenting results in code examples via assertions
In code examples, assertions express expected results. Take, for example, the following function:
id()
returns its parameter. We can show it in action via an assertion:
In the examples, I usually omit the statement for importing assert
.
The motivation behind using assertions is:
- You can specify precisely what is expected.
- Code examples can be tested automatically, which ensures that they really work.
8.2.2. Implementing test-driven exercises via assertions
The exercises for this book are test-driven, via the test framework mocha
. Checks inside the tests are made via methods of assert
.
The following is an example of such a test:
// For the exercise, you must implement the function hello().
// The test checks if you have done it properly.
test('First exercise', () => {
assert.equal(hello('world'), 'Hello world!');
assert.equal(hello('Jane'), 'Hello Jane!');
assert.equal(hello('John'), 'Hello John!');
assert.equal(hello(''), 'Hello !');
});
For more information, consult the chapter on quizzes and exercises.
8.3. Normal comparison vs. deep comparison
The strict equal()
uses ===
to compare values. Therefore, an object is only equal to itself – even if another object has the same content (because ===
does not compare the contents of objects, only their identities):
deepEqual()
is a better choice for comparing objects:
This method works for Arrays, too:
8.4. Quick reference: module assert
For the full documentation, see the Node.js docs.
8.4.1. Normal equality
function equal(actual: any, expected: any, message?: string): void
actual === expected
must be true
. If not, an AssertionError
is thrown.
function notEqual(actual: any, expected: any, message?: string): void
actual !== expected
must be true
. If not, an AssertionError
is thrown.
The optional last parameter message
can be used to explain what is asserted. If the assertion fails, the message is used to set up the AssertionError
that is thrown.
8.4.2. Deep equality
function deepEqual(actual: any, expected: any, message?: string): void
actual
must be deeply equal to expected
. If not, an AssertionError
is thrown.
function notDeepEqual(actual: any, expected: any, message?: string): void
actual
must not be deeply equal to expected
. If it is, an AssertionError
is thrown.
8.4.3. Expecting exceptions
If you want to (or expect to) receive an exception, you need throws()
: This function calls its first parameter, the function block
, and only succeeds if it throws an exception. Additional parameters can be used to specify what that exception must look like.
function throws(block: Function, message?: string): void
function throws(block: Function, error: Function, message?: string): void
function throws(block: Function, error: RegExp, message?: string): void
function throws(block: Function, error: Object, message?: string): void
8.4.4. Another tool function
function fail(message: string | Error): never
Always throws an AssertionError
when it is called. That is occasionally useful for unit testing.