X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a94e15cab04a19dcbb02f2e95335e337c8e55036..e20590d485505f58f7745d74a311ca539c9be940:/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 1897a03858..86d5902ff5 100644 --- a/apps/workbench/test/integration/errors_test.rb +++ b/apps/workbench/test/integration/errors_test.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'integration_helper' class ErrorsTest < ActionDispatch::IntegrationTest @@ -9,7 +13,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 +21,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 +50,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), @@ -79,50 +71,58 @@ class ErrorsTest < ActionDispatch::IntegrationTest end test "API error page has Report problem button" do - original_arvados_v1_base = Rails.configuration.arvados_v1_base - - begin - # point to a bad api server url to generate fiddlesticks error - Rails.configuration.arvados_v1_base = "https://[100::f]:1/" - - visit page_with_token("active") - - assert(page.has_text?(/fiddlesticks/i), 'Expected to be in error page') - - # reset api server base config to let the popup rendering to work - Rails.configuration.arvados_v1_base = original_arvados_v1_base - - # check the "Report problem" button - assert page.has_link? 'Report problem', 'Report problem link not found' - - click_link 'Report problem' - within '.modal-content' do - assert page.has_text?('Report a problem'), 'Report a problem text not found' - assert page.has_no_text?('Version / debugging info'), 'Version / debugging info is not expected' - assert page.has_text?('Describe the problem'), 'Describe the problem text not found' - assert page.has_text?('Send problem report'), 'Send problem report button text is not found' - assert page.has_no_button?('Send problem report'), 'Send problem report button is not disabled before entering problem description' - assert page.has_button?('Cancel'), 'Cancel button not found' - - # enter a report text and click on report - page.find_field('report_issue_text').set 'my test report text' - assert page.has_button?('Send problem report'), 'Send problem report button not enabled after entering text' - click_button 'Send problem report' - - # ajax success updated button texts and added footer message - assert page.has_no_text?('Send problem report'), 'Found button - Send problem report' - assert page.has_no_button?('Cancel'), 'Found button - Cancel' - assert page.has_text?('Report sent'), 'No text - Report sent' - assert page.has_button?('Close'), 'No button - Close' - assert page.has_text?('Thanks for reporting this issue'), 'No text - Thanks for reporting this issue' - - click_button 'Close' - end - - # out of the popup now and should be back in the error page - assert(page.has_text?(/fiddlesticks/i), 'Expected to be in error page after closing report issue popup') - ensure - Rails.configuration.arvados_v1_base = original_arvados_v1_base + # point to a bad api server url to generate fiddlesticks error + original_arvados_v1_base = Rails.configuration.Services.Controller.ExternalURL + Rails.configuration.Services.Controller.ExternalURL = URI("https://[::1]:1/") + + visit page_with_token("active") + + assert_text 'fiddlesticks' + + # reset api server base config to let the popup rendering to work + Rails.configuration.Services.Controller.ExternalURL = original_arvados_v1_base + + click_link 'Report problem' + + within '.modal-content' do + assert_text 'Report a problem' + assert_no_text 'Version / debugging info' + assert_text 'Describe the problem' + assert_text 'Send problem report' + # "Send" button should be disabled until text is entered + assert_no_selector 'a,button:not([disabled])', text: 'Send problem report' + assert_selector 'a,button', text: 'Cancel' + + report = mock + report.expects(:deliver).returns true + IssueReporter.expects(:send_report).returns report + + # enter a report text and click on report + find_field('report_issue_text').set 'my test report text' + click_button 'Send problem report' + + # ajax success updated button texts and added footer message + assert_no_selector 'a,button', text: 'Send problem report' + assert_no_selector 'a,button', text: 'Cancel' + assert_text 'Report sent' + assert_text 'Thanks for reporting this issue' + click_button 'Close' end + + # out of the popup now and should be back in the error page + assert_text 'fiddlesticks' end + + test "showing a trashed collection UUID gives untrash button" do + visit(page_with_token("active", "/collections/zzzzz-4zz18-trashedproj2col")) + assert(page.has_text?(/You must untrash the owner project to access this/i), + "missing untrash instructions") + end + + test "showing a trashed container request gives untrash button" do + visit(page_with_token("active", "/container_requests/zzzzz-xvhdp-cr5trashedcontr")) + assert(page.has_text?(/You must untrash the owner project to access this/i), + "missing untrash instructions") + end + end