2872: added a test that creates a pipeline instance from within a folder and runs it.
[arvados.git] / apps / workbench / test / integration / logins_test.rb
index 185d9cb017f55ee66412d7df5e616bc96d55a881..be7e4e15a5692d5b47ce433fb5647cbb7159bd29 100644 (file)
@@ -1,4 +1,4 @@
-require 'test_helper'
+require 'integration_helper'
 
 class LoginsTest < ActionDispatch::IntegrationTest
   test "login with api_token works after redirect" do
@@ -11,4 +11,11 @@ class LoginsTest < ActionDispatch::IntegrationTest
     visit page_with_token('expired_trustedclient')
     assert page.has_text? 'Log in'
   end
+
+  test "expired token yields login page, not error page" do
+    visit page_with_token('expired_trustedclient')
+    # Even the error page has a "Log in" link. We should look for
+    # something that only appears the real login page.
+    assert page.has_text? ' Log in Oh... fiddlesticks. Sorry, I had some trouble handling your request'
+  end
 end