X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/29a1b2c8894db8e6c6b840220b45371c521a17d2..e6cd7c31ee28851d3ead992437fc93f2fc73ef92:/apps/workbench/test/integration/errors_test.rb diff --git a/apps/workbench/test/integration/errors_test.rb b/apps/workbench/test/integration/errors_test.rb index d2b8fd6fab..32f6e02755 100644 --- a/apps/workbench/test/integration/errors_test.rb +++ b/apps/workbench/test/integration/errors_test.rb @@ -9,7 +9,7 @@ class ErrorsTest < ActionDispatch::IntegrationTest test "error page renders user navigation" do visit(page_with_token("active", "/collections/#{BAD_UUID}")) - assert(page.has_text?(api_fixture("users")["active"]["email"]), + assert(page.has_link?("notifications-menu"), "User information missing from error page") assert(page.has_no_text?(/log ?in/i), "Logged in user prompted to log in on error page") @@ -17,7 +17,7 @@ class ErrorsTest < ActionDispatch::IntegrationTest test "no user navigation with expired token" do visit(page_with_token("expired", "/collections/#{BAD_UUID}")) - assert(page.has_no_text?(api_fixture("users")["active"]["email"]), + assert(page.has_no_link?("notifications-menu"), "Page visited with expired token included user information") assert(page.has_selector?("a", text: /log ?in/i), "Login prompt missing on expired token error page") @@ -46,18 +46,6 @@ class ErrorsTest < ActionDispatch::IntegrationTest page.html =~ /\b(#{matching_stamps})\+[0-9A-Fa-f]{8}\b/ end - # We use API tokens with limited scopes as the quickest way to get the API - # server to return an error. If Workbench gets smarter about coping when - # it has a too-limited token, these tests will need to be adjusted. - test "API error page includes error token" do - start_stamp = now_timestamp - visit(page_with_token("active_readonly", "/authorized_keys")) - click_on "Add a new authorized key" - assert(page.has_text?(/fiddlesticks/i), - "Not on an error page after making an SSH key out of scope") - assert(page_has_error_token?(start_stamp), "no error token on 404 page") - end - test "showing a bad UUID returns 404" do visit(page_with_token("active", "/pipeline_templates/zzz")) assert(page.has_no_text?(/fiddlesticks/i),