375 lines
13 KiB
Ruby
375 lines
13 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Reaction do
|
|
let(:user) { create(:user, registered_at: 20.days.ago) }
|
|
let(:article) { create(:article, user: user) }
|
|
let(:reaction) { build(:reaction, reactable: article, user: user) }
|
|
|
|
describe "builtin validations" do
|
|
subject { build(:reaction, reactable: article, user: user) }
|
|
|
|
it { is_expected.to belong_to(:user) }
|
|
it { is_expected.to validate_inclusion_of(:category).in_array(ReactionCategory.all_slugs.map(&:to_s)) }
|
|
it { is_expected.to validate_uniqueness_of(:user_id).scoped_to(%i[reactable_id reactable_type category]) }
|
|
end
|
|
|
|
describe ".user_has_been_given_too_many_spammy_article_reactions?" do
|
|
it "performs a valid query for the user" do
|
|
expect { described_class.user_has_been_given_too_many_spammy_article_reactions?(user: user) }.not_to raise_error
|
|
end
|
|
|
|
it "performs a valid query for the user with the include_user_profile logic" do
|
|
expect do
|
|
described_class.user_has_been_given_too_many_spammy_article_reactions?(user: user,
|
|
include_user_profile: true)
|
|
end.not_to raise_error
|
|
end
|
|
end
|
|
|
|
describe "counter_culture" do
|
|
context "when a reaction is created" do
|
|
it "increments reaction count on user" do
|
|
expect do
|
|
create(:reaction, user: user)
|
|
end.to change { user.reload.reactions_count }.by(1)
|
|
end
|
|
end
|
|
|
|
context "when a reaction is destroyed" do
|
|
it "decrements reaction count on user" do
|
|
reaction = create(:reaction, user: user)
|
|
expect do
|
|
reaction.destroy
|
|
end.to change { user.reload.reactions_count }.by(-1)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "validations" do
|
|
it "allows like reaction for users without trusted role" do
|
|
reaction.category = "like"
|
|
expect(reaction).to be_valid
|
|
end
|
|
|
|
it "does not allow reactions outside of allowed list" do
|
|
reaction.category = "woozlewazzle"
|
|
expect(reaction).not_to be_valid
|
|
end
|
|
|
|
it "does not allow vomit reaction for users without trusted role" do
|
|
allow(Settings::General).to receive(:mascot_user_id).and_return(user.id + 1)
|
|
reaction.category = "vomit"
|
|
expect(reaction).not_to be_valid
|
|
end
|
|
|
|
it "does not allow thumbsdown reaction for users without trusted role" do
|
|
allow(Settings::General).to receive(:mascot_user_id).and_return(user.id + 1)
|
|
reaction.category = "thumbsdown"
|
|
expect(reaction).not_to be_valid
|
|
end
|
|
|
|
it "does not allow reaction on unpublished article" do
|
|
reaction = build(:reaction, user: user, reactable: article)
|
|
expect(reaction).to be_valid
|
|
article.update_column(:published, false)
|
|
reaction = build(:reaction, user: user, reactable: article)
|
|
expect(reaction).not_to be_valid
|
|
end
|
|
|
|
context "when user is trusted" do
|
|
before { reaction.user.add_role(:trusted) }
|
|
|
|
it "allows vomit reactions for users with trusted role" do
|
|
reaction.category = "vomit"
|
|
expect(reaction).to be_valid
|
|
end
|
|
|
|
it "allows thumbsdown reactions for users with trusted role" do
|
|
reaction.category = "thumbsdown"
|
|
expect(reaction).to be_valid
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "#skip_notification_for?" do
|
|
let(:receiver) { build(:user) }
|
|
let(:reaction) { build(:reaction, reactable: build(:article), user: nil) }
|
|
|
|
it "is normally false" do
|
|
expect(reaction.skip_notification_for?(receiver)).to be(false)
|
|
end
|
|
|
|
it "is true when points are negative" do
|
|
reaction.points = -2
|
|
expect(reaction.skip_notification_for?(receiver)).to be(true)
|
|
end
|
|
|
|
it "is true when the person who reacted is the same as the reactable owner" do
|
|
user_id = User.maximum(:id).to_i + 1
|
|
reaction.user_id = user_id
|
|
reaction.reactable.user_id = user_id
|
|
expect(reaction.skip_notification_for?(user)).to be(true)
|
|
end
|
|
|
|
it "is true for inavlidated reactions" do
|
|
reaction.status = "invalid"
|
|
expect(reaction.skip_notification_for?(user)).to be(true)
|
|
end
|
|
|
|
it "is true when the reaction is a bookmark" do
|
|
reaction.category = "readinglist"
|
|
expect(reaction.skip_notification_for?(user)).to be(true)
|
|
end
|
|
|
|
context "when reactable is a user" do
|
|
let(:user) { create(:user) }
|
|
let(:reaction) { build(:reaction, reactable: user, user: nil) }
|
|
|
|
it "returns true if the reactable is the user that reacted" do
|
|
reaction.user_id = user.id
|
|
expect(reaction.skip_notification_for?(receiver)).to be(true)
|
|
end
|
|
|
|
it "returns false if the reactable is not the user that reacted" do
|
|
reaction.user_id = create(:user).id
|
|
expect(reaction.skip_notification_for?(receiver)).to be(false)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe ".count_for_article" do
|
|
it "counts the reactions an article has grouped by category" do
|
|
create(:reaction, reactable: article, user: user, category: "like")
|
|
create(:reaction, reactable: article, user: user, category: "unicorn")
|
|
|
|
expected_result = [
|
|
{ category: "like", count: 1 },
|
|
{ category: "unicorn", count: 1 },
|
|
{ category: "exploding_head", count: 0 },
|
|
{ category: "fire", count: 0 },
|
|
{ category: "raised_hands", count: 0 },
|
|
{ category: "readinglist", count: 0 },
|
|
]
|
|
expect(described_class.count_for_article(article.id)).to match_array(expected_result)
|
|
end
|
|
end
|
|
|
|
context "when callbacks are called after create" do
|
|
describe "field tests" do
|
|
let!(:user) { create(:user, :trusted) }
|
|
|
|
before do
|
|
# making sure there are no other enqueued jobs from other tests
|
|
sidekiq_perform_enqueued_jobs(only: Users::RecordFieldTestEventWorker)
|
|
end
|
|
|
|
it "enqueues a Users::RecordFieldTestEventWorker for giving a like to an article" do
|
|
article = create(:article, user: user)
|
|
sidekiq_assert_enqueued_jobs(1, only: Users::RecordFieldTestEventWorker) do
|
|
create(:reaction, reactable: article, user: user, category: "like")
|
|
end
|
|
end
|
|
|
|
it "does not enqueue a Users::RecordFieldTestEventWorker for giving a privileged reaction to an article" do
|
|
article = create(:article, user: user)
|
|
sidekiq_assert_enqueued_jobs(0, only: Users::RecordFieldTestEventWorker) do
|
|
create(:reaction, reactable: article, user: user, category: "thumbsdown")
|
|
end
|
|
end
|
|
|
|
it "does not enqueue a Users::RecordFieldTestEventWorker for giving a like to a comment" do
|
|
comment = create(:comment, user: user)
|
|
sidekiq_assert_enqueued_jobs(0, only: Users::RecordFieldTestEventWorker) do
|
|
create(:reaction, reactable: comment, user: user, category: "like")
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "slack messages" do
|
|
let!(:user) { create(:user, :trusted) }
|
|
let!(:article) { create(:article, user: user) }
|
|
|
|
before do
|
|
# making sure there are no other enqueued jobs from other tests
|
|
sidekiq_perform_enqueued_jobs(only: Slack::Messengers::Worker)
|
|
end
|
|
|
|
it "queues a slack message to be sent for a vomit reaction" do
|
|
sidekiq_assert_enqueued_jobs(1, only: Slack::Messengers::Worker) do
|
|
create(:reaction, reactable: article, user: user, category: "vomit")
|
|
end
|
|
end
|
|
|
|
it "does not queue a message for a like reaction" do
|
|
sidekiq_assert_no_enqueued_jobs(only: Slack::Messengers::Worker) do
|
|
create(:reaction, reactable: article, user: user, category: "like")
|
|
end
|
|
end
|
|
|
|
it "does not queue a message for a thumbsdown reaction" do
|
|
sidekiq_assert_no_enqueued_jobs(only: Slack::Messengers::Worker) do
|
|
create(:reaction, reactable: article, user: user, category: "thumbsdown")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when callbacks are called after save" do
|
|
let!(:reaction) { build(:reaction, category: "like", reactable: article, user: user) }
|
|
|
|
describe "enqueues the correct worker" do
|
|
it "BustReactableCacheWorker" do
|
|
sidekiq_assert_enqueued_with(job: Reactions::BustReactableCacheWorker) do
|
|
reaction.save
|
|
end
|
|
end
|
|
|
|
it "BustHomepageCacheWorker" do
|
|
sidekiq_assert_enqueued_with(job: Reactions::BustHomepageCacheWorker) do
|
|
reaction.save
|
|
end
|
|
end
|
|
end
|
|
|
|
it "updates updated_at if the reactable is a comment" do
|
|
sidekiq_perform_enqueued_jobs do
|
|
updated_at = 1.day.ago
|
|
comment = create(:comment, commentable: article, updated_at: updated_at)
|
|
reaction.update(reactable: comment)
|
|
expect(comment.reload.updated_at).to be > updated_at
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when callbacks are called before destroy" do
|
|
let!(:reaction) { create(:reaction, reactable: article, user: user) }
|
|
|
|
it "enqueues a ScoreCalcWorker on article reaction destroy" do
|
|
sidekiq_assert_enqueued_with(job: Articles::ScoreCalcWorker, args: [article.id]) do
|
|
reaction.destroy
|
|
end
|
|
end
|
|
|
|
it "updates reactable with delay" do
|
|
allow(Reactions::UpdateRelevantScoresWorker).to receive(:perform_async)
|
|
reaction.destroy
|
|
expect(Reactions::UpdateRelevantScoresWorker).to have_received(:perform_async)
|
|
end
|
|
|
|
it "busts reactable cache without delay" do
|
|
allow(reaction).to receive(:bust_reactable_cache_without_delay)
|
|
reaction.destroy
|
|
expect(reaction).to have_received(:bust_reactable_cache_without_delay)
|
|
end
|
|
|
|
it "busts article if it is the last public reaction" do
|
|
allow(EdgeCache::BustArticle).to receive(:call)
|
|
reaction.destroy
|
|
expect(EdgeCache::BustArticle).to have_received(:call)
|
|
end
|
|
|
|
it "does not bust article if it is not the last public reaction" do
|
|
create(:reaction, reactable: article, user: create(:user))
|
|
allow(EdgeCache::BustArticle).to receive(:call)
|
|
reaction.destroy
|
|
expect(EdgeCache::BustArticle).not_to have_received(:call)
|
|
end
|
|
end
|
|
|
|
describe ".related_negative_reactions_for_user" do
|
|
let(:moderator) { create(:user, :trusted) }
|
|
|
|
it "returns vomit reactions on user's articles" do
|
|
article = create(:article, user: user)
|
|
reaction = create(:vomit_reaction, user: moderator, reactable: article)
|
|
|
|
expect(described_class.related_negative_reactions_for_user(user).first.id).to eq(reaction.id)
|
|
end
|
|
|
|
it "returns vomit reactions on user's comments" do
|
|
comment = create(:comment, user: user)
|
|
reaction = create(:vomit_reaction, user: moderator, reactable: comment)
|
|
|
|
expect(described_class.related_negative_reactions_for_user(user).first.id).to eq(reaction.id)
|
|
end
|
|
|
|
it "returns the user's vomit reactions" do
|
|
reaction = create(:vomit_reaction, user: moderator, reactable: user)
|
|
|
|
expect(described_class.related_negative_reactions_for_user(moderator).first.id).to eq(reaction.id)
|
|
end
|
|
end
|
|
|
|
describe ".contradictory_mod_reactions" do
|
|
let(:moderator) { create(:user, :trusted) }
|
|
|
|
it "returns the contradictary reactions related to the category passed in" do
|
|
article = create(:article, user: moderator)
|
|
reaction = create(:vomit_reaction, user: moderator, reactable: article)
|
|
|
|
expect(described_class.contradictory_mod_reactions(
|
|
category: "thumbsup",
|
|
reactable_id: article.id,
|
|
reactable_type: "Article",
|
|
user: moderator,
|
|
).first).to eq(reaction)
|
|
end
|
|
end
|
|
|
|
describe ".readinglist_for_user finds reactions from given user" do
|
|
before do
|
|
user.reactions.create(reactable: article, category: "readinglist")
|
|
comment = create(:comment)
|
|
user.reactions.create(reactable: comment, category: "readinglist")
|
|
article2 = create(:article)
|
|
user.reactions.create(reactable: article2, category: "like")
|
|
|
|
user2 = create(:user)
|
|
user2.reactions.create(reactable: article, category: "readinglist")
|
|
end
|
|
|
|
it "returns un-archived reactions on articles" do
|
|
expect(described_class.readinglist_for_user(user).pluck(:reactable_id)).to contain_exactly(article.id)
|
|
end
|
|
end
|
|
|
|
describe ".live_reactable" do
|
|
let(:moderator) { create(:user, :trusted) }
|
|
|
|
it "returns reactions on articles where article is published" do
|
|
article = create(:article, published: true)
|
|
reaction = create(:vomit_reaction, user: moderator, reactable: article)
|
|
|
|
expect(described_class.live_reactable.to_a).to eq([reaction])
|
|
end
|
|
|
|
it "does not return reaction on articles where not published" do
|
|
article = create(:article)
|
|
create(:vomit_reaction, user: moderator, reactable: article)
|
|
article.update_column(:published, false)
|
|
|
|
expect(described_class.live_reactable.to_a).to eq([])
|
|
end
|
|
|
|
it "returns reactions on comments" do
|
|
comment = create(:comment)
|
|
reaction = create(:vomit_reaction, user: moderator, reactable: comment)
|
|
|
|
expect(described_class.live_reactable).to eq([reaction])
|
|
end
|
|
|
|
it "returns reactions to users" do
|
|
user = create(:user)
|
|
reaction = create(:vomit_reaction, user: moderator, reactable: user)
|
|
|
|
expect(described_class.live_reactable.to_a).to eq([reaction])
|
|
end
|
|
|
|
it "does not return reactions to users who are deemed spam already" do
|
|
user = create(:user, username: "spam_400")
|
|
create(:vomit_reaction, user: moderator, reactable: user)
|
|
|
|
expect(described_class.live_reactable.to_a).to eq([])
|
|
end
|
|
end
|
|
end
|