forked from teamcapybara/capybara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdsl_spec.rb
269 lines (232 loc) · 7.39 KB
/
dsl_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
require 'spec_helper'
require 'capybara/dsl'
class TestClass
include Capybara::DSL
end
Capybara::SpecHelper.run_specs TestClass.new, "DSL", :skip => [
:js,
:screenshot,
:frames,
:windows,
:server
]
describe Capybara::DSL do
after do
Capybara.session_name = nil
Capybara.default_driver = nil
Capybara.javascript_driver = nil
Capybara.use_default_driver
Capybara.app = TestApp
end
describe '#default_driver' do
it "should default to rack_test" do
Capybara.default_driver.should == :rack_test
end
it "should be changeable" do
Capybara.default_driver = :culerity
Capybara.default_driver.should == :culerity
end
end
describe '#current_driver' do
it "should default to the default driver" do
Capybara.current_driver.should == :rack_test
Capybara.default_driver = :culerity
Capybara.current_driver.should == :culerity
end
it "should be changeable" do
Capybara.current_driver = :culerity
Capybara.current_driver.should == :culerity
end
end
describe '#javascript_driver' do
it "should default to selenium" do
Capybara.javascript_driver.should == :selenium
end
it "should be changeable" do
Capybara.javascript_driver = :culerity
Capybara.javascript_driver.should == :culerity
end
end
describe '#use_default_driver' do
it "should restore the default driver" do
Capybara.current_driver = :culerity
Capybara.use_default_driver
Capybara.current_driver.should == :rack_test
end
end
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
begin
Capybara.using_driver(:selenium) { raise "ohnoes!" }
rescue Exception
end
Capybara.current_driver.should == driver_before_block
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
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
before do
@previous_wait_time = Capybara.default_wait_time
end
after do
Capybara.default_wait_time = @previous_wait_time
end
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 == @previous_wait_time
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 == @previous_wait_time
end
end
describe '#app' do
it "should be changeable" do
Capybara.app = "foobar"
Capybara.app.should == 'foobar'
end
end
describe '#current_session' do
it "should choose a session object of the current driver type" do
Capybara.current_session.should be_a(Capybara::Session)
end
it "should use #app as the application" do
Capybara.app = proc {}
Capybara.current_session.app.should == Capybara.app
end
it "should change with the current driver" do
Capybara.current_session.mode.should == :rack_test
Capybara.current_driver = :selenium
Capybara.current_session.mode.should == :selenium
end
it "should be persistent even across driver changes" do
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
Capybara.current_session.object_id.should_not == object_id
Capybara.current_driver = :rack_test
Capybara.current_session.object_id.should == object_id
end
it "should change when changing application" do
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
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
describe 'the DSL' do
before do
@session = Class.new { include Capybara::DSL }.new
end
it "should be possible to include it in another class" do
klass = Class.new do
include Capybara::DSL
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
end
end