Created
February 3, 2011 03:58
-
-
Save squarism/809026 to your computer and use it in GitHub Desktop.
A watchr.rb file for use with rspec for continuous ruby (not rails) testing.
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
# this is a watchr script for command line programs | |
# not rails. @squarism | |
ENV["WATCHR"] = "1" | |
system 'clear' | |
def growl(message) | |
growlnotify = `which growlnotify`.chomp | |
title = "Watchr Test Results" | |
passed = message.include?('0 failures') | |
image = passed ? "~/.watchr_images/passed.png" : "~/.watchr_images/failed.png" | |
severity = passed ? "-1" : "1" | |
options = "-w -n Watchr --image '#{File.expand_path(image)}'" | |
options << " -m '#{message}' '#{title}' -p #{severity}" | |
system %(#{growlnotify} #{options} &) | |
end | |
def run(cmd) | |
puts(cmd) | |
`#{cmd}` | |
end | |
def run_test_file(file) | |
system('clear') | |
result = run(%Q(rspec --color #{file})) | |
growl result.split("\n").last rescue nil | |
puts result | |
end | |
def run_all_tests | |
system('clear') | |
result = run "rake spec" | |
growl result.split("\n").last rescue nil | |
puts result | |
end | |
def run_all_features | |
system('clear') | |
run "cucumber" | |
end | |
def related_test_files(path) | |
Dir['spec/*.rb'].select { |file| file =~ /#{File.basename(path).split(".").first}_spec.rb/ } | |
end | |
def run_suite | |
run_all_tests | |
run_all_features | |
end | |
# these paths are handy for gem dev, edit the lib/ line down there to monitor *.rb in | |
# current directory if you're writing a straight up console program | |
watch('spec/spec_helper\.rb') { run_all_tests } | |
watch('spec/.*_spec\.rb') { |m| run_test_file(m[0]) } | |
watch('lib/.*\.rb') { |m| related_test_files(m[0]).map {|tf| run_test_file(tf) } } | |
# Ctrl-\ | |
Signal.trap 'QUIT' do | |
puts " --- Running all tests ---\n\n" | |
run_all_tests | |
end | |
@interrupted = false | |
# Ctrl-C | |
Signal.trap 'INT' do | |
if @interrupted then | |
@wants_to_quit = true | |
abort("\n") | |
else | |
puts "Interrupt a second time to quit" | |
@interrupted = true | |
Kernel.sleep 1.5 | |
# raise Interrupt, nil # let the run loop catch it | |
run_suite | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment