Blame view

node_modules/assert-plus/README.md 4.68 KB
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
  # 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:
  
  ```javascript
      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.arrayOfString(options.email, '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:
  
  ```javascript
      function test(foo) {
          assert.string(foo, 'foo');
      }
  ```
  
  There you go.  You can check that arrays are of a homogeneous type with `Arrayof$Type`:
  
  ```javascript
      function test(foo) {
          assert.arrayOfString(foo, 'foo');
      }
  ```
  
  You can assert IFF an argument is not `undefined` (i.e., an optional arg):
  
  ```javascript
      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.  Be advised:  The standard functions re-exported from `assert` are
  also disabled in assert-plus if NDEBUG is specified.  Using them directly from
  the `assert` module avoids this behavior.
  
  The complete list of APIs is:
  
  * assert.array
  * assert.bool
  * assert.buffer
  * assert.func
  * assert.number
  * assert.finite
  * assert.object
  * assert.string
  * assert.stream
  * assert.date
  * assert.regexp
  * assert.uuid
  * assert.arrayOfArray
  * assert.arrayOfBool
  * assert.arrayOfBuffer
  * assert.arrayOfFunc
  * assert.arrayOfNumber
  * assert.arrayOfFinite
  * assert.arrayOfObject
  * assert.arrayOfString
  * assert.arrayOfStream
  * assert.arrayOfDate
  * assert.arrayOfRegexp
  * assert.arrayOfUuid
  * assert.optionalArray
  * assert.optionalBool
  * assert.optionalBuffer
  * assert.optionalFunc
  * assert.optionalNumber
  * assert.optionalFinite
  * assert.optionalObject
  * assert.optionalString
  * assert.optionalStream
  * assert.optionalDate
  * assert.optionalRegexp
  * assert.optionalUuid
  * assert.optionalArrayOfArray
  * assert.optionalArrayOfBool
  * assert.optionalArrayOfBuffer
  * assert.optionalArrayOfFunc
  * assert.optionalArrayOfNumber
  * assert.optionalArrayOfFinite
  * assert.optionalArrayOfObject
  * assert.optionalArrayOfString
  * assert.optionalArrayOfStream
  * assert.optionalArrayOfDate
  * assert.optionalArrayOfRegexp
  * assert.optionalArrayOfUuid
  * 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>.