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
|
# frozen_string_literal: true
Capybara::SpecHelper.spec '#assert_current_path' do
before do
@session.visit('/with_js')
end
it 'should not raise if the page has the given current path' do
expect { @session.assert_current_path('/with_js') }.not_to raise_error
end
it 'should allow regexp matches' do
expect { @session.assert_current_path(/w[a-z]{3}_js/) }.not_to raise_error
end
it 'should wait for current_path', requires: [:js] do
@session.click_link('Change page')
expect { @session.assert_current_path('/with_html') }.not_to raise_error
end
it 'should raise if the page has not the given current_path' do
expect { @session.assert_current_path('/with_html') }.to raise_error(Capybara::ExpectationNotMet, 'expected "/with_js" to equal "/with_html"')
end
it 'should check query options' do
@session.visit('/with_js?test=test')
expect { @session.assert_current_path('/with_js?test=test') }.not_to raise_error
end
it 'should compare the full url' do
expect { @session.assert_current_path(%r{\Ahttp://[^/]*/with_js\Z}, url: true) }.not_to raise_error
end
it 'should ignore the query' do
@session.visit('/with_js?test=test')
expect { @session.assert_current_path('/with_js', ignore_query: true) }.not_to raise_error
end
it 'should not cause an exception when current_url is nil' do
allow(@session).to receive(:current_url).and_return(nil)
allow(@session.page).to receive(:current_url).and_return(nil) if @session.respond_to? :page
expect { @session.assert_current_path(nil) }.not_to raise_error
end
end
Capybara::SpecHelper.spec '#assert_no_current_path?' do
before do
@session.visit('/with_js')
end
it 'should raise if the page has the given current_path' do
expect { @session.assert_no_current_path('/with_js') }.to raise_error(Capybara::ExpectationNotMet)
end
it 'should allow regexp matches' do
expect { @session.assert_no_current_path(/monkey/) }.not_to raise_error
end
it 'should wait for current_path to disappear', requires: [:js] do
@session.click_link('Change page')
expect { @session.assert_no_current_path('/with_js') }.not_to raise_error
end
it 'should not raise if the page has not the given current_path' do
expect { @session.assert_no_current_path('/with_html') }.not_to raise_error
end
it 'should not cause an exception when current_url is nil' do
allow(@session).to receive(:current_url).and_return(nil)
allow(@session.page).to receive(:current_url).and_return(nil) if @session.respond_to? :page
expect { @session.assert_no_current_path('/with_html') }.not_to raise_error
end
end
|