Merge branch 'master' into 4559-long-component-names
[arvados.git] / apps / workbench / test / integration / report_issue_test.rb
1 require 'integration_helper'
2 require 'selenium-webdriver'
3 require 'headless'
4
5 class ReportIssueTest < 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_no_text?('Describe the problem?'), 'Found text - Describe the problem'
38       assert page.has_button?('Close'), 'No button - Close'
39       assert page.has_no_button?('Send problem report'), 'Found button - Send problem report'
40       history_links = all('a').select do |a|
41         a[:href] =~ %r!^https://arvados.org/projects/arvados/repository/changes\?rev=[0-9a-f]+$!
42       end
43       assert_operator(2, :<=, history_links.count,
44                       "Should have found two links to revision history " +
45                       "in #{history_links.inspect}")
46       click_button 'Close'
47     end
48
49     # check report issue link
50     within('.navbar-fixed-top') do
51       page.find("#arv-help").click
52       within('.dropdown-menu') do
53         click_link 'Report a problem ...'
54       end
55     end
56
57     within '.modal-content' do
58       assert page.has_text?('Report a problem'), 'No text - Report a problem'
59       assert page.has_no_text?('Version / debugging info'), 'Found text - Version / debugging info'
60       assert page.has_text?('Describe the problem'), 'No text - Describe the problem'
61       assert page.has_no_button?('Close'), 'Found button - Close'
62       assert page.has_text?('Send problem report'), 'Send problem report button text is not found'
63       assert page.has_no_button?('Send problem report'), 'Send problem report button is not disabled before entering problem description'
64       assert page.has_button?('Cancel'), 'No button - Cancel'
65
66       # enter a report text and click on report
67       page.find_field('report_issue_text').set 'my test report text'
68       assert page.has_button?('Send problem report'), 'Send problem report button not enabled after entering text'
69       click_button 'Send problem report'
70
71       # ajax success updated button texts and added footer message
72       assert page.has_no_text?('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