2011-02-18 22:53:06 -05:00
|
|
|
require 'rspec'
|
|
|
|
require 'rspec/autorun'
|
2011-10-06 11:07:20 -04:00
|
|
|
require 'rbconfig'
|
2012-07-08 16:38:19 -04:00
|
|
|
require 'capybara'
|
2011-02-18 22:53:06 -05:00
|
|
|
|
|
|
|
PROJECT_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..')).freeze
|
|
|
|
|
|
|
|
$LOAD_PATH << File.join(PROJECT_ROOT, 'lib')
|
|
|
|
|
|
|
|
Dir[File.join(PROJECT_ROOT, 'spec', 'support', '**', '*.rb')].each { |file| require(file) }
|
|
|
|
|
2012-07-08 15:17:08 -04:00
|
|
|
require 'capybara/webkit'
|
2014-06-18 18:00:34 -04:00
|
|
|
$webkit_connection = Capybara::Webkit::Connection.new(:socket_class => TCPSocket)
|
|
|
|
$webkit_browser = Capybara::Webkit::Browser.new($webkit_connection)
|
2011-03-11 11:19:59 -05:00
|
|
|
|
2012-07-08 19:09:40 -04:00
|
|
|
if ENV['DEBUG']
|
|
|
|
$webkit_browser.enable_logging
|
|
|
|
end
|
|
|
|
|
2013-02-17 11:19:38 -05:00
|
|
|
require 'capybara/spec/spec_helper'
|
2012-07-08 16:38:19 -04:00
|
|
|
|
2011-04-14 10:16:56 -04:00
|
|
|
Capybara.register_driver :reusable_webkit do |app|
|
2012-07-08 15:17:08 -04:00
|
|
|
Capybara::Webkit::Driver.new(app, :browser => $webkit_browser)
|
2011-04-14 10:16:56 -04:00
|
|
|
end
|
2012-01-27 10:26:05 -05:00
|
|
|
|
2012-11-30 22:12:11 -05:00
|
|
|
RSpec.configure do |c|
|
2014-06-18 18:00:34 -04:00
|
|
|
Capybara::SpecHelper.configure(c)
|
|
|
|
|
2012-11-30 22:12:11 -05:00
|
|
|
c.filter_run_excluding :skip_on_windows => !(RbConfig::CONFIG['host_os'] =~ /mingw32/).nil?
|
2014-01-28 19:17:16 -05:00
|
|
|
c.filter_run_excluding :skip_on_jruby => !defined?(::JRUBY_VERSION).nil?
|
2014-06-18 18:00:34 -04:00
|
|
|
|
|
|
|
# We can't support outerWidth and outerHeight without a visible window.
|
|
|
|
# We focus the next window instead of failing when closing windows.
|
|
|
|
c.filter_run_excluding :full_description =>
|
|
|
|
/Capybara::Session webkit Capybara::Window #(size|resize_to|maximize|close.*no_such_window_error)/
|
|
|
|
|
|
|
|
# Capybara's integration tests expect "capybara/" in the default path
|
|
|
|
c.around :requires => :screenshot do |example|
|
|
|
|
old_path = Capybara.save_and_open_page_path
|
|
|
|
Capybara.save_and_open_page_path = File.join(PROJECT_ROOT, 'tmp', 'capybara')
|
|
|
|
|
|
|
|
begin
|
|
|
|
example.run
|
|
|
|
ensure
|
|
|
|
Capybara.save_and_open_page_path = old_path
|
|
|
|
end
|
|
|
|
end
|
2012-11-30 22:12:11 -05:00
|
|
|
end
|
|
|
|
|
2012-01-27 10:26:05 -05:00
|
|
|
def with_env_vars(vars)
|
2012-02-15 10:49:22 -05:00
|
|
|
old_env_variables = {}
|
2012-01-27 10:26:05 -05:00
|
|
|
vars.each do |key, value|
|
|
|
|
old_env_variables[key] = ENV[key]
|
|
|
|
ENV[key] = value
|
|
|
|
end
|
|
|
|
|
|
|
|
yield
|
|
|
|
|
|
|
|
old_env_variables.each do |key, value|
|
|
|
|
ENV[key] = value
|
|
|
|
end
|
|
|
|
end
|