Merge branch 'master' into 3112-report-bug
[arvados.git] / apps / workbench / test / integration / report_issue_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
11     @user_profile_form_fields = Rails.configuration.user_profile_form_fields
12   end
13
14   teardown do
15     Rails.configuration.user_profile_form_fields = @user_profile_form_fields
16   end
17
18   # test version info and report issue from help menu
19   def check_version_info_and_report_issue_from_help_menu
20     within('.navbar-fixed-top') do
21       page.find("#arv-help").click
22       within('.dropdown-menu') do
23         assert page.has_link?('Tutorials and User guide'), 'No link - Tutorials and User guide'
24         assert page.has_link?('API Reference'), 'No link - API Reference'
25         assert page.has_link?('SDK Reference'), 'No link - SDK Reference'
26         assert page.has_link?('Show version / debugging info ...'), 'No link - Show version / debugging info'
27         assert page.has_link?('Report a problem ...'), 'No link - Report a problem'
28
29         # check show version info link
30         click_link 'Show version / debugging info ...'
31       end
32     end
33
34     within '.modal-content' do
35       assert page.has_text?('Version / debugging info'), 'No text - Version / debugging info'
36       assert page.has_no_text?('Report a problem'), 'Found text - Report a problem'
37       assert page.has_text?('API version'), 'No text - API version'
38       assert page.has_text?('API startup time'), 'No text - API startup time'
39       assert page.has_text?('Workbench version'), 'No text - Workbench version'
40       assert page.has_text?('Workbench URI'), 'No text - Arvados base'
41       assert page.has_no_text?('Found a problem?'), 'Found text - Found a problem'
42       assert page.has_button?('Close'), 'No button - Close'
43       assert page.has_no_button?('Send problem report'), 'Found button - Send problem report'
44       click_button 'Close'
45     end
46
47     # check report issue link
48     within('.navbar-fixed-top') do
49       page.find("#arv-help").click
50       within('.dropdown-menu') do
51         click_link 'Report a problem ...'
52       end
53     end
54
55     within '.modal-content' do
56       assert page.has_text?('Report a problem'), 'No text - Report a problem'
57       assert page.has_no_text?('Version / debugging info'), 'Found text - Version / debugging info'
58       assert page.has_text?('API version'), 'No text - API version'
59       assert page.has_text?('API startup time'), 'No text - API startup time'
60       assert page.has_text?('Workbench version'), 'No text - Workbench version'
61       assert page.has_text?('Workbench URI'), 'No text - Arvados base'
62       assert page.has_text?('Found a problem?'), 'No text - Found a problem'
63       assert page.has_no_button?('Close'), 'Found button - Close'
64       assert page.has_button?('Send problem report'), 'No button - Send problem report'
65       assert page.has_button?('Cancel'), 'No button - Cancel'
66
67       # enter a report text and click on report
68       page.find_field('report_issue_text').set 'my test report text'
69       click_button 'Send problem report'
70
71       # ajax success updated button texts and added footer message
72       assert page.has_no_button?('Send problem report'), 'Found button - Send problem report'
73       assert page.has_no_button?('Cancel'), 'Found button - Cancel'
74       assert page.has_text?('Report sent'), 'No text - Report sent'
75       assert page.has_button?('Close'), 'No text - Close'
76       assert page.has_text?('Thanks for reporting this issue'), 'No text - Thanks for reporting this issue'
77
78       click_button 'Close'
79     end
80   end
81
82   [
83     [nil, nil],
84     ['inactive', api_fixture('users')['inactive']],
85     ['inactive_uninvited', api_fixture('users')['inactive_uninvited']],
86     ['active', api_fixture('users')['active']],
87     ['admin', api_fixture('users')['admin']],
88     ['active_no_prefs', api_fixture('users')['active_no_prefs']],
89     ['active_no_prefs_profile', api_fixture('users')['active_no_prefs_profile']],
90   ].each do |token, user|
91
92     test "check version info and report issue for user #{token}" do
93       if !token
94         visit ('/')
95       else
96         visit page_with_token(token)
97       end
98
99       check_version_info_and_report_issue_from_help_menu
100     end
101
102   end
103
104 end