mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
68 lines
2.7 KiB
Ruby
68 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
require 'capybara/dsl'
|
|
|
|
RSpec.describe Capybara::SessionConfig do
|
|
describe "threadsafe" do
|
|
it "defaults to global session options" do
|
|
Capybara.threadsafe = true
|
|
session = Capybara::Session.new(:rack_test, TestApp)
|
|
%i[default_host app_host always_include_port run_server
|
|
default_selector default_max_wait_time ignore_hidden_elements
|
|
automatic_reload match exact raise_server_errors visible_text_only
|
|
automatic_label_click enable_aria_label save_path
|
|
asset_host].each do |m|
|
|
expect(session.config.public_send(m)).to eq Capybara.public_send(m)
|
|
end
|
|
end
|
|
|
|
it "doesn't change global session when changed" do
|
|
Capybara.threadsafe = true
|
|
host = "http://my.example.com"
|
|
session = Capybara::Session.new(:rack_test, TestApp) do |config|
|
|
config.default_host = host
|
|
config.automatic_label_click = !config.automatic_label_click
|
|
config.server_errors << ArgumentError
|
|
end
|
|
expect(Capybara.default_host).not_to eq host
|
|
expect(session.config.default_host).to eq host
|
|
expect(Capybara.automatic_label_click).not_to eq session.config.automatic_label_click
|
|
expect(Capybara.server_errors).not_to eq session.config.server_errors
|
|
end
|
|
|
|
it "doesn't allow session configuration block when false" do
|
|
Capybara.threadsafe = false
|
|
expect do
|
|
Capybara::Session.new(:rack_test, TestApp) { |config| }
|
|
end.to raise_error "A configuration block is only accepted when Capybara.threadsafe == true"
|
|
end
|
|
|
|
it "doesn't allow session config when false" do
|
|
Capybara.threadsafe = false
|
|
session = Capybara::Session.new(:rack_test, TestApp)
|
|
expect { session.config.default_selector = :title }.to raise_error(/Per session settings are only supported when Capybara.threadsafe == true/)
|
|
expect do
|
|
session.configure do |config|
|
|
config.exact = true
|
|
end
|
|
end.to raise_error(/Session configuration is only supported when Capybara.threadsafe == true/)
|
|
end
|
|
|
|
it "uses the config from the session" do
|
|
Capybara.threadsafe = true
|
|
session = Capybara::Session.new(:rack_test, TestApp) do |config|
|
|
config.default_selector = :link
|
|
end
|
|
session.visit('/with_html')
|
|
expect(session.find('foo').tag_name).to eq 'a'
|
|
end
|
|
|
|
it "won't change threadsafe once a session is created" do
|
|
Capybara.threadsafe = true
|
|
Capybara.threadsafe = false
|
|
Capybara::Session.new(:rack_test, TestApp)
|
|
expect { Capybara.threadsafe = true }.to raise_error(/Threadsafe setting cannot be changed once a session is created/)
|
|
end
|
|
end
|
|
end
|