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
|
# frozen_string_literal: true
Capybara::SpecHelper.spec '#visit' do
it 'should fetch a response from the driver with a relative url' do
@session.visit('/')
expect(@session).to have_content('Hello world!')
@session.visit('/foo')
expect(@session).to have_content('Another World')
end
it 'should fetch a response from the driver with an absolute url with a port' do
# Preparation
@session.visit('/')
root_uri = URI.parse(@session.current_url)
@session.visit("http://#{root_uri.host}:#{root_uri.port}/")
expect(@session).to have_content('Hello world!')
@session.visit("http://#{root_uri.host}:#{root_uri.port}/foo")
expect(@session).to have_content('Another World')
end
it "should fetch a response when absolute URI doesn't have a trailing slash" do
# Preparation
@session.visit('/foo/bar')
root_uri = URI.parse(@session.current_url)
@session.visit("http://#{root_uri.host}:#{root_uri.port}")
expect(@session).to have_content('Hello world!')
end
it 'should fetch a response when sequentially visiting same destination with a target' do
@session.visit('/form')
expect(@session).to have_css('#form_title')
@session.visit('/form#form_title')
expect(@session).to have_css('#form_title')
end
it 'raises any errors caught inside the server', requires: [:server] do
quietly { @session.visit('/error') }
expect do
@session.visit('/')
end.to raise_error(TestApp::TestAppError)
end
it 'should be able to open non-http url', requires: [:about_scheme] do
@session.visit('about:blank')
@session.assert_no_selector :xpath, '/html/body/*'
end
context 'when Capybara.always_include_port is true' do
let(:root_uri) do
@session.visit('/')
URI.parse(@session.current_url)
end
before do
Capybara.always_include_port = true
end
after do
Capybara.always_include_port = false
end
it 'should fetch a response from the driver with an absolute url without a port' do
@session.visit("http://#{root_uri.host}/")
expect(URI.parse(@session.current_url).port).to eq(root_uri.port)
expect(@session).to have_content('Hello world!')
@session.visit("http://#{root_uri.host}/foo")
expect(URI.parse(@session.current_url).port).to eq(root_uri.port)
expect(@session).to have_content('Another World')
end
it 'should add the server port to a visited url if no port specified', requires: [:server] do
allow(@session.driver).to receive(:visit)
@session.visit('http://www.example.com')
expect(@session.driver).to have_received(:visit).with("http://www.example.com:#{@session.server.port}")
end
it 'should not override the visit specified port even if default for scheme', requires: [:server] do
allow(@session.driver).to receive(:visit)
@session.visit('http://www.example.com:80')
expect(@session.driver).to have_received(:visit).with('http://www.example.com:80')
end
it 'should give preference to app_host port if specified', requires: [:server] do
allow(@session.driver).to receive(:visit)
Capybara.app_host = 'http://www.example.com:6666'
@session.visit('/random')
expect(@session.driver).to have_received(:visit).with('http://www.example.com:6666/random')
end
it "shouldn't override port if no server", requires: [:server] do
session = Capybara::Session.new(@session.mode, nil)
allow(session.driver).to receive(:visit)
session.visit('http://www.google.com')
expect(session.driver).to have_received(:visit).with('http://www.google.com')
end
it "shouldn't override port if no server but app_host is set", requires: [:server] do
session = Capybara::Session.new(@session.mode, nil)
Capybara.app_host = 'http://www.example.com:6666'
allow(session.driver).to receive(:visit)
session.visit('http://www.google.com')
expect(session.driver).to have_received(:visit).with('http://www.google.com')
end
end
context 'when Capybara.always_include_port is false' do
before do
Capybara.always_include_port = false
end
it "shouldn't overwrite port if app_host is set", requires: [:server] do
session = Capybara::Session.new(@session.mode, nil)
Capybara.app_host = 'http://www.example.com:6666'
allow(session.driver).to receive(:visit)
session.visit('http://www.google.com')
expect(session.driver).to have_received(:visit).with('http://www.google.com')
end
it "shouldn't overwrite port if port specfified", requires: [:server] do
session = Capybara::Session.new(@session.mode, nil)
Capybara.app_host = 'http://www.example.com:6666'
allow(session.driver).to receive(:visit)
session.visit('http://www.google.com:99')
expect(session.driver).to have_received(:visit).with('http://www.google.com:99')
end
end
context 'without a server', requires: [:server] do
it 'should respect `app_host`' do
serverless_session = Capybara::Session.new(@session.mode, nil)
Capybara.app_host = "http://#{@session.server.host}:#{@session.server.port}"
serverless_session.visit('/foo')
expect(serverless_session).to have_content('Another World')
end
it 'should visit a fully qualified URL' do
serverless_session = Capybara::Session.new(@session.mode, nil)
serverless_session.visit("http://#{@session.server.host}:#{@session.server.port}/foo")
expect(serverless_session).to have_content('Another World')
end
end
context 'with Capybara.app_host set' do
it 'should override server', requires: [:server] do
another_session = Capybara::Session.new(@session.mode, @session.app.dup)
Capybara.app_host = "http://#{@session.server.host}:#{@session.server.port}"
another_session.visit('/foo')
expect(another_session).to have_content('Another World')
expect(another_session.current_url).to start_with(Capybara.app_host)
expect(URI.parse(another_session.current_url).port).not_to eq another_session.server.port
expect(URI.parse(another_session.current_url).port).to eq @session.server.port
end
it 'should append relative path', requires: [:server] do
Capybara.app_host = "http://#{@session.server.host}:#{@session.server.port}/redirect/0"
@session.visit('/times')
expect(@session).to have_content('redirection complete')
end
it 'should work if `app_host` has a trailing /', requires: [:server] do
Capybara.app_host = "http://#{@session.server.host}:#{@session.server.port}/"
@session.visit('/')
expect(@session).to have_content('Hello world!')
end
end
it 'should send no referer when visiting a page' do
@session.visit '/get_referer'
expect(@session).to have_content 'No referer'
end
it 'should send no referer when visiting a second page' do
@session.visit '/get_referer'
@session.visit '/get_referer'
expect(@session).to have_content 'No referer'
end
it 'should send a referer when following a link' do
@session.visit '/referer_base'
@session.find('//a[@href="/get_referer"]').click
expect(@session).to have_content %r{http://.*/referer_base}
end
it 'should preserve the original referer URL when following a redirect' do
@session.visit('/referer_base')
@session.find('//a[@href="/redirect_to_get_referer"]').click
expect(@session).to have_content %r{http://.*/referer_base}
end
it 'should send a referer when submitting a form' do
@session.visit '/referer_base'
@session.find('//input').click
expect(@session).to have_content %r{http://.*/referer_base}
end
it 'can set cookie if a blank path is specified' do
@session.visit('')
@session.visit('/get_cookie')
expect(@session).to have_content('root cookie')
end
context 'with base element' do
it 'should use base href with relative links' do
@session.visit('/base/with_base')
@session.click_link('Title page')
expect(@session).to have_current_path('/with_title')
end
it 'should use base href with bare queries' do
@session.visit('/base/with_base')
@session.click_link('Bare query')
expect(@session).to have_current_path('/?a=3')
end
it 'should not use the base href with a new visit call' do
@session.visit('/base/with_other_base')
@session.visit('with_html')
expect(@session).to have_current_path('/with_html')
end
end
end
|