Created
April 20, 2012 15:46
-
-
Save gr2m/2429822 to your computer and use it in GitHub Desktop.
Run jasmine.js tests from your console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. install www.phantomjs.org | |
# 2. set 'spec/specRunner.coffee' to where you put the phantom_specRunner.coffee file | |
# 3. set 'spec/specRunner.html' to where the jasmine html test page is located | |
$ phantomjs spec/specRunner.coffee spec/specRunner.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Wait until the test condition is true or a timeout occurs. Useful for waiting | |
# on a server response or for a ui change (fadeIn, etc.) to occur. | |
# | |
# @param testFx javascript condition that evaluates to a boolean, | |
# it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or | |
# as a callback function. | |
# @param onReady what to do when testFx condition is fulfilled, | |
# it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or | |
# as a callback function. | |
# @param timeOutMillis the max amount of time to wait. If not specified, 3 sec is used. | |
## | |
waitFor = (testFx, onReady, timeOutMillis=3000) -> | |
start = new Date().getTime() | |
condition = false | |
f = -> | |
if (new Date().getTime() - start < timeOutMillis) and not condition | |
# If not time-out yet and condition not yet fulfilled | |
condition = (if typeof testFx is 'string' then eval testFx else testFx()) #< defensive code | |
else | |
if not condition | |
# If condition still not fulfilled (timeout but condition is 'false') | |
console.log "'waitFor()' timeout" | |
phantom.exit(1) | |
else | |
# Condition fulfilled (timeout and/or condition is 'true') | |
# console.log "'waitFor()' finished in #{new Date().getTime() - start}ms." | |
if typeof onReady is 'string' then eval onReady else onReady() #< Do what it's supposed to do once the condition is fulfilled | |
clearInterval interval #< Stop this interval | |
interval = setInterval f, 100 #< repeat check every 100ms | |
if phantom.args.length isnt 1 | |
console.log 'Usage: run-jasmine.coffee URL' | |
phantom.exit() | |
page = new WebPage() | |
# Route "console.log()" calls from within the Page context to the main Phantom context (i.e. current "this") | |
page.onConsoleMessage = (msg, line, file)-> | |
console.log msg | |
page.open phantom.args[0], (status) -> | |
if status isnt 'success' | |
console.log status + '! Unable to access ' + phantom.args[0] | |
phantom.exit() | |
else | |
waitFor -> | |
page.evaluate -> | |
return not window.jas.currentRunner_.queue.running | |
, -> | |
page.evaluate -> | |
console.log '' | |
console.log "================================================================================" | |
console.log document.body.querySelector('.runner .description').innerText | |
console.log "================================================================================" | |
console.log '' | |
list = document.body.querySelectorAll('.failed > .description, .failed > .messages > .resultMessage') | |
for el in list | |
i = '' | |
e = el | |
until e.className == 'jasmine_reporter' | |
e = e.parentNode | |
i += ' ' if /failed/.test(e.className) | |
i += '=> ' if el.className == 'resultMessage fail' | |
console.log i + el.innerText | |
console.log '' if el.className == 'resultMessage fail' | |
phantom.exit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment