1 require 'integration_helper'
2 require 'selenium-webdriver'
5 class ReportIssueTest < ActionDispatch::IntegrationTest
7 headless = Headless.new
9 Capybara.current_driver = :selenium
11 @user_profile_form_fields = Rails.configuration.user_profile_form_fields
15 Rails.configuration.user_profile_form_fields = @user_profile_form_fields
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'
29 # check show version info link
30 click_link 'Show version / debugging info ...'
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]+$!
43 assert_operator(2, :<=, history_links.count,
44 "Should have found two links to revision history " +
45 "in #{history_links.inspect}")
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 ...'
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'
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'
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'
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|
92 test "check version info and report issue for user #{token}" do
96 visit page_with_token(token)
99 check_version_info_and_report_issue_from_help_menu