From 29a1b2c8894db8e6c6b840220b45371c521a17d2 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Mon, 20 Apr 2015 14:13:35 -0400 Subject: [PATCH] 3126: Use localhost to simulate API failures. reset_application_config in teardown nstead of setup. Remove superfluous cleanup. --- .../workbench/test/integration/errors_test.rb | 65 +++++++++---------- .../test/integration/projects_test.rb | 2 +- apps/workbench/test/test_helper.rb | 2 +- 3 files changed, 32 insertions(+), 37 deletions(-) diff --git a/apps/workbench/test/integration/errors_test.rb b/apps/workbench/test/integration/errors_test.rb index 32f16a68df..d2b8fd6fab 100644 --- a/apps/workbench/test/integration/errors_test.rb +++ b/apps/workbench/test/integration/errors_test.rb @@ -79,50 +79,45 @@ class ErrorsTest < ActionDispatch::IntegrationTest 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/" - 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") - visit page_with_token("active") + assert_text 'fiddlesticks' - assert_text 'fiddlesticks' + # reset api server base config to let the popup rendering to work + Rails.configuration.arvados_v1_base = original_arvados_v1_base - # 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' - 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' - 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 - 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' - # 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' - ensure - Rails.configuration.arvados_v1_base = original_arvados_v1_base + # 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 diff --git a/apps/workbench/test/integration/projects_test.rb b/apps/workbench/test/integration/projects_test.rb index 6c9bd6698e..c461d3ff4b 100644 --- a/apps/workbench/test/integration/projects_test.rb +++ b/apps/workbench/test/integration/projects_test.rb @@ -676,7 +676,7 @@ class ProjectsTest < ActionDispatch::IntegrationTest visit page_with_token 'active', '/projects/' + api_fixture('groups')['aproject']['uuid'] # Point to a bad api server url to generate error - Rails.configuration.arvados_v1_base = "https://[100::f]:1/" + Rails.configuration.arvados_v1_base = "https://[::1]:1/" click_link 'Other objects' within '#Other_objects' do # Error diff --git a/apps/workbench/test/test_helper.rb b/apps/workbench/test/test_helper.rb index fdde55d41d..ade6292efe 100644 --- a/apps/workbench/test/test_helper.rb +++ b/apps/workbench/test/test_helper.rb @@ -44,7 +44,7 @@ class ActiveSupport::TestCase end end - setup do + teardown do Thread.current[:arvados_api_token] = nil Thread.current[:user] = nil Thread.current[:reader_tokens] = nil -- 2.30.2