]> git.openstreetmap.org Git - rails.git/blob - test/controllers/diary_comments_controller_test.rb
Merge remote-tracking branch 'upstream/pull/5575'
[rails.git] / test / controllers / diary_comments_controller_test.rb
1 require "test_helper"
2
3 class DiaryCommentsControllerTest < ActionDispatch::IntegrationTest
4   def setup
5     super
6     # Create the default language for diary entries
7     create(:language, :code => "en")
8   end
9
10   def test_routes
11     assert_routing(
12       { :path => "/user/username/diary/1/comments", :method => :post },
13       { :controller => "diary_comments", :action => "create", :display_name => "username", :id => "1" }
14     )
15     assert_routing(
16       { :path => "/diary_comments/2/hide", :method => :post },
17       { :controller => "diary_comments", :action => "hide", :comment => "2" }
18     )
19     assert_routing(
20       { :path => "/diary_comments/2/unhide", :method => :post },
21       { :controller => "diary_comments", :action => "unhide", :comment => "2" }
22     )
23   end
24
25   def test_create
26     user = create(:user)
27     other_user = create(:user)
28     entry = create(:diary_entry, :user => user)
29     create(:diary_entry_subscription, :diary_entry => entry, :user => user)
30
31     # Make sure that you are denied when you are not logged in
32     post comment_diary_entry_path(entry.user, entry)
33     assert_response :forbidden
34
35     session_for(other_user)
36
37     # Verify that you get a not found error, when you pass a bogus id
38     post comment_diary_entry_path(entry.user, :id => 9999)
39     assert_response :not_found
40     assert_select "div.content-heading", :count => 1 do
41       assert_select "h1", :text => "No entry with the id: 9999", :count => 1
42     end
43
44     # Now try an invalid comment with an empty body
45     assert_no_difference "ActionMailer::Base.deliveries.size" do
46       assert_no_difference "DiaryComment.count" do
47         assert_no_difference "entry.subscribers.count" do
48           perform_enqueued_jobs do
49             post comment_diary_entry_path(entry.user, entry, :diary_comment => { :body => "" })
50           end
51         end
52       end
53     end
54     assert_response :success
55     assert_template :new
56     assert_match(/img-src \* data:;/, @response.headers["Content-Security-Policy-Report-Only"])
57
58     # Now try again with the right id
59     assert_difference "ActionMailer::Base.deliveries.size", entry.subscribers.count do
60       assert_difference "DiaryComment.count", 1 do
61         assert_difference "entry.subscribers.count", 1 do
62           perform_enqueued_jobs do
63             post comment_diary_entry_path(entry.user, entry, :diary_comment => { :body => "New comment" })
64           end
65         end
66       end
67     end
68     comment = DiaryComment.last
69     assert_redirected_to diary_entry_path(entry.user, entry, :anchor => "comment#{comment.id}")
70     email = ActionMailer::Base.deliveries.first
71     assert_equal [user.email], email.to
72     assert_equal "[OpenStreetMap] #{other_user.display_name} commented on a diary entry", email.subject
73     assert_match(/New comment/, email.text_part.decoded)
74     assert_match(/New comment/, email.html_part.decoded)
75     ActionMailer::Base.deliveries.clear
76     assert_equal entry.id, comment.diary_entry_id
77     assert_equal other_user.id, comment.user_id
78     assert_equal "New comment", comment.body
79
80     # Now show the diary entry, and check the new comment is present
81     get diary_entry_path(entry.user, entry)
82     assert_response :success
83     assert_select ".diary-comment", :count => 1 do
84       assert_select "#comment#{comment.id}", :count => 1 do
85         assert_select "a[href='/user/#{ERB::Util.u(other_user.display_name)}']", :text => other_user.display_name, :count => 1
86       end
87       assert_select ".richtext", :text => /New comment/, :count => 1
88     end
89   end
90
91   def test_create_spammy
92     user = create(:user)
93     other_user = create(:user)
94     entry = create(:diary_entry, :user => user)
95     create(:diary_entry_subscription, :diary_entry => entry, :user => user)
96
97     session_for(other_user)
98
99     # Generate some spammy content
100     spammy_text = 1.upto(50).map { |n| "http://example.com/spam#{n}" }.join(" ")
101
102     # Try creating a spammy comment
103     assert_difference "ActionMailer::Base.deliveries.size", 1 do
104       assert_difference "DiaryComment.count", 1 do
105         perform_enqueued_jobs do
106           post comment_diary_entry_path(entry.user, entry, :diary_comment => { :body => spammy_text })
107         end
108       end
109     end
110     comment = DiaryComment.last
111     assert_redirected_to diary_entry_path(entry.user, entry, :anchor => "comment#{comment.id}")
112     email = ActionMailer::Base.deliveries.first
113     assert_equal [user.email], email.to
114     assert_equal "[OpenStreetMap] #{other_user.display_name} commented on a diary entry", email.subject
115     assert_match %r{http://example.com/spam}, email.text_part.decoded
116     assert_match %r{http://example.com/spam}, email.html_part.decoded
117     ActionMailer::Base.deliveries.clear
118     assert_equal entry.id, comment.diary_entry_id
119     assert_equal other_user.id, comment.user_id
120     assert_equal spammy_text, comment.body
121     assert_equal "suspended", User.find(other_user.id).status
122
123     # Follow the redirect
124     get diary_entries_path(:display_name => user.display_name)
125     assert_redirected_to :controller => :users, :action => :suspended
126
127     # Now show the diary entry, and check the new comment is not present
128     get diary_entry_path(entry.user, entry)
129     assert_response :success
130     assert_select ".diary-comment", :count => 0
131   end
132
133   def test_hide
134     user = create(:user)
135     diary_entry = create(:diary_entry, :user => user)
136     diary_comment = create(:diary_comment, :diary_entry => diary_entry)
137
138     # Try without logging in
139     post hide_diary_comment_path(diary_comment)
140     assert_response :forbidden
141     assert DiaryComment.find(diary_comment.id).visible
142
143     # Now try as a normal user
144     session_for(user)
145     post hide_diary_comment_path(diary_comment)
146     assert_redirected_to :controller => :errors, :action => :forbidden
147     assert DiaryComment.find(diary_comment.id).visible
148
149     # Try as a moderator
150     session_for(create(:moderator_user))
151     post hide_diary_comment_path(diary_comment)
152     assert_redirected_to diary_entry_path(user, diary_entry)
153     assert_not DiaryComment.find(diary_comment.id).visible
154
155     # Reset
156     diary_comment.reload.update(:visible => true)
157
158     # Finally try as an administrator
159     session_for(create(:administrator_user))
160     post hide_diary_comment_path(diary_comment)
161     assert_redirected_to diary_entry_path(user, diary_entry)
162     assert_not DiaryComment.find(diary_comment.id).visible
163   end
164
165   def test_unhide
166     user = create(:user)
167     diary_entry = create(:diary_entry, :user => user)
168     diary_comment = create(:diary_comment, :diary_entry => diary_entry, :visible => false)
169
170     # Try without logging in
171     post unhide_diary_comment_path(diary_comment)
172     assert_response :forbidden
173     assert_not DiaryComment.find(diary_comment.id).visible
174
175     # Now try as a normal user
176     session_for(user)
177     post unhide_diary_comment_path(diary_comment)
178     assert_redirected_to :controller => :errors, :action => :forbidden
179     assert_not DiaryComment.find(diary_comment.id).visible
180
181     # Now try as a moderator
182     session_for(create(:moderator_user))
183     post unhide_diary_comment_path(diary_comment)
184     assert_redirected_to diary_entry_path(user, diary_entry)
185     assert DiaryComment.find(diary_comment.id).visible
186
187     # Reset
188     diary_comment.reload.update(:visible => true)
189
190     # Finally try as an administrator
191     session_for(create(:administrator_user))
192     post unhide_diary_comment_path(diary_comment)
193     assert_redirected_to diary_entry_path(user, diary_entry)
194     assert DiaryComment.find(diary_comment.id).visible
195   end
196 end