forked from practicalmeteor/meteor-munit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Describe.coffee
executable file
·236 lines (159 loc) · 5.2 KB
/
Describe.coffee
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
_suite = null
#displayedAsyncTestsMessage = false
# runIfRequired = (suite, options = {}) ->
# options.run ?= true
# Munit.run(suite) if describe.autoRun is true and options.run is true
###
Declares a suite of tests. For example:
describe 'a suite of tests', ->
it 'does something', ->
@param text: The describe text for the suite.
@param func: The test function to run.
@param options:
type: Optional. Execution domain: 'client', 'server'
###
describe = (text, func, options = {}) ->
# Setup initial conditions.
return unless _.isFunction(func)
if not _suite?
# Setup a fresh suite
_suite = suite =
name: text
tests: {}
nestedSuites: []
options: options
else
# We are nesting describe blocks -> push sub-suite to stack
_suite.nestedSuites.push {
name: text
options: options
}
func()
isRootSuite = _suite.nestedSuites.length <= 0
if isRootSuite
# reset root suite after nesting has been setup
_suite = null
if describe.autoRun is true
Munit.run(suite)
else
# we still are inside a nested suite -> pop from stack
_suite.nestedSuites.pop()
return suite
###
Flag used to set whether test declarations are automatically
passed into the [run] function of Munit.
NB: Used internally for testing.
###
describe.autoRun = true
###
Declares a suite to be skipped.
###
describe.skip = (text, func) ->
# No-op.
# Report that the suite is being skipped, and to not
# pass it in.
log.debug "Skipping test suite '#{ text }'"
###
Declares a suite of tests that run only on the client.
###
describe.client = (text, func) -> describe(text, func, type:'client')
###
Declares a suite of tests that run only on the server.
###
describe.server = (text, func) -> describe(text, func, type:'server')
describe.client.skip = describe.skip
describe.server.skip = describe.skip
# IT --------------------------------------------------------------------------
###
Declares a unit test.
@param text: The description of the test.
@param func: The test function.
###
it = (text, func) ->
if _suite? and _.isFunction(func)
func = wrap(func)
parentSuite = _.last(_suite.nestedSuites) || _suite
name = _.map(_suite.nestedSuites, (suite) -> suite.name).concat([text]).join ' - '
test = { func: func }
if parentSuite? and parentSuite.options.type?
test.type = parentSuite.options.type
_suite.tests[name] = test
###
Declares a unit test to be skipped.
###
it.skip = (text, func) ->
if _suite?
log.debug "Skipping test '#{ text }' in test suite '#{ _suite.name }'"
###
Declares a unit test to run only on the client.
@param text: The description of the test.
@param func: The test function.
###
it.client = (text, func) ->
if _suite?
def = it(text, func)
def.type = 'client'
def
###
Declares a unit test to run only on the server.
@param text: The description of the test.
@param func: The test function.
###
it.server = (text, func) ->
if _suite?
def = it(text, func)
def.type = 'server'
def
it.client.skip = it.skip
it.server.skip = it.skip
# SETUP / TEARDOWN --------------------------------------------------------------------------
###
Declares the suite setup that is run before all tests within the suite.
###
beforeAll = (func) -> _suite?.suiteSetup = wrap(func) if _.isFunction(func)
###
Declares the test setup that is run before each test.
###
beforeEach = (func) -> _suite?.setup = wrap(func) if _.isFunction(func)
###
Declares the test tear-down that is run after each unit test comlete.
###
afterEach = (func) -> _suite?.tearDown = wrap(func) if _.isFunction(func)
###
Declares the suite tear-down that is run once after all tests are complete.
###
afterAll = (func) -> _suite?.suiteTearDown = wrap(func) if _.isFunction(func)
# PRIVATE --------------------------------------------------------------------------
badParamsErrorMsg = """
Error: The interface for async tests has changed.\n
Please use '(test, waitFor)' as function arguments,\n
use waitFor as your callback function wrapper,
enclose all your callback function code in try catch blocks and report exceptions with test.exception.\n
For additional information, please visit the practicalmeteor:munit documentation at:\n
https://github.com/practicalmeteor/meteor-munit
"""
wrap = (func) ->
suite = _suite
params = getParamNames(func)
isAsync = params.length > 1
badParams = ((params.length > 0) and (params[0] isnt 'test'))
(test, waitFor) ->
suite.suite = suite
suite.test = test
suite.waitFor = waitFor
suite.func = func
suite.isAsync = isAsync
if badParams
throw new Error(badParamsErrorMsg)
else if isAsync
func.call suite, test, waitFor
else
func.call suite, test
# See: http://stackoverflow.com/questions/1007981/how-to-get-function-parameter-names-values-dynamically-from-javascript
STRIP_COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg
ARGUMENT_NAMES = /([^\s,]+)/g
getParamNames = (func) ->
fnStr = func.toString().replace(STRIP_COMMENTS, '')
result = fnStr.slice(fnStr.indexOf('(')+1, fnStr.indexOf(')')).match(ARGUMENT_NAMES)
result = [] if result is null
result