3 class MessageControllerTest < ActionController::TestCase
5 # test all routes which lead to this controller
8 { :path => "/user/username/inbox", :method => :get },
9 { :controller => "message", :action => "inbox", :display_name => "username" }
12 { :path => "/user/username/outbox", :method => :get },
13 { :controller => "message", :action => "outbox", :display_name => "username" }
16 { :path => "/message/new/username", :method => :get },
17 { :controller => "message", :action => "new", :display_name => "username" }
20 { :path => "/message/new/username", :method => :post },
21 { :controller => "message", :action => "new", :display_name => "username" }
24 { :path => "/message/read/1", :method => :get },
25 { :controller => "message", :action => "read", :message_id => "1" }
28 { :path => "/message/mark/1", :method => :post },
29 { :controller => "message", :action => "mark", :message_id => "1" }
32 { :path => "/message/reply/1", :method => :get },
33 { :controller => "message", :action => "reply", :message_id => "1" }
36 { :path => "/message/reply/1", :method => :post },
37 { :controller => "message", :action => "reply", :message_id => "1" }
40 { :path => "/message/delete/1", :method => :post },
41 { :controller => "message", :action => "delete", :message_id => "1" }
46 # test fetching new message page when not logged in
48 # Check that the new message page requires us to login
50 get :new, :params => { :display_name => user.display_name }
51 assert_redirected_to login_path(:referer => new_message_path(:display_name => user.display_name))
55 # test fetching new message page when logged in
57 # Login as a normal user
59 recipient_user = create(:user)
60 session[:user] = user.id
62 # Check that the new message page loads
63 get :new, :params => { :display_name => recipient_user.display_name }
64 assert_response :success
66 assert_select "title", "Send message | OpenStreetMap"
67 assert_select "form[action='#{new_message_path(:display_name => recipient_user.display_name)}']", :count => 1 do
68 assert_select "input#message_title", :count => 1
69 assert_select "textarea#message_body", :count => 1
70 assert_select "input[type='submit'][value='Send']", :count => 1
75 # test fetching new message page with body and title
76 def test_new_get_with_params
77 # Login as a normal user
79 recipient_user = create(:user)
80 session[:user] = user.id
82 # Check that we can't send a message from a GET request
83 assert_difference "ActionMailer::Base.deliveries.size", 0 do
84 assert_difference "Message.count", 0 do
86 :params => { :display_name => recipient_user.display_name,
87 :message => { :title => "Test Message", :body => "Test message body" } }
90 assert_response :success
92 assert_select "title", "Send message | OpenStreetMap"
93 assert_select "form[action='#{new_message_path(:display_name => recipient_user.display_name)}']", :count => 1 do
94 assert_select "input#message_title", :count => 1 do
95 assert_select "[value='Test Message']"
97 assert_select "textarea#message_body", :text => "Test message body", :count => 1
98 assert_select "input[type='submit'][value='Send']", :count => 1
103 # test posting new message page with no body
104 def test_new_post_no_body
105 # Login as a normal user
107 recipient_user = create(:user)
108 session[:user] = user.id
110 # Check that the subject is preserved over errors
111 assert_difference "ActionMailer::Base.deliveries.size", 0 do
112 assert_difference "Message.count", 0 do
114 :params => { :display_name => recipient_user.display_name,
115 :message => { :title => "Test Message", :body => "" } }
118 assert_response :success
119 assert_template "new"
120 assert_select "title", "Send message | OpenStreetMap"
121 assert_select "form[action='#{new_message_path(:display_name => recipient_user.display_name)}']", :count => 1 do
122 assert_select "input#message_title", :count => 1 do
123 assert_select "[value='Test Message']"
125 assert_select "textarea#message_body", :text => "", :count => 1
126 assert_select "input[type='submit'][value='Send']", :count => 1
131 # test posting new message page with no title
132 def test_new_post_no_title
133 # Login as a normal user
135 recipient_user = create(:user)
136 session[:user] = user.id
138 # Check that the body text is preserved over errors
139 assert_difference "ActionMailer::Base.deliveries.size", 0 do
140 assert_difference "Message.count", 0 do
142 :params => { :display_name => recipient_user.display_name,
143 :message => { :title => "", :body => "Test message body" } }
146 assert_response :success
147 assert_template "new"
148 assert_select "title", "Send message | OpenStreetMap"
149 assert_select "form[action='#{new_message_path(:display_name => recipient_user.display_name)}']", :count => 1 do
150 assert_select "input#message_title", :count => 1 do
151 assert_select "[value='']"
153 assert_select "textarea#message_body", :text => "Test message body", :count => 1
154 assert_select "input[type='submit'][value='Send']", :count => 1
159 # test posting new message page sends message
160 def test_new_post_send
161 # Login as a normal user
163 recipient_user = create(:user)
164 session[:user] = user.id
166 # Check that sending a message works
167 assert_difference "ActionMailer::Base.deliveries.size", 1 do
168 assert_difference "Message.count", 1 do
170 :params => { :display_name => recipient_user.display_name,
171 :message => { :title => "Test Message", :body => "Test message body" } }
174 assert_redirected_to inbox_path(:display_name => user.display_name)
175 assert_equal "Message sent", flash[:notice]
176 e = ActionMailer::Base.deliveries.first
177 assert_equal [recipient_user.email], e.to
178 assert_equal "[OpenStreetMap] Test Message", e.subject
179 assert_match /Test message body/, e.text_part.decoded
180 assert_match /Test message body/, e.html_part.decoded
181 ActionMailer::Base.deliveries.clear
183 assert_equal user.id, m.from_user_id
184 assert_equal recipient_user.id, m.to_user_id
185 assert_in_delta Time.now, m.sent_on, 2
186 assert_equal "Test Message", m.title
187 assert_equal "Test message body", m.body
188 assert_equal "markdown", m.body_format
190 # Asking to send a message with a bogus user name should fail
191 get :new, :params => { :display_name => "non_existent_user" }
192 assert_response :not_found
193 assert_template "user/no_such_user"
194 assert_select "h1", "The user non_existent_user does not exist"
198 # test the new action message limit
200 # Login as a normal user
202 recipient_user = create(:user)
203 session[:user] = user.id
205 # Check that sending a message fails when the message limit is hit
206 assert_no_difference "ActionMailer::Base.deliveries.size" do
207 assert_no_difference "Message.count" do
208 with_message_limit(0) do
210 :params => { :display_name => recipient_user.display_name,
211 :message => { :title => "Test Message", :body => "Test message body" } }
212 assert_response :success
213 assert_template "new"
214 assert_select ".error", /wait a while/
221 # test the reply action
224 recipient_user = create(:user)
225 other_user = create(:user)
226 unread_message = create(:message, :unread, :sender => user, :recipient => recipient_user)
228 # Check that the message reply page requires us to login
229 get :reply, :params => { :message_id => unread_message.id }
230 assert_redirected_to login_path(:referer => reply_message_path(:message_id => unread_message.id))
232 # Login as the wrong user
233 session[:user] = other_user.id
235 # Check that we can't reply to somebody else's message
236 get :reply, :params => { :message_id => unread_message.id }
237 assert_redirected_to login_path(:referer => reply_message_path(:message_id => unread_message.id))
238 assert_equal "You are logged in as `#{other_user.display_name}' but the message you have asked to reply to was not sent to that user. Please login as the correct user in order to reply.", flash[:notice]
240 # Login as the right user
241 session[:user] = recipient_user.id
243 # Check that the message reply page loads
244 get :reply, :params => { :message_id => unread_message.id }
245 assert_response :success
246 assert_template "new"
247 assert_select "title", "Re: #{unread_message.title} | OpenStreetMap"
248 assert_select "form[action='#{new_message_path(:display_name => user.display_name)}']", :count => 1 do
249 assert_select "input#message_title[value='Re: #{unread_message.title}']", :count => 1
250 assert_select "textarea#message_body", :count => 1
251 assert_select "input[type='submit'][value='Send']", :count => 1
253 assert_equal true, Message.find(unread_message.id).message_read
255 # Asking to reply to a message with no ID should fail
256 assert_raise ActionController::UrlGenerationError do
260 # Asking to reply to a message with a bogus ID should fail
261 get :reply, :params => { :message_id => 99999 }
262 assert_response :not_found
263 assert_template "no_such_message"
267 # test the read action
270 recipient_user = create(:user)
271 other_user = create(:user)
272 unread_message = create(:message, :unread, :sender => user, :recipient => recipient_user)
274 # Check that the read message page requires us to login
275 get :read, :params => { :message_id => unread_message.id }
276 assert_redirected_to login_path(:referer => read_message_path(:message_id => unread_message.id))
278 # Login as the wrong user
279 session[:user] = other_user.id
281 # Check that we can't read the message
282 get :read, :params => { :message_id => unread_message.id }
283 assert_redirected_to login_path(:referer => read_message_path(:message_id => unread_message.id))
284 assert_equal "You are logged in as `#{other_user.display_name}' but the message you have asked to read was not sent by or to that user. Please login as the correct user in order to read it.", flash[:notice]
286 # Login as the message sender
287 session[:user] = user.id
289 # Check that the message sender can read the message
290 get :read, :params => { :message_id => unread_message.id }
291 assert_response :success
292 assert_template "read"
293 assert_equal false, Message.find(unread_message.id).message_read
295 # Login as the message recipient
296 session[:user] = recipient_user.id
298 # Check that the message recipient can read the message
299 get :read, :params => { :message_id => unread_message.id }
300 assert_response :success
301 assert_template "read"
302 assert_equal true, Message.find(unread_message.id).message_read
304 # Asking to read a message with no ID should fail
305 assert_raise ActionController::UrlGenerationError do
309 # Asking to read a message with a bogus ID should fail
310 get :read, :params => { :message_id => 99999 }
311 assert_response :not_found
312 assert_template "no_such_message"
316 # test the inbox action
319 other_user = create(:user)
320 read_message = create(:message, :read, :recipient => user)
321 # Check that the inbox page requires us to login
322 get :inbox, :params => { :display_name => user.display_name }
323 assert_redirected_to login_path(:referer => inbox_path(:display_name => user.display_name))
326 session[:user] = user.id
328 # Check that we can view our inbox when logged in
329 get :inbox, :params => { :display_name => user.display_name }
330 assert_response :success
331 assert_template "inbox"
332 assert_select "table.messages", :count => 1 do
333 assert_select "tr", :count => 2
334 assert_select "tr#inbox-#{read_message.id}.inbox-row", :count => 1
337 # Check that we can't view somebody else's inbox when logged in
338 get :inbox, :params => { :display_name => other_user.display_name }
339 assert_redirected_to inbox_path(:display_name => user.display_name)
343 # test the outbox action
346 other_user = create(:user)
347 create(:message, :sender => user)
349 # Check that the outbox page requires us to login
350 get :outbox, :params => { :display_name => user.display_name }
351 assert_redirected_to login_path(:referer => outbox_path(:display_name => user.display_name))
354 session[:user] = user.id
356 # Check that we can view our outbox when logged in
357 get :outbox, :params => { :display_name => user.display_name }
358 assert_response :success
359 assert_template "outbox"
360 assert_select "table.messages", :count => 1 do
361 assert_select "tr", :count => 2
362 assert_select "tr.inbox-row", :count => 1
365 # Check that we can't view somebody else's outbox when logged in
366 get :outbox, :params => { :display_name => other_user.display_name }
367 assert_redirected_to outbox_path(:display_name => user.display_name)
371 # test the mark action
374 recipient_user = create(:user)
375 other_user = create(:user)
376 unread_message = create(:message, :unread, :sender => user, :recipient => recipient_user)
378 # Check that the marking a message requires us to login
379 post :mark, :params => { :message_id => unread_message.id }
380 assert_response :forbidden
382 # Login as a user with no messages
383 session[:user] = other_user.id
385 # Check that marking a message we didn't send or receive fails
386 post :mark, :params => { :message_id => unread_message.id }
387 assert_response :not_found
388 assert_template "no_such_message"
390 # Login as the message recipient_user
391 session[:user] = recipient_user.id
393 # Check that the marking a message read works
394 post :mark, :params => { :message_id => unread_message.id, :mark => "read" }
395 assert_redirected_to inbox_path(:display_name => recipient_user.display_name)
396 assert_equal true, Message.find(unread_message.id).message_read
398 # Check that the marking a message unread works
399 post :mark, :params => { :message_id => unread_message.id, :mark => "unread" }
400 assert_redirected_to inbox_path(:display_name => recipient_user.display_name)
401 assert_equal false, Message.find(unread_message.id).message_read
403 # Check that the marking a message read via XHR works
404 post :mark, :xhr => true, :params => { :message_id => unread_message.id, :mark => "read" }
405 assert_response :success
406 assert_template "mark"
407 assert_equal true, Message.find(unread_message.id).message_read
409 # Check that the marking a message unread via XHR works
410 post :mark, :xhr => true, :params => { :message_id => unread_message.id, :mark => "unread" }
411 assert_response :success
412 assert_template "mark"
413 assert_equal false, Message.find(unread_message.id).message_read
415 # Asking to mark a message with no ID should fail
416 assert_raise ActionController::UrlGenerationError do
420 # Asking to mark a message with a bogus ID should fail
421 post :mark, :params => { :message_id => 99999 }
422 assert_response :not_found
423 assert_template "no_such_message"
427 # test the delete action
430 second_user = create(:user)
431 other_user = create(:user)
432 read_message = create(:message, :read, :recipient => user, :sender => second_user)
433 sent_message = create(:message, :unread, :recipient => second_user, :sender => user)
435 # Check that the deleting a message requires us to login
436 post :delete, :params => { :message_id => read_message.id }
437 assert_response :forbidden
439 # Login as a user with no messages
440 session[:user] = other_user.id
442 # Check that deleting a message we didn't send or receive fails
443 post :delete, :params => { :message_id => read_message.id }
444 assert_response :not_found
445 assert_template "no_such_message"
447 # Login as the message recipient_user
448 session[:user] = user.id
450 # Check that the deleting a received message works
451 post :delete, :params => { :message_id => read_message.id }
452 assert_redirected_to inbox_path(:display_name => user.display_name)
453 assert_equal "Message deleted", flash[:notice]
454 m = Message.find(read_message.id)
455 assert_equal true, m.from_user_visible
456 assert_equal false, m.to_user_visible
458 # Check that the deleting a sent message works
459 post :delete, :params => { :message_id => sent_message.id, :referer => outbox_path(:display_name => user.display_name) }
460 assert_redirected_to outbox_path(:display_name => user.display_name)
461 assert_equal "Message deleted", flash[:notice]
462 m = Message.find(sent_message.id)
463 assert_equal false, m.from_user_visible
464 assert_equal true, m.to_user_visible
466 # Asking to delete a message with no ID should fail
467 assert_raise ActionController::UrlGenerationError do
471 # Asking to delete a message with a bogus ID should fail
472 post :delete, :params => { :message_id => 99999 }
473 assert_response :not_found
474 assert_template "no_such_message"
479 def with_message_limit(value)
480 max_messages_per_hour = Object.send("remove_const", "MAX_MESSAGES_PER_HOUR")
481 Object.const_set("MAX_MESSAGES_PER_HOUR", value)
485 Object.send("remove_const", "MAX_MESSAGES_PER_HOUR")
486 Object.const_set("MAX_MESSAGES_PER_HOUR", max_messages_per_hour)