# No issues against the user
visit issues_path
fill_in "search_by_user", :with => good_user.display_name
- click_button "Search"
+ click_on "Search"
assert_no_content I18n.t("issues.index.user_not_found")
assert_content I18n.t("issues.index.issues_not_found")
# User doesn't exist
visit issues_path
fill_in "search_by_user", :with => "Nonexistent User"
- click_button "Search"
+ click_on "Search"
assert_content I18n.t("issues.index.user_not_found")
assert_content I18n.t("issues.index.issues_not_found")
# Find Issue against bad_user
visit issues_path
fill_in "search_by_user", :with => bad_user.display_name
- click_button "Search"
+ click_on "Search"
assert_no_content I18n.t("issues.index.user_not_found")
assert_no_content I18n.t("issues.index.issues_not_found")
end
visit issue_path(issue)
fill_in :issue_comment_body, :with => "test comment"
- click_button "Add Comment"
+ click_on "Add Comment"
assert_content I18n.t("issue_comments.create.comment_created")
assert_content "test comment"
fill_in :issue_comment_body, :with => "reassigning to moderators"
check :reassign
- click_button "Add Comment"
+ click_on "Add Comment"
assert_content "and the issue was reassigned"
assert_current_path issues_path(:status => "open")
fill_in :issue_comment_body, :with => "reassigning to moderators"
check :reassign
- click_button "Add Comment"
+ click_on "Add Comment"
assert_content "and the issue was reassigned"
assert_current_path issue_path(issue)
visit issues_path
- assert_link I18n.t("issues.index.reports_count", :count => issue1.reports_count), :href => issue_path(issue1)
- assert_link I18n.t("issues.index.reports_count", :count => issue2.reports_count), :href => issue_path(issue2)
+ assert_link I18n.t("issues.page.reports_count", :count => issue1.reports_count), :href => issue_path(issue1)
+ assert_link I18n.t("issues.page.reports_count", :count => issue2.reports_count), :href => issue_path(issue2)
+ end
+
+ def test_issues_pagination
+ 1.upto(80).each do
+ user = create(:user)
+ create(:issue, :reportable => user, :reported_user => user, :assigned_role => "administrator")
+ end
+
+ sign_in_as(create(:administrator_user))
+
+ visit issues_path
+
+ # First Page
+ assert_no_content I18n.t("issues.index.user_not_found")
+ assert_no_content I18n.t("issues.index.issues_not_found")
+ assert_css "tr", :count => 51
+
+ # Second Page
+ click_on I18n.t("issues.page.older_issues")
+ assert_no_content I18n.t("issues.index.user_not_found")
+ assert_no_content I18n.t("issues.index.issues_not_found")
+ assert_css "tr", :count => 31
+
+ # Back to First Page
+ click_on I18n.t("issues.page.newer_issues")
+ assert_no_content I18n.t("issues.index.user_not_found")
+ assert_no_content I18n.t("issues.index.issues_not_found")
+ assert_css "tr", :count => 51
end
end