X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f414dc4c1862c8d471b865dea5c7ac141de6d533..ae8ed6d9d0e5231379564beedc08c812352b7043:/apps/workbench/test/integration/user_manage_account_test.rb diff --git a/apps/workbench/test/integration/user_manage_account_test.rb b/apps/workbench/test/integration/user_manage_account_test.rb index af790f35c9..9b5e5d61e1 100644 --- a/apps/workbench/test/integration/user_manage_account_test.rb +++ b/apps/workbench/test/integration/user_manage_account_test.rb @@ -135,19 +135,40 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest end test "request shell access" do + ActionMailer::Base.deliveries = [] visit page_with_token('spectator', '/manage_account') assert_text 'You do not have access to any virtual machines' - click_button 'Request shell access' - assert_text 'Request sent for shell access' + click_link 'Send request for shell access' + + # Button text changes to "sending...", then back to normal. In the + # test suite we can't depend on confirming the "sending..." state + # before it goes back to normal, though. + ## assert_selector 'a', text: 'Sending request...' + assert_selector 'a', text: 'Send request for shell access' + assert_text 'A request for shell access was sent' + + # verify that the email was sent + user = api_fixture('users')['spectator'] + full_name = "#{user['first_name']} #{user['last_name']}" + expected = "Shell account request from #{full_name} (#{user['email']}, #{user['uuid']})" + found_email = 0 + ActionMailer::Base.deliveries.each do |email| + if email.subject.include?(expected) + found_email += 1 + end + end + assert_equal 1, found_email, "Expected email after requesting shell access" - # revisit the page and verify that the Request button is no longer shown + # Revisit the page and verify the request sent message along with + # the request button. within('.navbar-fixed-top') do find('a', text: 'spectator').click within('.dropdown-menu') do find('a', text: 'Manage account').click end end - assert_no_selector 'a', text: 'Request shell access' - assert_text 'You do not have access to any virtual machines. A request was sent on your behalf.' + assert_text 'You do not have access to any virtual machines.' + assert_text 'A request for shell access was sent on ' + assert_selector 'a', text: 'Send request for shell access' end end