Fix test. refs #3149
[arvados.git] / apps / workbench / test / integration / logins_test.rb
1 require 'integration_helper'
2
3 class LoginsTest < ActionDispatch::IntegrationTest
4   test "login with api_token works after redirect" do
5     visit page_with_token('active_trustedclient')
6     assert page.has_text?('Recent jobs'), "Missing 'Recent jobs' from page"
7     assert_no_match(/\bapi_token=/, current_path)
8   end
9
10   test "trying to use expired token redirects to login page" do
11     Capybara.current_driver = :rack_test
12
13     visit page_with_token('expired_trustedclient')
14     buttons = all("a.btn", text: /Log in/)
15     assert_equal(1, buttons.size, "Failed to find one login button")
16     login_link = buttons.first[:href]
17     assert_match(%r{//[^/]+/login}, login_link)
18     assert_no_match(/\bapi_token=/, login_link)
19   end
20 end