X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/35be1120925e43b6c2aaf470a13aebae25cddb51..3123822bba5865e81e8c10be16452a0a8b5362f9:/test/controllers/browse_controller_test.rb diff --git a/test/controllers/browse_controller_test.rb b/test/controllers/browse_controller_test.rb index a1c94b457..661d06401 100644 --- a/test/controllers/browse_controller_test.rb +++ b/test/controllers/browse_controller_test.rb @@ -85,7 +85,44 @@ class BrowseControllerTest < ActionController::TestCase end def test_read_note - browse_check "note", notes(:open_note).id, "browse/note" + open_note = create(:note) + create(:note_comment, :note => open_note) + + browse_check "note", open_note.id, "browse/note" + end + + def test_read_hidden_note + hidden_note_with_comment = create(:note, :status => "hidden") + create(:note_comment, :note => hidden_note_with_comment) + + get :note, :id => hidden_note_with_comment.id + assert_response :not_found + assert_template "browse/not_found" + assert_template :layout => "map" + + xhr :get, :note, :id => hidden_note_with_comment.id + assert_response :not_found + assert_template "browse/not_found" + assert_template :layout => "xhr" + + session[:user] = users(:moderator_user).id + + browse_check "note", hidden_note_with_comment.id, "browse/note" + end + + def test_read_note_hidden_comments + note_with_hidden_comment = create(:note) + create(:note_comment, :note => note_with_hidden_comment) + create(:note_comment, :note => note_with_hidden_comment) + create(:note_comment, :note => note_with_hidden_comment, :visible => false) + + browse_check "note", note_with_hidden_comment.id, "browse/note" + assert_select "div.note-comments ul li", :count => 1 + + session[:user] = users(:moderator_user).id + + browse_check "note", note_with_hidden_comment.id, "browse/note" + assert_select "div.note-comments ul li", :count => 2 end ##