3112: minor update in application layout test
[arvados.git] / apps / workbench / test / integration / application_layout_test.rb
1 require 'integration_helper'
2 require 'selenium-webdriver'
3 require 'headless'
4
5 class ApplicationLayoutTest < ActionDispatch::IntegrationTest
6   setup do
7     headless = Headless.new
8     headless.start
9     Capybara.current_driver = :selenium
10   end
11
12   def verify_homepage user, invited, has_profile
13     profile_config = Rails.configuration.user_profile_form_fields
14
15     if !user
16       assert page.has_text?('Please log in'), 'Not found text - Please log in'
17       assert page.has_text?('The "Log in" button below will show you a Google sign-in page'), 'Not found text - google sign in page'
18       assert page.has_no_text?('My projects'), 'Found text - My projects'
19       assert page.has_link?("Log in to #{Rails.configuration.site_name}"), 'Not found text - log in to'
20     elsif user['is_active']
21       if profile_config && !has_profile
22         assert page.has_text?('Save profile'), 'No text - Save profile'
23       else
24         assert page.has_text?('My projects'), 'Not found text - My projects'
25         assert page.has_text?('Projects shared with me'), 'Not found text - Project shared with me'
26       end
27     elsif invited
28       assert page.has_text?('Please check the box below to indicate that you have read and accepted the user agreement'), 'Not found text - Please check the box below . . .'
29     else
30       assert page.has_text?('Your account is inactive'), 'Not found text - Your account is inactive'
31     end
32
33     within('.navbar-fixed-top') do
34       if !user
35         assert page.has_link?('Log in'), 'Not found link - Log in'
36       else
37         # my account menu
38         assert page.has_link?("#{user['email']}"), 'Not found link - email'
39         find('a', text: "#{user['email']}").click
40         within('.dropdown-menu') do
41           if user['is_active']
42             assert page.has_no_link?('Not active'), 'Found link - Not active'
43             assert page.has_no_link?('Sign agreements'), 'Found link - Sign agreements'
44
45             assert page.has_link?('Manage account'), 'No link - Manage account'
46
47             if profile_config
48               assert page.has_link?('Manage profile'), 'No link - Manage profile'
49             else
50               assert page.has_no_link?('Manage profile'), 'Found link - Manage profile'
51             end
52           else
53             assert page.has_no_link?('Manage account'), 'Found link - Manage account'
54             assert page.has_no_link?('Manage profile'), 'Found link - Manage profile'
55           end
56           assert page.has_link?('Log out'), 'No link - Log out'
57         end
58       end
59     end
60   end
61
62   # test the help menu
63   def check_help_menu
64     within('.navbar-fixed-top') do
65       page.find("#arv-help").click
66       within('.dropdown-menu') do
67         assert page.has_link?('Tutorials and User guide'), 'No link - Tutorials and User guide'
68         assert page.has_link?('API Reference'), 'No link - API Reference'
69         assert page.has_link?('SDK Reference'), 'No link - SDK Reference'
70         assert page.has_link?('Show version / debugging info ...'), 'No link - Show version / debugging info'
71         assert page.has_link?('Report a problem ...'), 'No link - Report a problem'
72         # Version info and Report a problem are tested in "report_issue_test.rb"
73       end
74     end
75   end
76
77   def verify_system_menu user
78     if user && user['is_active']
79       look_for_add_new = nil
80       within('.navbar-fixed-top') do
81         page.find("#system-menu").click
82         if user['is_admin']
83           within('.dropdown-menu') do
84             assert page.has_text?('Groups'), 'No text - Groups'
85             assert page.has_link?('Repositories'), 'No link - Repositories'
86             assert page.has_link?('Virtual machines'), 'No link - Virtual machines'
87             assert page.has_link?('SSH keys'), 'No link - SSH keys'
88             assert page.has_link?('API tokens'), 'No link - API tokens'
89             find('a', text: 'Users').click
90             look_for_add_new = 'Add a new user'
91           end
92         else
93           within('.dropdown-menu') do
94             assert page.has_no_text?('Users'), 'Found text - Users'
95             assert page.has_no_link?('Repositories'), 'Found link - Repositories'
96             assert page.has_no_link?('Virtual machines'), 'Found link - Virtual machines'
97             assert page.has_no_link?('SSH keys'), 'Found link - SSH keys'
98             assert page.has_no_link?('API tokens'), 'Found link - API tokens'
99
100             find('a', text: 'Groups').click
101             look_for_add_new = 'Add a new group'
102           end
103         end
104       end
105       if look_for_add_new
106         assert page.has_text? look_for_add_new
107       end
108     else
109       assert page.has_no_link?('#system-menu'), 'Found link - system menu'
110     end
111   end
112
113   # test manage_account page
114   def verify_manage_account user
115     if user && user['is_active']
116       within('.navbar-fixed-top') do
117         find('a', text: "#{user['email']}").click
118         within('.dropdown-menu') do
119           find('a', text: 'Manage account').click
120         end
121       end
122
123       # now in manage account page
124       assert page.has_text?('Virtual Machines'), 'No text - Virtual Machines'
125       assert page.has_text?('Repositories'), 'No text - Repositories'
126       assert page.has_text?('SSH Keys'), 'No text - SSH Keys'
127       assert page.has_text?('Current Token'), 'No text - Current Token'
128
129       assert page.has_text?('The Arvados API token is a secret key that enables the Arvados SDKs to access Arvados'), 'No text - Arvados API token'
130
131       click_link 'Add new SSH key'
132
133       within '.modal-content' do
134         assert page.has_text?('Public Key'), 'No text - Public Key'
135         assert page.has_button?('Cancel'), 'No button - Cancel'
136         assert page.has_button?('Submit'), 'No button - Submit'
137
138         page.find_field('public_key').set 'first test with an incorrect ssh key value'
139         click_button 'Submit'
140         assert page.has_text?('Public key does not appear to be a valid ssh-rsa or dsa public key'), 'No text - Public key does not appear to be a valid'
141
142         public_key_str = api_fixture('authorized_keys')['active']['public_key']
143         page.find_field('public_key').set public_key_str
144         page.find_field('name').set 'added_in_test'
145         click_button 'Submit'
146         assert page.has_text?('Public key already exists in the database, use a different key.'), 'No text - Public key already exists'
147
148         new_key = SSHKey.generate
149         page.find_field('public_key').set new_key.ssh_public_key
150         page.find_field('name').set 'added_in_test'
151         click_button 'Submit'
152       end
153
154       # key must be added. look for it in the refreshed page
155       assert page.has_text?('added_in_test'), 'No text - added_in_test'
156     end
157   end
158
159   [
160     [nil, nil, false, false],
161     ['inactive', api_fixture('users')['inactive'], true, false],
162     ['inactive_uninvited', api_fixture('users')['inactive_uninvited'], false, false],
163     ['active', api_fixture('users')['active'], true, true],
164     ['admin', api_fixture('users')['admin'], true, true],
165     ['active_no_prefs', api_fixture('users')['active_no_prefs'], true, false],
166     ['active_no_prefs_profile', api_fixture('users')['active_no_prefs_profile'], true, false],
167   ].each do |token, user, invited, has_profile|
168
169     test "visit home page for user #{token}" do
170       if !token
171         visit ('/')
172       else
173         visit page_with_token(token)
174       end
175
176       verify_homepage user, invited, has_profile
177     end
178
179     test "check help for user #{token}" do
180       if !token
181         visit ('/')
182       else
183         visit page_with_token(token)
184       end
185
186       check_help_menu
187     end
188   end
189
190   [
191     ['active', api_fixture('users')['active']],
192     ['admin', api_fixture('users')['admin']],
193   ].each do |token, user|
194
195     test "test system menu for user #{token}" do
196       visit page_with_token(token)
197       verify_system_menu user
198     end
199
200     test "test manage account for user #{token}" do
201       visit page_with_token(token)
202       verify_manage_account user
203     end
204   end
205 end