2016-03-07 19:52:19 -05:00
|
|
|
# frozen_string_literal: true
|
2015-07-22 02:41:23 -04:00
|
|
|
require "capybara/spec/test_app"
|
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
Capybara::SpecHelper.spec '#current_url, #current_path, #current_host' do
|
2012-01-04 10:33:41 -05:00
|
|
|
before :all do
|
|
|
|
@servers = 2.times.map { Capybara::Server.new(TestApp.clone).boot }
|
|
|
|
# sanity check
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@servers[0].port).not_to eq(@servers[1].port)
|
|
|
|
expect(@servers.map { |s| s.port }).not_to include 80
|
2012-01-04 10:33:41 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def bases
|
|
|
|
@servers.map { |s| "http://#{s.host}:#{s.port}" }
|
2009-12-17 12:41:05 -05:00
|
|
|
end
|
2010-07-09 21:11:54 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
def should_be_on server_index, path="/host", scheme="http"
|
2015-07-22 02:41:23 -04:00
|
|
|
#This delay is to give fully async drivers (selenium w/chromedriver) time for the browser
|
|
|
|
#to get to its destination - should be removed when we have a waiting current_url matcher
|
|
|
|
sleep 0.1 # remove and adjust tests when a waiting current_url/path matcher is implemented
|
2012-07-21 16:44:10 -04:00
|
|
|
# Check that we are on /host on the given server
|
|
|
|
s = @servers[server_index]
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session.current_url.chomp('?')).to eq("#{scheme}://#{s.host}:#{s.port}#{path}")
|
|
|
|
expect(@session.current_host).to eq("#{scheme}://#{s.host}") # no port
|
|
|
|
expect(@session.current_path).to eq(path)
|
2012-07-21 16:44:10 -04:00
|
|
|
if path == '/host'
|
|
|
|
# Server should agree with us
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session).to have_content("Current host is #{scheme}://#{s.host}:#{s.port}")
|
2012-01-04 10:33:41 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2012-01-04 10:33:41 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
def visit_host_links
|
|
|
|
@session.visit("#{bases[0]}/host_links?absolute_host=#{bases[1]}")
|
|
|
|
end
|
2012-01-04 10:33:41 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "is affected by visiting a page directly" do
|
|
|
|
@session.visit("#{bases[0]}/host")
|
|
|
|
should_be_on 0
|
|
|
|
end
|
2012-01-04 10:33:41 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "returns to the app host when visiting a relative url" do
|
|
|
|
Capybara.app_host = bases[1]
|
|
|
|
@session.visit("#{bases[0]}/host")
|
|
|
|
should_be_on 0
|
|
|
|
@session.visit('/host')
|
|
|
|
should_be_on 1
|
|
|
|
Capybara.app_host = nil
|
|
|
|
end
|
2012-01-04 10:33:41 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "is affected by setting Capybara.app_host" do
|
|
|
|
Capybara.app_host = bases[0]
|
|
|
|
@session.visit("/host")
|
|
|
|
should_be_on 0
|
|
|
|
Capybara.app_host = bases[1]
|
|
|
|
@session.visit("/host")
|
|
|
|
should_be_on 1
|
|
|
|
Capybara.app_host = nil
|
|
|
|
end
|
2012-01-04 10:33:41 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "is unaffected by following a relative link" do
|
|
|
|
visit_host_links
|
|
|
|
@session.click_link("Relative Host")
|
|
|
|
should_be_on 0
|
|
|
|
end
|
2012-01-04 10:33:41 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "is affected by following an absolute link" do
|
|
|
|
visit_host_links
|
|
|
|
@session.click_link("Absolute Host")
|
|
|
|
should_be_on 1
|
|
|
|
end
|
2012-01-04 10:33:41 -05:00
|
|
|
|
2015-07-22 02:41:23 -04:00
|
|
|
it "is unaffected by posting through a relative form" do
|
2012-07-21 16:44:10 -04:00
|
|
|
visit_host_links
|
|
|
|
@session.click_button("Relative Host")
|
|
|
|
should_be_on 0
|
|
|
|
end
|
2012-01-04 10:33:41 -05:00
|
|
|
|
2015-07-22 02:41:23 -04:00
|
|
|
it "is affected by posting through an absolute form" do
|
2012-07-21 16:44:10 -04:00
|
|
|
visit_host_links
|
|
|
|
@session.click_button("Absolute Host")
|
|
|
|
should_be_on 1
|
|
|
|
end
|
2012-01-04 10:33:41 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "is affected by following a redirect" do
|
|
|
|
@session.visit("#{bases[0]}/redirect")
|
|
|
|
should_be_on 0, "/landed"
|
2010-07-09 21:11:54 -04:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
|
2016-10-04 14:10:29 -04:00
|
|
|
it "is affected by pushState", requires: [:js] do
|
2012-12-30 09:05:41 -05:00
|
|
|
@session.visit("/with_js")
|
|
|
|
@session.execute_script("window.history.pushState({}, '', '/pushed')")
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session.current_path).to eq("/pushed")
|
2012-12-30 09:05:41 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
|
2016-10-04 14:10:29 -04:00
|
|
|
it "is affected by replaceState", requires: [:js] do
|
2012-12-30 09:05:41 -05:00
|
|
|
@session.visit("/with_js")
|
|
|
|
@session.execute_script("window.history.replaceState({}, '', '/replaced')")
|
2013-11-14 12:43:36 -05:00
|
|
|
expect(@session.current_path).to eq("/replaced")
|
2012-12-30 09:05:41 -05:00
|
|
|
end
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|