X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7dbf8d83369cb73929080c4ba23fdd7dcd0184df..d257c217405efb042b1507c3d134f3912e0e7a98:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index 200029176..6a7094151 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -5,21 +5,21 @@ class IssuesTest < ApplicationSystemTestCase def test_view_issues_not_logged_in visit issues_path - assert page.has_content?(I18n.t("user.login.title")) + assert_content I18n.t("sessions.new.title") end def test_view_issues_normal_user sign_in_as(create(:user)) visit issues_path - assert page.has_content?(I18n.t("application.require_moderator_or_admin.not_a_moderator_or_admin")) + assert_content "Forbidden" end def test_view_no_issues sign_in_as(create(:moderator_user)) visit issues_path - assert page.has_content?(I18n.t(".issues.index.issues_not_found")) + assert_content I18n.t("issues.index.issues_not_found") end def test_view_issues @@ -27,19 +27,19 @@ class IssuesTest < ApplicationSystemTestCase issues = create_list(:issue, 3, :assigned_role => "moderator") visit issues_path - assert page.has_content?(issues.first.reported_user.display_name) + assert_content issues.first.reported_user.display_name end def test_view_issues_with_no_reported_user sign_in_as(create(:moderator_user)) anonymous_note = create(:note_with_comments) - issue = create(:issue, :reportable => anonymous_note) + issue = create(:issue, :reportable => anonymous_note, :assigned_role => "moderator") visit issues_path - assert page.has_content?(reportable_title(anonymous_note)) + assert_content reportable_title(anonymous_note) visit issue_path(issue) - assert page.has_content?(reportable_title(anonymous_note)) + assert_content reportable_title(anonymous_note) end def test_search_issues_by_user @@ -53,34 +53,37 @@ class IssuesTest < ApplicationSystemTestCase visit issues_path fill_in "search_by_user", :with => good_user.display_name click_on "Search" - assert page.has_content?(I18n.t(".issues.index.issues_not_found")) + 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 => "Nonexistant User" + fill_in "search_by_user", :with => "Nonexistent User" click_on "Search" - assert page.has_content?(I18n.t(".issues.index.user_not_found")) + 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_on "Search" - assert !page.has_content?(I18n.t(".issues.index.issues_not_found")) + assert_no_content I18n.t("issues.index.user_not_found") + assert_no_content I18n.t("issues.index.issues_not_found") end def test_commenting - issue = create(:issue) + issue = create(:issue, :assigned_role => "moderator") sign_in_as(create(:moderator_user)) visit issue_path(issue) fill_in :issue_comment_body, :with => "test comment" - click_on "Submit" - assert page.has_content?(I18n.t(".issues.comment.comment_created")) - assert page.has_content?("test comment") + click_on "Add Comment" + assert_content I18n.t("issue_comments.create.comment_created") + assert_content "test comment" issue.reload - assert_equal issue.comments.first.body, "test comment" + assert_equal("test comment", issue.comments.first.body) end def test_reassign_issue @@ -92,7 +95,7 @@ class IssuesTest < ApplicationSystemTestCase fill_in :issue_comment_body, :with => "reassigning to moderators" check :reassign - click_on "Submit" + click_on "Add Comment" issue.reload assert_equal "moderator", issue.assigned_role @@ -110,7 +113,7 @@ class IssuesTest < ApplicationSystemTestCase visit issues_path - assert page.has_link?(I18n.t(".issues.index.reports_count", :count => issue1.reports_count), :href => issue_path(issue1)) - assert page.has_link?(I18n.t(".issues.index.reports_count", :count => issue2.reports_count), :href => issue_path(issue2)) + assert page.has_link?(I18n.t("issues.index.reports_count", :count => issue1.reports_count), :href => issue_path(issue1)) + assert page.has_link?(I18n.t("issues.index.reports_count", :count => issue2.reports_count), :href => issue_path(issue2)) end end