X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c4fa80c6ed2445e1e384455944eb6c4108906cad..45d885d56aa967e9699f5245fea30e71f1e2c47e:/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 9b5e5d61e1..e50907bf8b 100644 --- a/apps/workbench/test/integration/user_manage_account_test.rb +++ b/apps/workbench/test/integration/user_manage_account_test.rb @@ -9,7 +9,7 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest def verify_manage_account user if user['is_active'] within('.navbar-fixed-top') do - find('a', text: "#{user['email']}").click + page.find("#notifications-menu").click within('.dropdown-menu') do find('a', text: 'Manage account').click end @@ -24,7 +24,7 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest add_and_verify_ssh_key else # inactive user within('.navbar-fixed-top') do - find('a', text: "#{user['email']}").click + page.find("#notifications-menu").click within('.dropdown-menu') do assert page.has_no_link?('Manage profile'), 'Found link - Manage profile' end @@ -162,7 +162,7 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest # Revisit the page and verify the request sent message along with # the request button. within('.navbar-fixed-top') do - find('a', text: 'spectator').click + page.find("#notifications-menu").click within('.dropdown-menu') do find('a', text: 'Manage account').click end @@ -171,4 +171,14 @@ class UserManageAccountTest < ActionDispatch::IntegrationTest assert_text 'A request for shell access was sent on ' assert_selector 'a', text: 'Send request for shell access' end + + test "create new repository" do + visit page_with_token("active_trustedclient", "/manage_account") + click_on "Add new repository" + within ".modal-dialog" do + fill_in "Name", with: "workbenchtest" + click_on "Create" + end + assert_text ":active/workbenchtest.git" + end end