This repository has been archived by the owner on Jul 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cakefile
89 lines (75 loc) · 2.94 KB
/
Cakefile
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
fs = require 'fs'
{exec} = require 'child_process'
option '-f' , '--file [FILE*]' , 'test file to run'
option '' , '--dir [DIR*]' , 'directory where to grab test files'
option '-d' , '--debug' , 'run node in debug mode'
option '-b' , '--debug-brk' , 'run node in --debug-brk mode (stops on first line)'
options = # defaults, will be overwritten by command line options
file : no
dir : no
debug : no
'debug-brk' : no
# Grab test files of a directory
walk = (dir, fileList) ->
list = fs.readdirSync(dir)
if list
for file in list
if file
filename = dir + '/' + file
stat = fs.statSync(filename)
if stat and stat.isDirectory()
walk(filename, fileList)
else if filename.substr(-6) == "coffee"
fileList.push(filename)
return fileList
task 'tests', 'run server tests, ./test is parsed by default, otherwise use -f or --dir', (opts) ->
options = opts
testFiles = []
if options.dir
dirList = options.dir
testFiles = walk(dir, testFiles) for dir in dirList
if options.file
testFiles = testFiles.concat(options.file)
if not(options.dir or options.file)
testFiles = walk("test", [])
runTests testFiles
task 'tests:client', 'run client tests through mocha', (opts) ->
options = opts
uiTestFiles = walk("client/test", [])
runTests uiTestFiles
runTests = (fileList) ->
command = "mocha " + fileList.join(" ") + " "
if options['debug-brk']
command += "--debug-brk --forward-io --profile "
if options.debug
command += "--debug --forward-io --profile "
command += " --reporter spec --require should --compilers coffee:coffee-script/register --colors"
exec command, (err, stdout, stderr) ->
if err
console.log "Running mocha caught exception: \n" + err
console.log stdout
process.exit if err then 1 else 0
task "xunit", "", ->
process.env.TZ = "Europe/Paris"
command = "mocha "
command += " --require should --compilers coffee:coffee-script -R xunit > xunit.xml"
exec command, (err, stdout, stderr) ->
console.log stdout
task "xunit:client", "", ->
process.env.TZ = "Europe/Paris"
command = "mocha client/test/*"
command += " --require should --compilers coffee:coffee-script -R xunit > xunitclient.xml"
exec command, (err, stdout, stderr) ->
console.log stdout
task 'convert', 'convert coffee-script to JS', ->
files = walk "server", []
console.log "Convert to JS..."
command = "coffee -cb server.coffee init.coffee #{files.join ' '} "
exec command, (err, stdout, stderr) ->
console.log stdout
if err
console.log "Running compilation caught exception: \n" + err
process.exit 1
else
console.log "Convertion succeeded."
process.exit 0