Allow users to upvote a comment, then downvote it, without raising an error or having to manually remove the upvote first. The upvote is automatically removed and replaced by the downvote. Changes to the /comment_votes API: * `POST /comment_votes` and `DELETE /comment_votes` now return a comment vote instead of a comment. * The `score` param in `POST /comment_votes` is now 1 or -1, not `up` or `down.`
151 lines
4.8 KiB
Ruby
151 lines
4.8 KiB
Ruby
require 'test_helper'
|
|
|
|
class CommentVotesControllerTest < ActionDispatch::IntegrationTest
|
|
context "A comment votes controller" do
|
|
setup do
|
|
CurrentUser.user = @user = create(:user, name: "cirno")
|
|
CurrentUser.ip_addr = "127.0.0.1"
|
|
@comment = create(:comment, creator: @user)
|
|
end
|
|
|
|
teardown do
|
|
CurrentUser.user = nil
|
|
CurrentUser.ip_addr = 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 respond_to_search({}).with { [] }
|
|
end
|
|
|
|
context "as a moderator" do
|
|
setup do
|
|
CurrentUser.user = create(:mod_user)
|
|
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
|
|
end
|
|
|
|
context "create action" do
|
|
setup do
|
|
@user = create(:user)
|
|
@comment = create(:comment)
|
|
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", 0) 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 "automatically undo existing votes" do
|
|
create(:comment_vote, comment: @comment, user: @user, score: -1)
|
|
assert_equal(-1, @comment.reload.score)
|
|
|
|
assert_difference("CommentVote.count", 0) 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 "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_difference("CommentVote.count", -1) do
|
|
delete_auth comment_comment_votes_path(@vote.comment), @user, xhr: true
|
|
assert_response :success
|
|
end
|
|
end
|
|
|
|
should "not allow users to remove comment votes by other users" do
|
|
@vote = create(:comment_vote)
|
|
|
|
assert_difference("CommentVote.count", 0) do
|
|
delete_auth comment_comment_votes_path(@vote.comment), @user, xhr: true
|
|
assert_response 404
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|