X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d3700e6201b4b78a70bbb2941572edc985b63c2c..d257c217405efb042b1507c3d134f3912e0e7a98:/test/system/report_diary_entry_test.rb diff --git a/test/system/report_diary_entry_test.rb b/test/system/report_diary_entry_test.rb index 15752777c..0800e1541 100644 --- a/test/system/report_diary_entry_test.rb +++ b/test/system/report_diary_entry_test.rb @@ -8,25 +8,30 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase def test_no_link_when_not_logged_in visit diary_entry_path(@diary_entry.user.display_name, @diary_entry) - assert page.has_content?(@diary_entry.title) + assert_content @diary_entry.title - assert_not page.has_content?(I18n.t("diary_entry.diary_entry.report")) + assert_no_content I18n.t("diary_entries.diary_entry.report") end def test_it_works sign_in_as(create(:user)) visit diary_entry_path(@diary_entry.user.display_name, @diary_entry) - assert page.has_content? @diary_entry.title + assert_content @diary_entry.title - click_on I18n.t("diary_entry.diary_entry.report") - assert page.has_content? "Report" - assert page.has_content? I18n.t("reports.new.disclaimer.intro") + click_on I18n.t("diary_entries.diary_entry.report") + assert_content "Report" + assert_content I18n.t("reports.new.disclaimer.intro") - choose I18n.t("reports.new.categories.diary_entry.spam") + choose I18n.t("reports.new.categories.diary_entry.spam_label") fill_in "report_details", :with => "This is advertising" - click_on "Create Report" + assert_difference "Issue.count", 1 do + click_on "Create Report" + end - assert page.has_content? "Your report has been registered sucessfully" + assert_content "Your report has been registered successfully" + + assert_equal @diary_entry, Issue.last.reportable + assert_equal "administrator", Issue.last.assigned_role end def test_it_reopens_issue @@ -35,15 +40,17 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase sign_in_as(create(:user)) visit diary_entry_path(@diary_entry.user.display_name, @diary_entry) - assert page.has_content? @diary_entry.title + assert_content @diary_entry.title - click_on I18n.t("diary_entry.diary_entry.report") - assert page.has_content? "Report" - assert page.has_content? I18n.t("reports.new.disclaimer.intro") + click_on I18n.t("diary_entries.diary_entry.report") + assert_content "Report" + assert_content I18n.t("reports.new.disclaimer.intro") - choose I18n.t("reports.new.categories.diary_entry.spam") + choose I18n.t("reports.new.categories.diary_entry.spam_label") fill_in "report_details", :with => "This is advertising" - click_on "Create Report" + assert_no_difference "Issue.count" do + click_on "Create Report" + end issue.reload assert_not issue.resolved? @@ -53,6 +60,6 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase def test_missing_report_params sign_in_as(create(:user)) visit new_report_path - assert page.has_content? I18n.t("reports.new.missing_params") + assert_content I18n.t("reports.new.missing_params") end end