]> git.openstreetmap.org Git - rails.git/commitdiff
Remove tests for message paths without ids
authorAnton Khorev <tony29@yandex.ru>
Sun, 5 May 2024 14:14:37 +0000 (17:14 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sun, 5 May 2024 14:14:37 +0000 (17:14 +0300)
These tests don't fail because they reuse ids from previous requests.

test/controllers/messages_controller_test.rb

index dfec6346f19f2c3a42783ad9bc4aba5ae5bc832e..fd4a5ed10e1561dbcf5a7c54fe036441a12e78ed 100644 (file)
@@ -263,10 +263,6 @@ class MessagesControllerTest < ActionDispatch::IntegrationTest
     end
     assert Message.find(unread_message.id).message_read
 
-    # Asking to reply to a message with no ID should fail
-    get message_reply_path
-    assert_response :success
-
     # Asking to reply to a message with a bogus ID should fail
     get message_reply_path(:message_id => 99999)
     assert_response :not_found
@@ -313,10 +309,6 @@ class MessagesControllerTest < ActionDispatch::IntegrationTest
     assert_select "a[href='#{user_path user}']", :text => user.display_name
     assert Message.find(unread_message.id).message_read
 
-    # Asking to read a message with no ID should fail
-    get message_path
-    assert_response :success
-
     # Asking to read a message with a bogus ID should fail
     get message_path(:id => 99999)
     assert_response :not_found
@@ -417,10 +409,6 @@ class MessagesControllerTest < ActionDispatch::IntegrationTest
     assert_response :see_other
     assert_not Message.find(unread_message.id).message_read
 
-    # Asking to mark a message with no ID should fail
-    post message_mark_path
-    assert_redirected_to inbox_messages_path
-
     # Asking to mark a message with a bogus ID should fail
     post message_mark_path(:message_id => 99999)
     assert_response :not_found
@@ -467,10 +455,6 @@ class MessagesControllerTest < ActionDispatch::IntegrationTest
     assert_not m.from_user_visible
     assert m.to_user_visible
 
-    # Asking to destroy a message with no ID should fail
-    delete message_path
-    assert_redirected_to inbox_messages_path
-
     # Asking to destroy a message with a bogus ID should fail
     delete message_path(:id => 99999)
     assert_response :not_found