X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/30e420e6cc547a12f2a775188f0429b3607da6c3..6fcd07063276bb57a751fa21bd6ab416b4092b3c:/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 d64ce35ecd..06e17d617f 100644 --- a/apps/workbench/test/integration/errors_test.rb +++ b/apps/workbench/test/integration/errors_test.rb @@ -1,11 +1,15 @@ require 'integration_helper' class ErrorsTest < ActionDispatch::IntegrationTest + setup do + need_javascript + end + BAD_UUID = "ffffffffffffffffffffffffffffffff+0" 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") @@ -13,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") @@ -73,4 +77,47 @@ class ErrorsTest < ActionDispatch::IntegrationTest assert(page.has_no_text?(/fiddlesticks/i), "unrouted request returned a generic error page, not 404") end + + test "API error page has Report problem button" do + # point to a bad api server url to generate fiddlesticks error + original_arvados_v1_base = Rails.configuration.arvados_v1_base + Rails.configuration.arvados_v1_base = "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.arvados_v1_base = 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 end