1 require "application_system_test_case"
3 class ReportNoteTest < ApplicationSystemTestCase
4 def test_no_link_when_not_logged_in
5 note = create(:note_with_comments)
6 visit browse_note_path(note)
7 assert page.has_content?(note.comments.first.body)
9 assert_not page.has_content?(I18n.t("browse.note.report"))
12 def test_can_report_anonymous_notes
13 note = create(:note_with_comments)
14 sign_in_as(create(:user))
15 visit browse_note_path(note)
17 click_on I18n.t("browse.note.report")
18 assert page.has_content? "Report"
19 assert page.has_content? I18n.t("reports.new.disclaimer.intro")
21 choose I18n.t("reports.new.categories.note.spam_label")
22 fill_in "report_details", :with => "This is spam"
23 assert_difference "Issue.count", 1 do
24 click_on "Create Report"
27 assert page.has_content? "Your report has been registered sucessfully"
29 assert_equal note, Issue.last.reportable
32 def test_can_report_notes_with_author
33 note = create(:note_comment, :author => create(:user)).note
34 sign_in_as(create(:user))
35 visit browse_note_path(note)
37 click_on I18n.t("browse.note.report")
38 assert page.has_content? "Report"
39 assert page.has_content? I18n.t("reports.new.disclaimer.intro")
41 choose I18n.t("reports.new.categories.note.spam_label")
42 fill_in "report_details", :with => "This is spam"
43 assert_difference "Issue.count", 1 do
44 click_on "Create Report"
47 assert page.has_content? "Your report has been registered sucessfully"
49 assert_equal note, Issue.last.reportable