2016-11-20 20:05:19 -05:00
|
|
|
fs = require 'fs'
|
|
|
|
path = require 'path'
|
|
|
|
_ = require 'underscore'
|
|
|
|
{ spawn, exec, execSync } = require 'child_process'
|
|
|
|
CoffeeScript = require './lib/coffee-script'
|
|
|
|
helpers = require './lib/coffee-script/helpers'
|
2010-02-16 01:04:48 -05:00
|
|
|
|
2010-06-15 21:33:53 -04:00
|
|
|
# ANSI Terminal Colors.
|
2011-10-07 00:39:24 -04:00
|
|
|
bold = red = green = reset = ''
|
2013-02-01 18:50:32 -05:00
|
|
|
unless process.env.NODE_DISABLE_COLORS
|
2012-01-09 12:50:51 -05:00
|
|
|
bold = '\x1B[0;1m'
|
|
|
|
red = '\x1B[0;31m'
|
|
|
|
green = '\x1B[0;32m'
|
|
|
|
reset = '\x1B[0m'
|
2010-06-15 21:33:53 -04:00
|
|
|
|
2010-11-10 23:06:26 -05:00
|
|
|
# Built file header.
|
|
|
|
header = """
|
|
|
|
/**
|
|
|
|
* CoffeeScript Compiler v#{CoffeeScript.VERSION}
|
2016-11-17 12:57:03 -05:00
|
|
|
* http://coffeescript.org
|
2010-11-10 23:06:26 -05:00
|
|
|
*
|
2011-01-31 22:39:12 -05:00
|
|
|
* Copyright 2011, Jeremy Ashkenas
|
2010-11-10 23:06:26 -05:00
|
|
|
* Released under the MIT License
|
|
|
|
*/
|
|
|
|
"""
|
|
|
|
|
2016-11-16 00:16:13 -05:00
|
|
|
# Used in folder names like docs/v1
|
2016-12-10 21:53:58 -05:00
|
|
|
majorVersion = parseInt CoffeeScript.VERSION.split('.')[0], 10
|
2016-11-16 00:16:13 -05:00
|
|
|
|
2013-02-28 01:21:10 -05:00
|
|
|
# Build the CoffeeScript language from source.
|
|
|
|
build = (cb) ->
|
|
|
|
files = fs.readdirSync 'src'
|
|
|
|
files = ('src/' + file for file in files when file.match(/\.(lit)?coffee$/))
|
|
|
|
run ['-c', '-o', 'lib/coffee-script'].concat(files), cb
|
|
|
|
|
2010-02-16 19:17:57 -05:00
|
|
|
# Run a CoffeeScript through our node/coffee interpreter.
|
2011-07-18 17:47:31 -04:00
|
|
|
run = (args, cb) ->
|
2012-03-25 06:17:46 -04:00
|
|
|
proc = spawn 'node', ['bin/coffee'].concat(args)
|
2010-10-24 12:48:42 -04:00
|
|
|
proc.stderr.on 'data', (buffer) -> console.log buffer.toString()
|
2011-07-18 17:47:31 -04:00
|
|
|
proc.on 'exit', (status) ->
|
2016-11-16 00:28:35 -05:00
|
|
|
process.exit(1) if status isnt 0
|
2011-07-18 17:47:31 -04:00
|
|
|
cb() if typeof cb is 'function'
|
2010-02-16 01:04:48 -05:00
|
|
|
|
2010-06-15 21:33:53 -04:00
|
|
|
# Log a message with a color.
|
2010-07-25 01:23:37 -04:00
|
|
|
log = (message, color, explanation) ->
|
2010-10-24 12:48:42 -04:00
|
|
|
console.log color + message + reset + ' ' + (explanation or '')
|
2010-06-15 21:33:53 -04:00
|
|
|
|
2010-02-25 21:53:42 -05:00
|
|
|
option '-p', '--prefix [DIR]', 'set the installation prefix for `cake install`'
|
2010-02-25 21:43:42 -05:00
|
|
|
|
|
|
|
task 'install', 'install CoffeeScript into /usr/local (or --prefix)', (options) ->
|
2010-07-25 01:23:37 -04:00
|
|
|
base = options.prefix or '/usr/local'
|
2010-08-07 08:02:16 -04:00
|
|
|
lib = "#{base}/lib/coffee-script"
|
|
|
|
bin = "#{base}/bin"
|
2010-07-25 01:23:37 -04:00
|
|
|
node = "~/.node_libraries/coffee-script"
|
2016-11-16 00:28:35 -05:00
|
|
|
console.log "Installing CoffeeScript to #{lib}"
|
|
|
|
console.log "Linking to #{node}"
|
|
|
|
console.log "Linking 'coffee' to #{bin}/coffee"
|
2010-02-17 01:24:02 -05:00
|
|
|
exec([
|
2010-08-07 08:02:16 -04:00
|
|
|
"mkdir -p #{lib} #{bin}"
|
2014-03-03 14:24:20 -05:00
|
|
|
"cp -rf bin lib LICENSE README.md package.json src #{lib}"
|
2010-12-26 20:34:26 -05:00
|
|
|
"ln -sfn #{lib}/bin/coffee #{bin}/coffee"
|
|
|
|
"ln -sfn #{lib}/bin/cake #{bin}/cake"
|
2010-06-15 20:40:10 -04:00
|
|
|
"mkdir -p ~/.node_libraries"
|
2011-07-05 07:58:04 -04:00
|
|
|
"ln -sfn #{lib}/lib/coffee-script #{node}"
|
2010-02-26 19:49:12 -05:00
|
|
|
].join(' && '), (err, stdout, stderr) ->
|
2010-10-24 15:50:18 -04:00
|
|
|
if err then console.log stderr.trim() else log 'done', green
|
2010-02-26 19:49:12 -05:00
|
|
|
)
|
2010-02-17 01:24:02 -05:00
|
|
|
|
|
|
|
|
2013-02-28 01:21:10 -05:00
|
|
|
task 'build', 'build the CoffeeScript language from source', build
|
2010-02-16 20:42:10 -05:00
|
|
|
|
2011-10-07 00:39:24 -04:00
|
|
|
task 'build:full', 'rebuild the source twice, and run the tests', ->
|
2011-07-18 17:47:31 -04:00
|
|
|
build ->
|
|
|
|
build ->
|
2011-09-04 12:14:13 -04:00
|
|
|
csPath = './lib/coffee-script'
|
2013-01-13 17:59:05 -05:00
|
|
|
csDir = path.dirname require.resolve csPath
|
|
|
|
|
|
|
|
for mod of require.cache when csDir is mod[0 ... csDir.length]
|
|
|
|
delete require.cache[mod]
|
|
|
|
|
2011-10-07 00:39:24 -04:00
|
|
|
unless runTests require csPath
|
2011-08-10 21:26:16 -04:00
|
|
|
process.exit 1
|
2010-03-08 06:34:07 -05:00
|
|
|
|
|
|
|
|
2010-02-21 11:40:52 -05:00
|
|
|
task 'build:parser', 'rebuild the Jison parser (run build first)', ->
|
2016-11-30 00:19:11 -05:00
|
|
|
helpers.extend global, require 'util'
|
2010-06-28 00:26:45 -04:00
|
|
|
require 'jison'
|
2011-08-09 01:34:09 -04:00
|
|
|
parser = require('./lib/coffee-script/grammar').parser
|
2016-10-19 00:49:15 -04:00
|
|
|
fs.writeFileSync 'lib/coffee-script/parser.js', parser.generate()
|
2010-02-16 01:04:48 -05:00
|
|
|
|
2016-11-16 00:28:35 -05:00
|
|
|
|
2010-02-24 19:57:29 -05:00
|
|
|
task 'build:browser', 'rebuild the merged script for inclusion in the browser', ->
|
2010-11-10 23:06:26 -05:00
|
|
|
code = ''
|
2013-03-04 16:49:47 -05:00
|
|
|
for name in ['helpers', 'rewriter', 'lexer', 'parser', 'scope', 'nodes', 'sourcemap', 'coffee-script', 'browser']
|
2010-11-10 23:06:26 -05:00
|
|
|
code += """
|
2013-06-02 01:21:36 -04:00
|
|
|
require['./#{name}'] = (function() {
|
2013-05-31 17:44:23 -04:00
|
|
|
var exports = {}, module = {exports: exports};
|
2011-07-05 07:58:04 -04:00
|
|
|
#{fs.readFileSync "lib/coffee-script/#{name}.js"}
|
2013-05-31 17:44:23 -04:00
|
|
|
return module.exports;
|
2013-06-02 01:21:36 -04:00
|
|
|
})();
|
2010-11-10 23:06:26 -05:00
|
|
|
"""
|
2011-01-15 15:20:01 -05:00
|
|
|
code = """
|
2011-11-05 06:04:53 -04:00
|
|
|
(function(root) {
|
|
|
|
var CoffeeScript = function() {
|
|
|
|
function require(path){ return require[path]; }
|
|
|
|
#{code}
|
2011-12-15 11:21:38 -05:00
|
|
|
return require['./coffee-script'];
|
2011-11-05 06:04:53 -04:00
|
|
|
}();
|
|
|
|
|
2011-12-15 11:21:38 -05:00
|
|
|
if (typeof define === 'function' && define.amd) {
|
|
|
|
define(function() { return CoffeeScript; });
|
2012-11-29 12:43:18 -05:00
|
|
|
} else {
|
|
|
|
root.CoffeeScript = CoffeeScript;
|
2011-12-15 11:21:38 -05:00
|
|
|
}
|
2011-11-05 06:04:53 -04:00
|
|
|
}(this));
|
2010-11-10 23:06:26 -05:00
|
|
|
"""
|
2011-01-15 15:20:01 -05:00
|
|
|
unless process.env.MINIFY is 'false'
|
2016-11-29 02:10:17 -05:00
|
|
|
{compiledCode} = require('google-closure-compiler-js').compile
|
|
|
|
jsCode: [
|
|
|
|
src: code
|
|
|
|
languageOut: if majorVersion is 1 then 'ES5' else 'ES6'
|
|
|
|
]
|
2016-11-27 23:47:54 -05:00
|
|
|
outputFolder = "docs/v#{majorVersion}/browser-compiler"
|
|
|
|
fs.mkdirSync outputFolder unless fs.existsSync outputFolder
|
2016-11-29 02:10:17 -05:00
|
|
|
fs.writeFileSync "#{outputFolder}/coffee-script.js", header + '\n' + compiledCode
|
2011-01-15 15:12:47 -05:00
|
|
|
console.log "built ... running browser tests:"
|
2010-11-10 23:06:26 -05:00
|
|
|
invoke 'test:browser'
|
2010-02-24 19:57:29 -05:00
|
|
|
|
|
|
|
|
2010-03-06 19:02:31 -05:00
|
|
|
task 'doc:site', 'watch and continually rebuild the documentation for the website', ->
|
2016-12-10 21:53:58 -05:00
|
|
|
# Constants
|
|
|
|
indexFile = 'documentation/index.html'
|
|
|
|
bodyFile = "documentation/v#{majorVersion}/body.html"
|
|
|
|
testFile = 'documentation/test.html'
|
|
|
|
sectionsSourceFolder = 'documentation/sections'
|
|
|
|
examplesSourceFolder = 'documentation/examples'
|
|
|
|
testsSourceFolder = 'test'
|
|
|
|
outputFolder = "docs/v#{majorVersion}"
|
|
|
|
monthNames = ['January', 'February', 'March', 'April', 'May', 'June',
|
|
|
|
'July', 'August', 'September', 'October', 'November', 'December']
|
|
|
|
jQueryVersion = if majorVersion is 1 then '1.12.4' else '3.1.1'
|
|
|
|
|
|
|
|
# Included in index.html
|
2016-12-08 03:19:55 -05:00
|
|
|
logo = fs.readFileSync 'documentation/images/logo.svg', 'utf-8'
|
2016-12-07 01:13:47 -05:00
|
|
|
|
2016-12-10 21:53:58 -05:00
|
|
|
if majorVersion is 1
|
|
|
|
css = """
|
|
|
|
<style>
|
|
|
|
#{fs.readFileSync('documentation/v1/docs.css', 'utf-8')}
|
|
|
|
#{fs.readFileSync('documentation/v1/tomorrow.css', 'utf-8')}
|
|
|
|
</style>
|
|
|
|
"""
|
|
|
|
else
|
|
|
|
css = '' # TODO
|
|
|
|
|
|
|
|
docsScript = fs.readFileSync "documentation/v#{majorVersion}/docs.coffee", 'utf-8'
|
|
|
|
|
|
|
|
# Included in test.html
|
|
|
|
testHelpers = fs.readFileSync('test/support/helpers.coffee', 'utf-8').replace /exports\./g, '@'
|
|
|
|
|
|
|
|
# Helpers
|
2016-11-29 11:39:00 -05:00
|
|
|
codeFor = ->
|
|
|
|
counter = 0
|
|
|
|
hljs = require 'highlight.js'
|
|
|
|
hljs.configure classPrefix: ''
|
|
|
|
(file, executable = false, showLoad = true) ->
|
|
|
|
counter++
|
|
|
|
cs = fs.readFileSync "documentation/examples/#{file}.coffee", 'utf-8'
|
2016-12-10 14:46:02 -05:00
|
|
|
js = CoffeeScript.compile cs, bare: yes
|
2016-11-29 11:39:00 -05:00
|
|
|
js = js.replace /^\/\/ generated.*?\n/i, ''
|
|
|
|
|
|
|
|
cshtml = "<pre><code>#{hljs.highlight('coffeescript', cs).value}</code></pre>"
|
|
|
|
# Temporary fix until highlight.js adds support for newer CoffeeScript keywords
|
|
|
|
# Added in https://github.com/isagalaev/highlight.js/pull/1357, awaiting release
|
|
|
|
if file in ['generator_iteration', 'generators', 'modules']
|
|
|
|
cshtml = cshtml.replace /(yield|import|export|from|as|default) /g, '<span class="keyword">$1</span> '
|
|
|
|
jshtml = "<pre><code>#{hljs.highlight('javascript', js).value}</code></pre>"
|
2016-12-01 01:23:51 -05:00
|
|
|
append = if executable is yes then '' else "alert(#{executable});".replace /"/g, '"'
|
2016-11-29 11:39:00 -05:00
|
|
|
if executable and executable isnt yes
|
|
|
|
cs.replace /(\S)\s*\Z/m, "$1\n\nalert #{executable}"
|
|
|
|
run = if executable is true then 'run' else "run: #{executable}"
|
|
|
|
name = "example#{counter}"
|
|
|
|
script = "<script>window.#{name} = #{JSON.stringify cs}</script>"
|
|
|
|
load = if showLoad then "<div class='minibutton load' onclick='javascript: loadConsole(#{name});'>load</div>" else ''
|
2016-12-01 01:23:51 -05:00
|
|
|
button = if executable then """<div class="minibutton ok" onclick="javascript: #{js.replace /"/g, '"'};#{append}">#{run}</div>""" else ''
|
2016-11-29 11:39:00 -05:00
|
|
|
"<div class='code'>#{cshtml}#{jshtml}#{script}#{load}#{button}<br class='clear' /></div>"
|
|
|
|
|
|
|
|
formatDate = (date) ->
|
|
|
|
date.replace /^(\d\d\d\d)-(\d\d)-(\d\d)$/, (match, $1, $2, $3) ->
|
|
|
|
"#{monthNames[$2 - 1]} #{+$3}, #{$1}"
|
|
|
|
|
|
|
|
releaseHeader = (date, version, prevVersion) -> """
|
|
|
|
<div class="anchor" id="#{version}"></div>
|
2016-12-08 03:19:55 -05:00
|
|
|
<h2 class="header">
|
2016-11-29 11:39:00 -05:00
|
|
|
#{prevVersion and "<a href=\"https://github.com/jashkenas/coffeescript/compare/#{prevVersion}...#{version}\">#{version}</a>" or version}
|
|
|
|
<span class="timestamp"> — <time datetime="#{date}">#{formatDate date}</time></span>
|
2016-12-08 03:19:55 -05:00
|
|
|
</h2>
|
2016-11-29 11:39:00 -05:00
|
|
|
"""
|
|
|
|
|
2016-12-08 03:19:55 -05:00
|
|
|
htmlFor = ->
|
|
|
|
marked = require 'marked'
|
|
|
|
markdownRenderer = new marked.Renderer()
|
|
|
|
markdownRenderer.code = (code) ->
|
|
|
|
if code.indexOf('codeFor(') isnt -1 or code.indexOf('releaseHeader(') isnt -1
|
|
|
|
"<%= #{code} %>"
|
|
|
|
else
|
|
|
|
"<pre>\n#{code}\n</pre>"
|
|
|
|
|
|
|
|
(file, bookmark) ->
|
|
|
|
md = fs.readFileSync "#{sectionsSourceFolder}/#{file}.md", 'utf-8'
|
|
|
|
md = md.replace /<%= releaseHeader %>/g, releaseHeader
|
|
|
|
md = md.replace /<%= majorVersion %>/g, majorVersion
|
|
|
|
md = md.replace /<%= fullVersion %>/g, CoffeeScript.VERSION
|
|
|
|
html = marked md, renderer: markdownRenderer
|
|
|
|
html = _.template(html)
|
|
|
|
codeFor: codeFor()
|
|
|
|
releaseHeader: releaseHeader
|
|
|
|
"<span class=\"bookmark\" id=\"#{if bookmark? then bookmark else file.replace(/_/g, '-')}\"></span>\n\n#{html}"
|
|
|
|
|
2016-12-10 21:53:58 -05:00
|
|
|
body = ->
|
|
|
|
render = _.template fs.readFileSync(bodyFile, 'utf-8')
|
|
|
|
output = render
|
|
|
|
logo: logo
|
|
|
|
releaseHeader: releaseHeader
|
|
|
|
majorVersion: majorVersion
|
|
|
|
fullVersion: CoffeeScript.VERSION
|
|
|
|
htmlFor: htmlFor()
|
|
|
|
codeFor: codeFor()
|
2016-11-30 00:19:11 -05:00
|
|
|
|
2016-11-29 21:13:12 -05:00
|
|
|
testsInScriptBlocks = ->
|
|
|
|
output = ''
|
2016-11-30 03:31:18 -05:00
|
|
|
excludedTestFiles = ['error_messages.coffee']
|
2016-11-29 21:13:12 -05:00
|
|
|
for filename in fs.readdirSync 'test'
|
2016-11-30 03:31:18 -05:00
|
|
|
continue if filename in excludedTestFiles
|
|
|
|
|
2016-11-29 21:13:12 -05:00
|
|
|
if filename.indexOf('.coffee') isnt -1
|
|
|
|
type = 'coffeescript'
|
|
|
|
else if filename.indexOf('.litcoffee') isnt -1
|
|
|
|
type = 'literate-coffeescript'
|
|
|
|
else
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Set the type to text/x-coffeescript or text/x-literate-coffeescript
|
|
|
|
# to prevent the browser compiler from automatically running the script
|
|
|
|
output += """
|
|
|
|
<script type="text/x-#{type}" class="test" id="#{filename.split('.')[0]}">
|
|
|
|
#{fs.readFileSync "test/#{filename}", 'utf-8'}
|
|
|
|
</script>\n
|
|
|
|
"""
|
|
|
|
output
|
|
|
|
|
2016-11-29 11:39:00 -05:00
|
|
|
# Task
|
2014-01-28 13:13:17 -05:00
|
|
|
do renderIndex = ->
|
2016-11-20 20:05:19 -05:00
|
|
|
render = _.template fs.readFileSync(indexFile, 'utf-8')
|
2016-11-15 23:54:30 -05:00
|
|
|
output = render
|
2016-12-07 01:27:08 -05:00
|
|
|
css: css
|
2016-12-10 21:53:58 -05:00
|
|
|
body: body()
|
|
|
|
script: docsScript
|
|
|
|
jQueryVersion: jQueryVersion
|
2016-11-27 23:47:54 -05:00
|
|
|
majorVersion: majorVersion
|
2016-12-10 21:53:58 -05:00
|
|
|
fs.writeFileSync "#{outputFolder}/index.html", output
|
|
|
|
log 'compiled', green, "#{indexFile} → #{outputFolder}/index.html"
|
2016-12-08 03:19:55 -05:00
|
|
|
try
|
|
|
|
fs.symlinkSync "v#{majorVersion}/index.html", 'docs/index.html'
|
|
|
|
catch exception
|
2014-01-28 13:13:17 -05:00
|
|
|
|
2016-11-29 21:13:12 -05:00
|
|
|
do renderTest = ->
|
|
|
|
render = _.template fs.readFileSync(testFile, 'utf-8')
|
|
|
|
output = render
|
2016-11-30 00:19:11 -05:00
|
|
|
testHelpers: testHelpers
|
2016-11-29 21:13:12 -05:00
|
|
|
tests: testsInScriptBlocks()
|
|
|
|
majorVersion: majorVersion
|
2016-12-10 21:53:58 -05:00
|
|
|
fs.writeFileSync "#{outputFolder}/test.html", output
|
|
|
|
log 'compiled', green, "#{testFile} → #{outputFolder}/test.html"
|
|
|
|
|
|
|
|
for target in [indexFile, examplesSourceFolder, sectionsSourceFolder]
|
|
|
|
fs.watch target, interval: 200, renderIndex
|
|
|
|
for target in [testFile, testsSourceFolder]
|
|
|
|
fs.watch target, interval: 200, renderTest
|
2016-11-15 23:54:30 -05:00
|
|
|
log 'watching...' , green
|
2010-02-24 19:57:29 -05:00
|
|
|
|
|
|
|
|
2016-11-16 00:16:13 -05:00
|
|
|
task 'doc:source', 'rebuild the annotated source documentation', ->
|
2016-11-20 20:05:19 -05:00
|
|
|
exec "node_modules/docco/bin/docco src/*.*coffee --output docs/v#{majorVersion}/annotated-source", (err) -> throw err if err
|
2010-03-06 19:02:31 -05:00
|
|
|
|
2010-03-07 19:07:37 -05:00
|
|
|
|
2011-10-07 00:39:24 -04:00
|
|
|
task 'bench', 'quick benchmark of compilation time', ->
|
2011-07-05 07:58:04 -04:00
|
|
|
{Rewriter} = require './lib/coffee-script/rewriter'
|
2013-02-01 20:36:05 -05:00
|
|
|
sources = ['coffee-script', 'grammar', 'helpers', 'lexer', 'nodes', 'rewriter']
|
|
|
|
coffee = sources.map((name) -> fs.readFileSync "src/#{name}.coffee").join '\n'
|
|
|
|
litcoffee = fs.readFileSync("src/scope.litcoffee").toString()
|
2010-11-20 20:28:45 -05:00
|
|
|
fmt = (ms) -> " #{bold}#{ " #{ms}".slice -4 }#{reset} ms"
|
2010-11-18 07:33:56 -05:00
|
|
|
total = 0
|
2010-11-17 11:34:23 -05:00
|
|
|
now = Date.now()
|
2010-11-18 07:33:56 -05:00
|
|
|
time = -> total += ms = -(now - now = Date.now()); fmt ms
|
2013-02-01 20:36:05 -05:00
|
|
|
tokens = CoffeeScript.tokens coffee, rewrite: no
|
|
|
|
littokens = CoffeeScript.tokens litcoffee, rewrite: no, literate: yes
|
|
|
|
tokens = tokens.concat(littokens)
|
2010-11-18 07:33:56 -05:00
|
|
|
console.log "Lex #{time()} (#{tokens.length} tokens)"
|
2010-11-17 11:34:23 -05:00
|
|
|
tokens = new Rewriter().rewrite tokens
|
2010-11-18 07:33:56 -05:00
|
|
|
console.log "Rewrite#{time()} (#{tokens.length} tokens)"
|
2010-11-17 11:34:23 -05:00
|
|
|
nodes = CoffeeScript.nodes tokens
|
2010-11-18 07:33:56 -05:00
|
|
|
console.log "Parse #{time()}"
|
2013-02-01 20:36:05 -05:00
|
|
|
js = nodes.compile bare: yes
|
2010-11-18 07:33:56 -05:00
|
|
|
console.log "Compile#{time()} (#{js.length} chars)"
|
2010-11-20 20:28:45 -05:00
|
|
|
console.log "total #{ fmt total }"
|
2010-03-07 19:07:37 -05:00
|
|
|
|
2010-06-11 18:47:48 -04:00
|
|
|
|
2010-12-11 20:30:48 -05:00
|
|
|
# Run the CoffeeScript test suite.
|
2011-10-07 00:39:24 -04:00
|
|
|
runTests = (CoffeeScript) ->
|
2013-12-08 15:21:18 -05:00
|
|
|
CoffeeScript.register()
|
2010-12-11 20:30:48 -05:00
|
|
|
startTime = Date.now()
|
|
|
|
currentFile = null
|
2010-12-09 23:59:50 -05:00
|
|
|
passedTests = 0
|
2010-12-11 20:30:48 -05:00
|
|
|
failures = []
|
2010-11-28 12:27:06 -05:00
|
|
|
|
2011-11-05 11:12:50 -04:00
|
|
|
global[name] = func for name, func of require 'assert'
|
2010-12-21 15:45:46 -05:00
|
|
|
|
2010-12-11 20:30:48 -05:00
|
|
|
# Convenience aliases.
|
2010-09-27 01:17:05 -04:00
|
|
|
global.CoffeeScript = CoffeeScript
|
2013-01-21 13:02:04 -05:00
|
|
|
global.Repl = require './lib/coffee-script/repl'
|
2010-12-11 20:30:48 -05:00
|
|
|
|
|
|
|
# Our test helper function for delimiting different test cases.
|
2010-12-09 23:59:50 -05:00
|
|
|
global.test = (description, fn) ->
|
2010-12-11 20:30:48 -05:00
|
|
|
try
|
2011-01-03 04:17:00 -05:00
|
|
|
fn.test = {description, currentFile}
|
|
|
|
fn.call(fn)
|
2011-11-05 11:12:50 -04:00
|
|
|
++passedTests
|
2010-12-09 23:59:50 -05:00
|
|
|
catch e
|
2012-11-14 16:19:17 -05:00
|
|
|
failures.push
|
|
|
|
filename: currentFile
|
|
|
|
error: e
|
|
|
|
description: description if description?
|
|
|
|
source: fn.toString() if fn.toString?
|
2010-11-28 12:27:06 -05:00
|
|
|
|
2016-11-30 00:19:11 -05:00
|
|
|
helpers.extend global, require './test/support/helpers'
|
2010-12-16 00:12:11 -05:00
|
|
|
|
2011-08-14 16:39:38 -04:00
|
|
|
# When all the tests have run, collect and print errors.
|
|
|
|
# If a stacktrace is available, output the compiled function source.
|
|
|
|
process.on 'exit', ->
|
|
|
|
time = ((Date.now() - startTime) / 1000).toFixed(2)
|
2011-10-07 00:39:24 -04:00
|
|
|
message = "passed #{passedTests} tests in #{time} seconds#{reset}"
|
2011-08-14 16:39:38 -04:00
|
|
|
return log(message, green) unless failures.length
|
|
|
|
log "failed #{failures.length} and #{message}", red
|
|
|
|
for fail in failures
|
2012-11-14 16:19:17 -05:00
|
|
|
{error, filename, description, source} = fail
|
2011-08-14 16:39:38 -04:00
|
|
|
console.log ''
|
2012-11-14 16:19:17 -05:00
|
|
|
log " #{description}", red if description
|
2011-08-14 16:39:38 -04:00
|
|
|
log " #{error.stack}", red
|
2012-11-14 16:19:17 -05:00
|
|
|
console.log " #{source}" if source
|
2011-08-14 16:39:38 -04:00
|
|
|
return
|
|
|
|
|
2010-12-11 20:30:48 -05:00
|
|
|
# Run every test in the `test` folder, recording failures.
|
2011-07-18 17:47:31 -04:00
|
|
|
files = fs.readdirSync 'test'
|
2013-11-30 15:26:32 -05:00
|
|
|
|
2013-05-25 10:04:18 -04:00
|
|
|
for file in files when helpers.isCoffee file
|
2013-02-27 21:54:17 -05:00
|
|
|
literate = helpers.isLiterate file
|
2011-07-18 17:47:31 -04:00
|
|
|
currentFile = filename = path.join 'test', file
|
|
|
|
code = fs.readFileSync filename
|
|
|
|
try
|
2012-09-25 20:35:02 -04:00
|
|
|
CoffeeScript.run code.toString(), {filename, literate}
|
2011-07-18 17:47:31 -04:00
|
|
|
catch error
|
|
|
|
failures.push {filename, error}
|
|
|
|
return !failures.length
|
2010-10-11 10:42:13 -04:00
|
|
|
|
|
|
|
|
2011-10-07 00:39:24 -04:00
|
|
|
task 'test', 'run the CoffeeScript language test suite', ->
|
|
|
|
runTests CoffeeScript
|
2010-10-11 10:42:13 -04:00
|
|
|
|
|
|
|
|
2011-10-07 00:39:24 -04:00
|
|
|
task 'test:browser', 'run the test suite against the merged browser script', ->
|
2016-11-27 23:47:54 -05:00
|
|
|
source = fs.readFileSync "docs/v#{majorVersion}/browser-compiler/coffee-script.js", 'utf-8'
|
2010-10-11 13:27:05 -04:00
|
|
|
result = {}
|
2010-12-12 21:41:04 -05:00
|
|
|
global.testingBrowser = yes
|
2010-10-11 13:27:05 -04:00
|
|
|
(-> eval source).call result
|
2011-10-07 00:39:24 -04:00
|
|
|
runTests result.CoffeeScript
|