Add a polymorphic `subject` field that records the subject of the mod action. The subject is the post, user, comment, artist, etc the mod action is for. * The subject for the user ban and unban actions is the user, not the ban itself. * The subject for the user feedback update and deletion actions is the user, not the feedback itself. * The subject for the post undeletion action is the post, not the approval itself. * The subject for the move favorites action is the source post where the favorites were moved from, not the destination post where the favorites were moved to. * The subject for the post permanent delete action is nil, because the post itself is hard deleted. * When a post is permanently deleted, all mod actions related to the post are deleted as well.
248 lines
8.2 KiB
Ruby
248 lines
8.2 KiB
Ruby
require 'test_helper'
|
|
|
|
class CommentVotesControllerTest < ActionDispatch::IntegrationTest
|
|
context "A comment votes controller" do
|
|
setup do
|
|
CurrentUser.user = @user = create(:user, name: "cirno")
|
|
@comment = create(:comment, creator: @user)
|
|
end
|
|
|
|
teardown do
|
|
CurrentUser.user = nil
|
|
end
|
|
|
|
context "index action" do
|
|
setup do
|
|
@voter = create(:gold_user, name: "rumia")
|
|
@vote = as (@voter) { create(:comment_vote, comment: @comment, user: @voter) }
|
|
@negative_vote = create(:comment_vote, comment: @comment, score: -1)
|
|
@unrelated_vote = create(:comment_vote)
|
|
end
|
|
|
|
context "as a user" do
|
|
should "render" do
|
|
get_auth comment_votes_path, @user
|
|
assert_response :success
|
|
end
|
|
|
|
should "render for a tooltip" do
|
|
get comment_votes_path(comment_id: @comment.id, variant: "tooltip")
|
|
assert_response :success
|
|
end
|
|
|
|
should respond_to_search({}).with { [] }
|
|
end
|
|
|
|
context "as a moderator" do
|
|
setup do
|
|
CurrentUser.user = create(:mod_user)
|
|
end
|
|
|
|
should "render for a tooltip" do
|
|
get comment_votes_path(comment_id: @comment.id, variant: "tooltip")
|
|
assert_response :success
|
|
end
|
|
|
|
should respond_to_search({}).with { [@unrelated_vote, @negative_vote, @vote] }
|
|
should respond_to_search(score: -1).with { @negative_vote }
|
|
|
|
context "using includes" do
|
|
should respond_to_search(comment: {creator_name: "cirno"}).with { [@negative_vote, @vote] }
|
|
should respond_to_search(user_name: "rumia").with { @vote }
|
|
should respond_to_search(user: {level: User::Levels::GOLD}).with { @vote }
|
|
end
|
|
end
|
|
|
|
context "compact variant" do
|
|
should "render" do
|
|
get_auth comment_votes_path(variant: "compact"), create(:moderator_user)
|
|
assert_response :success
|
|
end
|
|
end
|
|
end
|
|
|
|
context "show action" do
|
|
setup do
|
|
@comment_vote = create(:comment_vote, comment: @comment, user: @user)
|
|
end
|
|
|
|
should "show the vote to the voter" do
|
|
get_auth comment_vote_path(@comment_vote), @user, as: :json
|
|
assert_response :success
|
|
end
|
|
|
|
should "show the vote to moderators" do
|
|
get_auth comment_vote_path(@comment_vote), create(:moderator_user), as: :json
|
|
assert_response :success
|
|
end
|
|
|
|
should "not show the vote to other users" do
|
|
get_auth comment_vote_path(@comment_vote), create(:user), as: :json
|
|
assert_response 403
|
|
end
|
|
end
|
|
|
|
context "create action" do
|
|
setup do
|
|
@user = create(:user)
|
|
@comment = create(:comment)
|
|
end
|
|
|
|
should "work for a JSON response" do
|
|
post_auth comment_comment_votes_path(comment_id: @comment.id), @user, params: { score: 1, format: "json" }
|
|
|
|
assert_response 201
|
|
assert_equal(1, @comment.reload.score)
|
|
end
|
|
|
|
should "not allow anonymous users to vote" do
|
|
post comment_comment_votes_path(comment_id: @comment.id, score: "1"), xhr: true
|
|
assert_response 403
|
|
end
|
|
|
|
should "allow Members to vote" do
|
|
post_auth comment_comment_votes_path(comment_id: @comment.id, score: "1"), @user, xhr: true
|
|
assert_response :success
|
|
end
|
|
|
|
should "create a upvote" do
|
|
assert_difference("CommentVote.count", 1) do
|
|
post_auth comment_comment_votes_path(comment_id: @comment.id, score: "1"), @user, xhr: true
|
|
end
|
|
|
|
assert_response :success
|
|
assert_equal(1, @comment.reload.score)
|
|
end
|
|
|
|
should "create a downvote" do
|
|
assert_difference("CommentVote.count", 1) do
|
|
post_auth comment_comment_votes_path(comment_id: @comment.id, score: "-1"), @user, xhr: true
|
|
end
|
|
|
|
assert_response :success
|
|
assert_equal(-1, @comment.reload.score)
|
|
end
|
|
|
|
should "ignore duplicate votes" do
|
|
vote = create(:comment_vote, comment: @comment, user: @user, score: 1)
|
|
assert_equal(1, vote.comment.reload.score)
|
|
|
|
assert_difference("CommentVote.count", 1) do
|
|
post_auth comment_comment_votes_path(comment_id: @comment.id, score: "1"), @user, xhr: true
|
|
end
|
|
|
|
assert_response :success
|
|
assert_equal(1, @comment.reload.score)
|
|
assert_equal(1, @comment.votes.active.count)
|
|
assert_equal(1, @comment.votes.deleted.count)
|
|
end
|
|
|
|
should "automatically undo existing votes" do
|
|
create(:comment_vote, comment: @comment, user: @user, score: -1)
|
|
assert_equal(-1, @comment.reload.score)
|
|
|
|
assert_difference("CommentVote.count", 1) do
|
|
post_auth comment_comment_votes_path(comment_id: @comment.id, score: "1"), @user, xhr: true
|
|
end
|
|
|
|
assert_response :success
|
|
assert_equal(1, @comment.reload.score)
|
|
assert_equal(1, @comment.votes.active.count)
|
|
assert_equal(1, @comment.votes.deleted.count)
|
|
end
|
|
|
|
should "not allow voting on deleted comments" do
|
|
@comment.update!(is_deleted: true)
|
|
|
|
assert_difference("CommentVote.count", 0) do
|
|
post_auth comment_comment_votes_path(comment_id: @comment.id, score: "1"), @user, xhr: true
|
|
end
|
|
|
|
assert_response 403
|
|
assert_equal(0, @comment.reload.score)
|
|
end
|
|
|
|
should "not update the comment's updated_at or updater_id" do
|
|
assert_no_difference(["@comment.updater_id", "@comment.reload.updated_at"]) do
|
|
assert_difference("CommentVote.count", 1) do
|
|
post_auth comment_comment_votes_path(comment_id: @comment.id, score: "1"), @user, xhr: true
|
|
|
|
assert_response :success
|
|
assert_equal(1, @comment.reload.score)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context "#destroy" do
|
|
should "allow users to remove their own comment votes" do
|
|
@vote = create(:comment_vote, user: @user)
|
|
assert_equal(1, @vote.comment.score)
|
|
|
|
assert_difference("CommentVote.count", 0) do
|
|
delete_auth comment_vote_path(@vote), @user, xhr: true
|
|
|
|
assert_response :success
|
|
assert_equal(true, @vote.reload.is_deleted?)
|
|
assert_equal(0, @vote.comment.score)
|
|
|
|
assert_equal(false, ModAction.comment_vote_delete.exists?)
|
|
end
|
|
end
|
|
|
|
should "not allow normal users to remove comment votes by other users" do
|
|
@vote = create(:comment_vote)
|
|
assert_equal(1, @vote.comment.score)
|
|
|
|
assert_difference("CommentVote.count", 0) do
|
|
delete_auth comment_vote_path(@vote), @user, xhr: true, params: { variant: "listing" }
|
|
|
|
assert_response 403
|
|
assert_equal(false, @vote.reload.is_deleted?)
|
|
assert_equal(1, @vote.comment.score)
|
|
end
|
|
end
|
|
|
|
should "not allow deleting already deleted votes" do
|
|
@vote = create(:comment_vote, is_deleted: true)
|
|
delete_auth comment_vote_path(@vote), @user, xhr: true
|
|
assert_response 403
|
|
end
|
|
|
|
should "allow admins to remove comment votes by other users" do
|
|
@vote = create(:comment_vote)
|
|
assert_equal(1, @vote.comment.score)
|
|
|
|
assert_difference("CommentVote.count", 0) do
|
|
admin = create(:admin_user)
|
|
delete_auth comment_vote_path(@vote), admin, xhr: true, params: { variant: "listing" }
|
|
|
|
assert_response :success
|
|
assert_equal(true, @vote.reload.is_deleted?)
|
|
assert_equal(0, @vote.comment.score)
|
|
|
|
assert_equal("comment_vote_delete", ModAction.last.category)
|
|
assert_match(/deleted comment vote/, ModAction.last.description)
|
|
assert_equal(@vote, ModAction.last.subject)
|
|
assert_equal(admin, ModAction.last.creator)
|
|
end
|
|
end
|
|
|
|
context "deleting a vote on a comment that already has deleted votes" do
|
|
setup do
|
|
create(:comment_vote, comment: @comment, user: @user, score: 1, is_deleted: true)
|
|
create(:comment_vote, comment: @comment, user: @user, score: -1, is_deleted: true)
|
|
end
|
|
|
|
should "delete the current active vote" do
|
|
@vote = create(:comment_vote, comment: @comment, user: @user)
|
|
delete_auth comment_vote_path(@vote), @user, xhr: true
|
|
|
|
assert_response :success
|
|
assert_equal(true, @vote.reload.is_deleted?)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|