tracks/vendor/plugins/selenium-on-rails/lib/controllers/selenium_controller.rb

122 lines
3.6 KiB
Ruby
Raw Normal View History

require 'webrick/httputils'
class SeleniumController < ActionController::Base
include SeleniumOnRails::FixtureLoader
include SeleniumOnRails::Renderer
def initialize
@config = SeleniumOnRailsConfig.new
end
def setup
unless params.has_key? :keep_session
reset_session
@session_wiped = true
end
@cleared_tables = clear_tables params[:clear_tables].to_s
@loaded_fixtures = load_fixtures params[:fixtures].to_s
render :file => view_path('setup.rhtml'), :layout => layout_path\
end
def test_file
params[:testname] = '' if params[:testname].to_s == 'TestSuite.html'
filename = File.join selenium_tests_path, params[:testname]
if File.directory? filename
@suite_path = filename
render :file => view_path('test_suite.rhtml'), :layout => layout_path
elsif File.readable? filename
render_test_case filename
else
if File.directory? selenium_tests_path
render :text => 'Not found', :status => 404
else
render :text => "Did not find the Selenium tests path (#{selenium_tests_path}). Run script/generate selenium", :status => 404
end
end
end
def support_file
if params[:filename].empty?
redirect_to :filename => 'TestRunner.html', :test => 'tests'
return
end
filename = File.join selenium_path, params[:filename]
if File.file? filename
type = WEBrick::HTTPUtils::DefaultMimeTypes[$1.downcase] if filename =~ /\.(\w+)$/
type ||= 'text/html'
send_file filename, :type => type, :disposition => 'inline', :stream => false
else
render :text => 'Not found', :status => 404
end
end
def record
dir = record_table
@result = {'resultDir' => dir}
['result', 'numTestFailures', 'numTestPasses', 'numCommandFailures', 'numCommandPasses', 'numCommandErrors', 'totalTime'].each do |item|
@result[item] = params[item]
end
File.open(log_path(params[:logFile] || 'default.yml'), 'w') {|f| YAML.dump(@result, f)}
render :file => view_path('record.rhtml'), :layout => layout_path
end
def record_table
return nil unless result_dir = @config.get(:result_dir)
cur_result_dir = File.join(result_dir, (params[:logFile] || "default").sub(/\.yml$/, ''))
FileUtils.mkdir_p(cur_result_dir)
File.open("#{cur_result_dir}/index.html", "wb") do |f|
f.write <<EOS
<html>
<head><title>Selenium Test Result</title></head>
<frameset cols="30%,*">
<frame name="suite" src="suite.html">
<frame name="testcase" src="blank.html">
</frameset>
</html>
EOS
end
html_header = <<EOS
<html>
<head>
<link rel="stylesheet" type="text/css" href="selenium-test.css">
</head>
<body>
EOS
html_footer = "</body></html>\n"
if selenium_path
css_file = File.join selenium_path, "selenium-test.css"
if File.exist?(css_file)
FileUtils.cp css_file, cur_result_dir
end
end
File.open("#{cur_result_dir}/blank.html", "wb") do |f|
f.write "<html><body></body></html>"
end
File.open("#{cur_result_dir}/suite.html", "wb") do |f|
suite = params[:suite]
suite.sub!(/^.*(<table[\s>])/im, '\1')
i = 1
suite.gsub!(/(\shref=)"[^"]*"/i) do |m|
link = "#{$1}\"test#{i}.html\" target=\"testcase\""
File.open("#{cur_result_dir}/test#{i}.html", "wb") do |testcase|
testcase.write html_header
testcase.write(params["testTable.#{i}"])
testcase.write html_footer
end
i += 1
link
end
f.write html_header
f.write suite
f.write html_footer
end
cur_result_dir
end
private :record_table
end