X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2340ebeaf34778645e6071e8b077df50e5ae3df5..34389f5d6803e4ae51c09d116baf2d75ef546b10:/apps/workbench/test/integration/users_test.rb?ds=sidebyside diff --git a/apps/workbench/test/integration/users_test.rb b/apps/workbench/test/integration/users_test.rb index df7d2453a7..dc3957c7b1 100644 --- a/apps/workbench/test/integration/users_test.rb +++ b/apps/workbench/test/integration/users_test.rb @@ -16,6 +16,7 @@ class UsersTest < ActionDispatch::IntegrationTest visit page_with_token('admin_trustedclient') # go to Users list page + find('#system-menu').click click_link 'Users' # check active user attributes in the list page @@ -23,18 +24,20 @@ class UsersTest < ActionDispatch::IntegrationTest assert (text.include? 'true false'), 'Expected is_active' end - click_link 'zzzzz-tpzed-xurymjxw79nv3jz' + find('tr', text: 'zzzzz-tpzed-xurymjxw79nv3jz'). + find('a', text: 'Show'). + click assert page.has_text? 'Attributes' - assert page.has_text? 'Metadata' + assert page.has_text? 'Advanced' assert page.has_text? 'Admin' # go to the Attributes tab click_link 'Attributes' assert page.has_text? 'modified_by_user_uuid' - page.within(:xpath, '//a[@data-name="is_active"]') do + page.within(:xpath, '//span[@data-name="is_active"]') do assert_equal "true", text, "Expected user's is_active to be true" end - page.within(:xpath, '//a[@data-name="is_admin"]') do + page.within(:xpath, '//span[@data-name="is_admin"]') do assert_equal "false", text, "Expected user's is_admin to be false" end @@ -48,6 +51,7 @@ class UsersTest < ActionDispatch::IntegrationTest visit page_with_token('admin_trustedclient') + find('#system-menu').click click_link 'Users' assert page.has_text? 'zzzzz-tpzed-d9tiejq69daie8f' @@ -61,34 +65,31 @@ class UsersTest < ActionDispatch::IntegrationTest fill_in "email", :with => "foo@example.com" fill_in "repo_name", :with => "test_repo" click_button "Submit" + wait_for_ajax end - sleep(0.1) - - # verify that the new user showed up in the users page - assert page.has_text? 'foo@example.com' - - new_user_uuid = nil - all("tr").each do |elem| - if elem.text.include? 'foo@example.com' - new_user_uuid = elem.text.split[0] - break - end - end + visit '/users' + # verify that the new user showed up in the users page and find + # the new user's UUID + new_user_uuid = + find('tr[data-object-uuid]', text: 'foo@example.com')['data-object-uuid'] assert new_user_uuid, "Expected new user uuid not found" # go to the new user's page - click_link new_user_uuid + find('tr', text: new_user_uuid). + find('a', text: 'Show'). + click assert page.has_text? 'modified_by_user_uuid' - page.within(:xpath, '//a[@data-name="is_active"]') do + page.within(:xpath, '//span[@data-name="is_active"]') do assert_equal "false", text, "Expected new user's is_active to be false" end + click_link 'Advanced' click_link 'Metadata' - assert page.has_text? '(Repository: test_repo)' - assert !(page.has_text? '(VirtualMachine:)') + assert page.has_text? 'Repository: test_repo' + assert !(page.has_text? 'VirtualMachine:') headless.stop end @@ -100,12 +101,13 @@ class UsersTest < ActionDispatch::IntegrationTest Capybara.current_driver = :selenium visit page_with_token('admin_trustedclient') + find('#system-menu').click click_link 'Users' - assert page.has_link? 'zzzzz-tpzed-xurymjxw79nv3jz' - # click on active user - click_link 'zzzzz-tpzed-xurymjxw79nv3jz' + find('tr', text: 'zzzzz-tpzed-xurymjxw79nv3jz'). + find('a', text: 'Show'). + click # Setup user click_link 'Admin' @@ -122,12 +124,12 @@ class UsersTest < ActionDispatch::IntegrationTest click_button "Submit" end - sleep(1) assert page.has_text? 'modified_by_client_uuid' + click_link 'Advanced' click_link 'Metadata' - assert page.has_text? '(Repository: test_repo)' - assert !(page.has_text? '(VirtualMachine:)') + assert page.has_text? 'Repository: test_repo' + assert !(page.has_text? 'VirtualMachine:') # Click on Setup button again and this time also choose a VM click_link 'Admin' @@ -141,12 +143,12 @@ class UsersTest < ActionDispatch::IntegrationTest click_button "Submit" end - sleep(0.1) assert page.has_text? 'modified_by_client_uuid' + click_link 'Advanced' click_link 'Metadata' - assert page.has_text? '(Repository: second_test_repo)' - assert page.has_text? '(VirtualMachine: testvm.shell)' + assert page.has_text? 'Repository: second_test_repo' + assert page.has_text? 'VirtualMachine: testvm.shell' headless.stop end @@ -159,17 +161,18 @@ class UsersTest < ActionDispatch::IntegrationTest visit page_with_token('admin_trustedclient') + find('#system-menu').click click_link 'Users' - assert page.has_link? 'zzzzz-tpzed-xurymjxw79nv3jz' - # click on active user - click_link 'zzzzz-tpzed-xurymjxw79nv3jz' + find('tr', text: 'zzzzz-tpzed-xurymjxw79nv3jz'). + find('a', text: 'Show'). + click # Verify that is_active is set - click_link 'Attributes' + find('a,button', text: 'Attributes').click assert page.has_text? 'modified_by_user_uuid' - page.within(:xpath, '//a[@data-name="is_active"]') do + page.within(:xpath, '//span[@data-name="is_active"]') do assert_equal "true", text, "Expected user's is_active to be true" end @@ -185,14 +188,15 @@ class UsersTest < ActionDispatch::IntegrationTest # Should now be back in the Attributes tab for the user page.driver.browser.switch_to.alert.accept assert page.has_text? 'modified_by_user_uuid' - page.within(:xpath, '//a[@data-name="is_active"]') do + page.within(:xpath, '//span[@data-name="is_active"]') do assert_equal "false", text, "Expected user's is_active to be false after unsetup" end + click_link 'Advanced' click_link 'Metadata' - assert !(page.has_text? '(Repository: test_repo)') - assert !(page.has_text? '(Repository: second_test_repo)') - assert !(page.has_text? '(VirtualMachine: testvm.shell)') + assert !(page.has_text? 'Repository: test_repo') + assert !(page.has_text? 'Repository: second_test_repo') + assert !(page.has_text? 'VirtualMachine: testvm.shell') # setup user again and verify links present click_link 'Admin' @@ -206,12 +210,12 @@ class UsersTest < ActionDispatch::IntegrationTest click_button "Submit" end - sleep(0.1) assert page.has_text? 'modified_by_client_uuid' + click_link 'Advanced' click_link 'Metadata' - assert page.has_text? '(Repository: second_test_repo)' - assert page.has_text? '(VirtualMachine: testvm.shell)' + assert page.has_text? 'Repository: second_test_repo' + assert page.has_text? 'VirtualMachine: testvm.shell' headless.stop end