discourse/lib/tasks/smoke_test.rake

33 lines
757 B
Ruby
Raw Normal View History

2013-02-20 19:07:22 -06:00
desc "run phantomjs based smoke tests on current build"
task "smoke:test" do
2013-02-25 10:42:20 -06:00
phantom_path = File.expand_path('~/phantomjs/bin/phantomjs')
2013-02-20 23:01:18 -06:00
phantom_path = nil unless File.exists?(phantom_path)
phantom_path = phantom_path || 'phantomjs'
url = ENV["URL"]
if !url
require "#{Rails.root}/config/environment"
url = Discourse.base_url
end
2013-02-25 10:42:20 -06:00
2013-02-20 23:01:18 -06:00
puts "Testing: #{url}"
2013-02-20 23:37:17 -06:00
require 'open-uri'
require 'net/http'
res = Net::HTTP.get_response(URI.parse(url))
if res.code != "200"
raise "TRIVIAL GET FAILED WITH #{res.code}"
end
2014-04-10 01:57:23 -05:00
results = ""
IO.popen("#{phantom_path} #{Rails.root}/spec/phantom_js/smoke_test.js #{url}").each do |line|
puts line
results << line
end
2013-02-20 23:01:18 -06:00
if results !~ /ALL PASSED/
raise "FAILED"
end
2013-02-20 19:07:22 -06:00
end