summaryrefslogtreecommitdiffstats
path: root/autotest
diff options
context:
space:
mode:
authorLuke Kanies <luke@puppetlabs.com>2011-04-09 15:04:23 -0700
committerLuke Kanies <luke@puppetlabs.com>2011-04-09 19:31:50 -0700
commit69db81746fee54e14ee3e46f2fc31e93c096d529 (patch)
tree8bc3934ddcd00eabdc365d10c6d4bcc9f687c66c /autotest
parent8ec9d13b7e6885c2d18bc3b7c69a83ce5bf2f353 (diff)
downloadpuppet-69db81746fee54e14ee3e46f2fc31e93c096d529.tar.gz
puppet-69db81746fee54e14ee3e46f2fc31e93c096d529.tar.xz
puppet-69db81746fee54e14ee3e46f2fc31e93c096d529.zip
Fixing the watchr script
It had not been updated for quite a while. Signed-off-by: Luke Kanies <luke@puppetlabs.com> Reviewed-by: Daniel Pittman <daniel@puppetlabs.com>
Diffstat (limited to 'autotest')
-rw-r--r--autotest/watcher.rb138
1 files changed, 0 insertions, 138 deletions
diff --git a/autotest/watcher.rb b/autotest/watcher.rb
deleted file mode 100644
index 9f89a448c..000000000
--- a/autotest/watcher.rb
+++ /dev/null
@@ -1,138 +0,0 @@
-ENV["WATCHR"] = "1"
-ENV['AUTOTEST'] = 'true'
-
-def run_comp(cmd)
- puts cmd
- results = []
- old_sync = $stdout.sync
- $stdout.sync = true
- line = []
- begin
- open("| #{cmd}", "r") do |f|
- until f.eof? do
- c = f.getc
- putc c
- line << c
- if c == ?\n
- results << if RUBY_VERSION >= "1.9" then
- line.join
- else
- line.pack "c*"
- end
- line.clear
- end
- end
- end
- ensure
- $stdout.sync = old_sync
- end
- results.join
-end
-
-def clear
- #system("clear")
-end
-
-def growl(message, status)
- # Strip the color codes
- message.gsub!(/\[\d+m/, '')
-
- growlnotify = `which growlnotify`.chomp
- return if growlnotify.empty?
- title = "Watchr Test Results"
- image = status == :pass ? "autotest/images/pass.png" : "autotest/images/fail.png"
- options = "-w -n Watchr --image '#{File.expand_path(image)}' -m '#{message}' '#{title}'"
- system %(#{growlnotify} #{options} &)
-end
-
-def file2specs(file)
- %w{spec/unit spec/integration}.collect { |d|
- file.sub('lib/puppet', d)
- }.find_all { |f|
- File.exist?(f)
- }
-end
-
-def file2test(file)
- result = file.sub('lib/puppet', 'test')
- return nil unless File.exist?(result)
- result
-end
-
-def run_spec(command)
- clear
- result = run_comp(command).split("\n").last
- status = result.include?('0 failures') ? :pass : :fail
- growl result, status
-end
-
-def run_test(command)
- clear
- result = run_comp(command).split("\n").last
- status = result.include?('0 failures, 0 errors') ? :pass : :fail
- growl result.split("\n").last rescue nil
-end
-
-def run_test_file(file)
- run_test(%Q(#{file}))
-end
-
-def run_spec_files(files)
- files = Array(files)
- return if files.empty?
- opts = File.readlines('spec/spec.opts').collect { |l| l.chomp }.join(" ")
- run_spec("spec #{files.join(' ')}")
-end
-
-def run_all_tests
- run_test("rake unit")
-end
-
-def run_all_specs
- run_test("rake spec")
-end
-
-def run_suite
- run_all_tests
- run_all_specs
-end
-
-watch('spec/spec_helper.rb') { run_all_specs }
-watch(%r{^spec/(unit|integration)/.*\.rb$}) { |md| run_spec_files(md[0]) }
-watch(%r{^lib/puppet/(.*)\.rb$}) { |md|
- run_spec_files(file2specs(md[0]))
- if t = file2test(md[0])
- run_test_file(t)
- end
-}
-watch(%r{^spec/lib/spec.*}) { |md| run_all_specs }
-watch(%r{^spec/lib/monkey_patches/.*}) { |md| run_all_specs }
-watch(%r{test/.+\.rb}) { |md|
- if md[0] =~ /\/lib\//
- run_all_tests
- else
- run_test_file(md[0])
- end
-}
-
-# Ctrl-\
-Signal.trap 'QUIT' do
- puts " --- Running all tests ---\n\n"
- run_suite
-end
-
-@interrupted = false
-
-# Ctrl-C
-Signal.trap 'INT' do
- if @interrupted
- @wants_to_quit = true
- abort("\n")
- else
- puts "Interrupt a second time to quit; wait for rerun of tests"
- @interrupted = true
- Kernel.sleep 1.5
- # raise Interrupt, nil # let the run loop catch it
- run_suite
- end
-end