8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / test / integration / user_settings_menu_test.rb
1 require 'integration_helper'
2
3 class UserSettingsMenuTest < ActionDispatch::IntegrationTest
4   setup do
5     need_javascript
6   end
7
8   # test user settings menu
9   def verify_user_settings_menu user
10     if user['is_active']
11       within('.navbar-fixed-top') do
12         page.find("#notifications-menu").click
13         within('.dropdown-menu') do
14           assert_selector 'a', text: 'Virtual machines'
15           assert_selector 'a', text: 'Repositories'
16           assert_selector 'a', text: 'Current token'
17           assert_selector 'a', text: 'SSH keys'
18           find('a', text: 'SSH keys').click
19         end
20       end
21
22       # now in SSH Keys page
23       assert page.has_text?('Add new SSH key'), 'No text - Add SSH key'
24       add_and_verify_ssh_key
25     else  # inactive user
26       within('.navbar-fixed-top') do
27         page.find("#notifications-menu").click
28         within('.dropdown-menu') do
29           assert page.has_no_link?('Manage profile'), 'Found link - Manage profile'
30         end
31       end
32     end
33   end
34
35   def add_and_verify_ssh_key
36       click_link 'Add new SSH key'
37
38       within '.modal-content' do
39         assert page.has_text?('Public Key'), 'No text - Public Key'
40         assert page.has_button?('Cancel'), 'No button - Cancel'
41         assert page.has_button?('Submit'), 'No button - Submit'
42
43         page.find_field('public_key').set 'first test with an incorrect ssh key value'
44         click_button 'Submit'
45         assert_text 'Public key does not appear to be a valid ssh-rsa or dsa public key'
46
47         public_key_str = api_fixture('authorized_keys')['active']['public_key']
48         page.find_field('public_key').set public_key_str
49         page.find_field('name').set 'added_in_test'
50         click_button 'Submit'
51         assert_text 'Public key already exists in the database, use a different key.'
52
53         new_key = SSHKey.generate
54         page.find_field('public_key').set new_key.ssh_public_key
55         page.find_field('name').set 'added_in_test'
56         click_button 'Submit'
57       end
58
59       # key must be added. look for it in the refreshed page
60       assert_text 'added_in_test'
61   end
62
63   [
64     ['inactive', api_fixture('users')['inactive']],
65     ['inactive_uninvited', api_fixture('users')['inactive_uninvited']],
66     ['active', api_fixture('users')['active']],
67     ['admin', api_fixture('users')['admin']],
68   ].each do |token, user|
69     test "test user settings menu for user #{token}" do
70       visit page_with_token(token)
71       verify_user_settings_menu user
72     end
73   end
74
75   test "pipeline notification shown even though public pipelines exist" do
76     skip "created_by doesn't work that way"
77     Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
78     visit page_with_token 'job_reader'
79     click_link 'notifications-menu'
80     assert_selector 'a', text: 'Click here to learn how to run an Arvados Crunch pipeline'
81   end
82
83   [
84     ['job_reader', :ssh, :pipeline],
85     ['active'],
86   ].each do |user, *expect|
87     test "user settings menu for #{user} with notifications #{expect.inspect}" do
88       Rails.configuration.anonymous_user_token = false
89       visit page_with_token(user)
90       click_link 'notifications-menu'
91       if expect.include? :ssh
92         assert_selector('a', text: 'Click here to set up an SSH public key for use with Arvados')
93         click_link('Click here to set up an SSH public key for use with Arvados')
94         assert_selector('a', text: 'Add new SSH key')
95
96         add_and_verify_ssh_key
97
98         # No more SSH notification
99         click_link 'notifications-menu'
100         assert_no_selector('a', text: 'Click here to set up an SSH public key for use with Arvados')
101       else
102         assert_no_selector('a', text: 'Click here to set up an SSH public key for use with Arvados')
103         assert_no_selector('a', text: 'Click here to learn how to run an Arvados Crunch pipeline')
104       end
105
106       if expect.include? :pipeline
107         assert_selector('a', text: 'Click here to learn how to run an Arvados Crunch pipeline')
108       end
109     end
110   end
111
112   test "verify repositories for active user" do
113     visit page_with_token('active',"/users/#{api_fixture('users')['active']['uuid']}/repositories")
114     repos = [[api_fixture('repositories')['foo'], true, true],
115              [api_fixture('repositories')['repository3'], false, false],
116              [api_fixture('repositories')['repository4'], true, false]]
117
118     repos.each do |(repo, writable, sharable)|
119       within('tr', text: repo['name']+'.git') do
120         if sharable
121           assert_selector 'a', text:'Share'
122           assert_text 'writable'
123         else
124           assert_text repo['name']
125           assert_no_selector 'a', text:'Share'
126           if writable
127             assert_text 'writable'
128           else
129             assert_text 'read-only'
130           end
131         end
132       end
133     end
134   end
135
136   test "request shell access" do
137     ActionMailer::Base.deliveries = []
138     visit page_with_token('spectator', "/users/#{api_fixture('users')['spectator']['uuid']}/virtual_machines")
139     assert_text 'You do not have access to any virtual machines'
140     click_link 'Send request for shell access'
141
142     # Button text changes to "sending...", then back to normal. In the
143     # test suite we can't depend on confirming the "sending..." state
144     # before it goes back to normal, though.
145     ## assert_selector 'a', text: 'Sending request...'
146     assert_selector 'a', text: 'Send request for shell access'
147     assert_text 'A request for shell access was sent'
148
149     # verify that the email was sent
150     user = api_fixture('users')['spectator']
151     full_name = "#{user['first_name']} #{user['last_name']}"
152     expected = "Shell account request from #{full_name} (#{user['email']}, #{user['uuid']})"
153     found_email = 0
154     ActionMailer::Base.deliveries.each do |email|
155       if email.subject.include?(expected)
156         found_email += 1
157       end
158     end
159     assert_equal 1, found_email, "Expected email after requesting shell access"
160
161     # Revisit the page and verify the request sent message along with
162     # the request button.
163     within('.navbar-fixed-top') do
164       page.find("#notifications-menu").click
165       within('.dropdown-menu') do
166         find('a', text: 'Virtual machines').click
167       end
168     end
169     assert_text 'You do not have access to any virtual machines.'
170     assert_text 'A request for shell access was sent on '
171     assert_selector 'a', text: 'Send request for shell access'
172   end
173
174   test "create new repository" do
175     visit page_with_token("active_trustedclient")
176     within('.navbar-fixed-top') do
177       page.find("#notifications-menu").click
178       within('.dropdown-menu') do
179         assert_selector 'a', text: 'Repositories'
180         find('a', text: 'Repositories').click
181       end
182     end
183     click_on "Add new repository"
184     within ".modal-dialog" do
185       fill_in "Name", with: "workbenchtest"
186       click_on "Create"
187     end
188     assert_text ":active/workbenchtest.git"
189     assert_match /git@git.*:active\/workbenchtest.git/, page.text
190     assert_match /https:\/\/git.*\/active\/workbenchtest.git/, page.text
191   end
192
193   [
194     ['virtual_machines', nil, 'Host name', 'testvm2.shell'],
195     ['repositories', 'Add new repository', 'It may take a minute or two before you can clone your new repository.', 'active/foo'],
196     ['/current_token', nil, 'HISTIGNORE=$HISTIGNORE', 'ARVADOS_API_TOKEN=3kg6k6lzmp9kj5'],
197     ['ssh_keys', 'Add new SSH key', 'Click here to learn about SSH keys in Arvados.', 'active'],
198   ].each do |page_name, button_name, look_for, content|
199     test "test user settings menu for page #{page_name}" do
200       if page_name == '/current_token'
201         visit page_with_token('active', page_name)
202       else
203         visit page_with_token('active', "/users/#{api_fixture('users')['active']['uuid']}/#{page_name}")
204       end
205
206       assert page.has_text? content
207       if button_name
208         assert_selector 'a', text: button_name
209         find('a', text: button_name).click
210       end
211
212       assert page.has_text? look_for
213     end
214   end
215
216   [
217     ['virtual_machines', 'You do not have access to any virtual machines.'],
218     ['repositories', 'You do not seem to have access to any repositories.'],
219     ['/current_token', 'HISTIGNORE=$HISTIGNORE'],
220     ['ssh_keys', 'You have not yet set up an SSH public key for use with Arvados.'],
221   ].each do |page_name, look_for|
222     test "test user settings menu for page #{page_name} when page is empty" do
223       if page_name == '/current_token'
224         visit page_with_token('user1_with_load', page_name)
225       else
226         visit page_with_token('admin', "/users/#{api_fixture('users')['user1_with_load']['uuid']}/#{page_name}")
227       end
228
229      assert page.has_text? look_for
230     end
231   end
232 end