X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2f6a87e443a137ac10f0ed1305399f3fd651f6a3..e8af4b85bf001ade543d03a503c769055d42e6a2:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index 08f2c92df..a40306e3c 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -30,6 +30,34 @@ class IssuesTest < ApplicationSystemTestCase assert_content issues.first.reported_user.display_name end + def test_view_issue_with_report + sign_in_as(create(:moderator_user)) + issue = create(:issue, :assigned_role => "moderator") + issue.reports << create(:report, :details => "test report text **with kramdown**") + + visit issue_path(issue) + assert_content I18n.t("issues.show.reports", :count => 1) + assert_content "test report text with kramdown" + assert_selector "strong", :text => "with kramdown" + end + + def test_view_issue_rich_text_container + sign_in_as(create(:moderator_user)) + issue = create(:issue, :assigned_role => "moderator") + issue.reports << create(:report, :details => "paragraph one\n\n---\n\nparagraph two") + + visit issue_path(issue) + assert_content I18n.t("issues.show.reports", :count => 1) + richtext = find "div.richtext" + richtext_elements = richtext.all "*" + assert_equal 3, richtext_elements.size + assert_equal "p", richtext_elements[0].tag_name + assert_equal "paragraph one", richtext_elements[0].text + assert_equal "hr", richtext_elements[1].tag_name + assert_equal "p", richtext_elements[2].tag_name + assert_equal "paragraph two", richtext_elements[2].text + end + def test_view_issues_with_no_reported_user sign_in_as(create(:moderator_user)) anonymous_note = create(:note_with_comments) @@ -52,21 +80,21 @@ class IssuesTest < ApplicationSystemTestCase # No issues against the user visit issues_path fill_in "search_by_user", :with => good_user.display_name - click_on "Search" + click_button "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_on "Search" + click_button "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_on "Search" + click_button "Search" assert_no_content I18n.t("issues.index.user_not_found") assert_no_content I18n.t("issues.index.issues_not_found") end @@ -78,7 +106,7 @@ class IssuesTest < ApplicationSystemTestCase visit issue_path(issue) fill_in :issue_comment_body, :with => "test comment" - click_on "Add Comment" + click_button "Add Comment" assert_content I18n.t("issue_comments.create.comment_created") assert_content "test comment" @@ -95,12 +123,29 @@ class IssuesTest < ApplicationSystemTestCase fill_in :issue_comment_body, :with => "reassigning to moderators" check :reassign - click_on "Add Comment" + click_button "Add Comment" + + assert_content "and the issue was reassigned" + assert_current_path issues_path(:status => "open") issue.reload assert_equal "moderator", issue.assigned_role end + def test_reassign_issue_as_super_user + issue = create(:issue) + sign_in_as(create(:super_user)) + + visit issue_path(issue) + + fill_in :issue_comment_body, :with => "reassigning to moderators" + check :reassign + click_button "Add Comment" + + assert_content "and the issue was reassigned" + assert_current_path issue_path(issue) + end + def test_issue_index_with_multiple_roles user1 = create(:user) user2 = create(:user)