teamcapybara--capybara/spec/dsl_spec.rb

257 lines
7.2 KiB
Ruby
Raw Normal View History

require 'spec_helper'
2009-11-16 21:02:16 +00:00
require 'capybara/dsl'
2009-11-12 16:51:31 +00:00
describe Capybara::DSL do
2009-11-12 16:51:31 +00:00
after do
Capybara.session_name = nil
2009-11-16 21:02:16 +00:00
Capybara.default_driver = nil
Capybara.use_default_driver
Capybara.app = TestApp
2009-11-12 16:51:31 +00:00
end
describe '#default_driver' do
it "should default to rack_test" do
2009-11-16 21:02:16 +00:00
Capybara.default_driver.should == :rack_test
2009-11-12 16:51:31 +00:00
end
it "should be changeable" do
2009-11-16 21:02:16 +00:00
Capybara.default_driver = :culerity
Capybara.default_driver.should == :culerity
2009-11-12 16:51:31 +00:00
end
end
describe '#current_driver' do
it "should default to the default driver" do
2009-11-16 21:02:16 +00:00
Capybara.current_driver.should == :rack_test
Capybara.default_driver = :culerity
Capybara.current_driver.should == :culerity
2009-11-12 16:51:31 +00:00
end
it "should be changeable" do
2009-11-16 21:02:16 +00:00
Capybara.current_driver = :culerity
Capybara.current_driver.should == :culerity
2009-11-12 16:51:31 +00:00
end
end
2009-11-16 19:11:42 +00:00
describe '#javascript_driver' do
it "should default to selenium" do
2009-11-16 21:02:16 +00:00
Capybara.javascript_driver.should == :selenium
2009-11-16 19:11:42 +00:00
end
it "should be changeable" do
2009-11-16 21:02:16 +00:00
Capybara.javascript_driver = :culerity
Capybara.javascript_driver.should == :culerity
2009-11-16 19:11:42 +00:00
end
end
2009-11-12 16:51:31 +00:00
describe '#use_default_driver' do
it "should restore the default driver" do
2009-11-16 21:02:16 +00:00
Capybara.current_driver = :culerity
Capybara.use_default_driver
Capybara.current_driver.should == :rack_test
2009-11-12 16:51:31 +00:00
end
end
2010-11-07 14:37:33 +00:00
describe '#using_driver' do
before do
Capybara.current_driver.should_not == :selenium
end
it 'should set the driver using Capybara.current_driver=' do
driver = nil
Capybara.using_driver(:selenium) { driver = Capybara.current_driver }
driver.should == :selenium
end
it 'should return the driver to default if it has not been changed' do
Capybara.using_driver(:selenium) do
Capybara.current_driver.should == :selenium
end
Capybara.current_driver.should == Capybara.default_driver
end
it 'should reset the driver even if an exception occurs' do
driver_before_block = Capybara.current_driver
2010-11-07 14:37:33 +00:00
begin
Capybara.using_driver(:selenium) { raise "ohnoes!" }
rescue Exception
end
Capybara.current_driver.should == driver_before_block
2010-11-07 14:37:33 +00:00
end
it 'should return the driver to what it was previously' do
Capybara.current_driver = :selenium
Capybara.using_driver(:culerity) do
Capybara.using_driver(:rack_test) do
Capybara.current_driver.should == :rack_test
end
Capybara.current_driver.should == :culerity
end
Capybara.current_driver.should == :selenium
end
2010-11-07 14:37:33 +00:00
it 'should yield the passed block' do
called = false
Capybara.using_driver(:selenium) { called = true }
called.should == true
end
end
describe '#using_wait_time' do
it "should switch the wait time and switch it back" do
in_block = nil
Capybara.using_wait_time 6 do
in_block = Capybara.default_wait_time
end
in_block.should == 6
Capybara.default_wait_time.should == 0
end
it "should ensure wait time is reset" do
expect do
Capybara.using_wait_time 6 do
raise "hell"
end
end.to raise_error
Capybara.default_wait_time.should == 0
end
after do
Capybara.default_wait_time = 0
end
end
2009-11-12 16:51:31 +00:00
describe '#app' do
it "should be changeable" do
2009-11-16 21:02:16 +00:00
Capybara.app = "foobar"
Capybara.app.should == 'foobar'
2009-11-12 16:51:31 +00:00
end
end
describe '#current_session' do
it "should choose a session object of the current driver type" do
2009-11-16 21:02:16 +00:00
Capybara.current_session.should be_a(Capybara::Session)
2009-11-12 16:51:31 +00:00
end
it "should use #app as the application" do
2009-11-16 21:02:16 +00:00
Capybara.app = proc {}
Capybara.current_session.app.should == Capybara.app
2009-11-12 16:51:31 +00:00
end
it "should change with the current driver" do
2009-11-16 21:02:16 +00:00
Capybara.current_session.mode.should == :rack_test
Capybara.current_driver = :selenium
Capybara.current_session.mode.should == :selenium
2009-11-12 16:51:31 +00:00
end
it "should be persistent even across driver changes" do
2009-11-16 21:02:16 +00:00
object_id = Capybara.current_session.object_id
Capybara.current_session.object_id.should == object_id
Capybara.current_driver = :selenium
Capybara.current_session.mode.should == :selenium
2009-11-16 21:02:16 +00:00
Capybara.current_session.object_id.should_not == object_id
2009-11-12 16:51:31 +00:00
2009-11-16 21:02:16 +00:00
Capybara.current_driver = :rack_test
Capybara.current_session.object_id.should == object_id
2009-11-12 16:51:31 +00:00
end
it "should change when changing application" do
2009-11-16 21:02:16 +00:00
object_id = Capybara.current_session.object_id
Capybara.current_session.object_id.should == object_id
Capybara.app = proc {}
Capybara.current_session.object_id.should_not == object_id
Capybara.current_session.app.should == Capybara.app
2009-11-12 16:51:31 +00:00
end
it "should change when the session name changes" do
object_id = Capybara.current_session.object_id
Capybara.session_name = :administrator
Capybara.session_name.should == :administrator
Capybara.current_session.object_id.should_not == object_id
Capybara.session_name = :default
Capybara.session_name.should == :default
Capybara.current_session.object_id.should == object_id
end
end
describe "#using_session" do
it "should change the session name for the duration of the block" do
Capybara.session_name.should == :default
Capybara.using_session(:administrator) do
Capybara.session_name.should == :administrator
end
Capybara.session_name.should == :default
end
it "should reset the session to the default, even if an exception occurs" do
begin
Capybara.using_session(:raise) do
raise
end
rescue Exception
end
Capybara.session_name.should == :default
end
it "should yield the passed block" do
called = false
Capybara.using_session(:administrator) { called = true }
called.should == true
end
end
describe "#session_name" do
it "should default to :default" do
Capybara.session_name.should == :default
end
end
2009-11-12 16:51:31 +00:00
describe 'the DSL' do
before do
@session = Class.new { include Capybara::DSL }.new
2009-11-12 16:51:31 +00:00
end
it_should_behave_like "session"
it_should_behave_like "session without javascript support"
it_should_behave_like "session without screenshot support"
2009-11-12 17:09:29 +00:00
it "should be possible to include it in another class" do
klass = Class.new do
include Capybara::DSL
2009-11-12 17:09:29 +00:00
end
foo = klass.new
foo.visit('/with_html')
foo.click_link('ullamco')
foo.body.should include('Another World')
end
it "should provide a 'page' shortcut for more expressive tests" do
klass = Class.new do
include Capybara::DSL
end
foo = klass.new
foo.page.visit('/with_html')
foo.page.click_link('ullamco')
foo.page.body.should include('Another World')
end
it "should provide an 'using_session' shortcut" do
klass = Class.new do
include Capybara::DSL
end
Capybara.should_receive(:using_session).with(:name)
foo = klass.new
foo.using_session(:name)
end
it "should provide a 'using_wait_time' shortcut" do
klass = Class.new do
include Capybara::DSL
end
Capybara.should_receive(:using_wait_time).with(6)
foo = klass.new
foo.using_wait_time(6)
end
2009-11-12 16:51:31 +00:00
end
end