docbrown/spec/models/follow_spec.rb
rhymes 10efa25c0a
Add missing presence validators to models (#10495)
* Add missing presence validator for Tag

* Add missing presence validators to Follow

* Add missing presence validators to ProfileField

* Add missing presence validators to Comment

* Add missing presence validators to Profile

* Add missing presence validators to Organization

* Add missing presence validators to Badge

* Add missing presence validators to Webhook::Endpoint

* Add missing presence validators to NotificationSubscription

* Add missing presence validators to PodcastEpisode

* Add missing presence validators to Sponsorship

* Add missing presence validators to PollOption

* Add missing presence validators to Poll

* Add missing presence validators to Article

* Add missing presence validators to EmailAuthorization

* Add missing presence validators to AuditLog

* Add missing presence validators to DataUpdateScript

* Add missing presence validators to User

* Add missing presence validators to SiteConfig

* Fix specs
2020-10-01 16:15:32 +02:00

83 lines
2.8 KiB
Ruby

require "rails_helper"
RSpec.describe Follow, type: :model do
let(:user) { create(:user) }
let(:user_2) { create(:user) }
describe "validations" do
subject { user.follow(user_2) }
it { is_expected.to validate_inclusion_of(:subscription_status).in_array(%w[all_articles none]) }
it { is_expected.to validate_inclusion_of(:blocked).in_array([true, false]) }
it { is_expected.to validate_presence_of(:followable_id) }
it { is_expected.to validate_presence_of(:followable_type) }
it { is_expected.to validate_presence_of(:follower_id) }
it { is_expected.to validate_presence_of(:follower_type) }
it { is_expected.to validate_presence_of(:subscription_status) }
end
it "follows user" do
user.follow(user_2)
expect(user.following?(user_2)).to eq(true)
end
context "when enqueuing jobs" do
it "enqueues create channel job" do
expect do
described_class.create(follower: user, followable: user_2)
end.to change(Follows::CreateChatChannelWorker.jobs, :size).by(1)
end
it "enqueues send notification worker" do
expect do
described_class.create(follower: user, followable: user_2)
end.to change(Follows::SendEmailNotificationWorker.jobs, :size).by(1)
end
end
context "when creating and inline" do
it "touches the follower user while creating" do
timestamp = 1.day.ago
user.update_columns(updated_at: timestamp, last_followed_at: timestamp)
described_class.create!(follower: user, followable: user_2)
user.reload
expect(user.updated_at).to be > timestamp
expect(user.last_followed_at).to be > timestamp
end
it "doesn't create a channel when a followable is an org" do
expect do
sidekiq_perform_enqueued_jobs do
described_class.create!(follower: user, followable: create(:organization))
end
end.not_to change(ChatChannel, :count)
end
it "doesn't create a chat channel when users don't follow mutually" do
expect do
sidekiq_perform_enqueued_jobs do
described_class.create!(follower: user, followable: user_2)
end
end.not_to change(ChatChannel, :count)
end
it "creates a chat channel when users follow mutually" do
described_class.create!(follower: user_2, followable: user)
expect do
sidekiq_perform_enqueued_jobs do
described_class.create!(follower: user, followable: user_2)
end
end.to change(ChatChannel, :count).by(1)
end
it "sends an email notification" do
user_2.update_column(:email_follower_notifications, true)
expect do
Sidekiq::Testing.inline! do
described_class.create!(follower: user, followable: user_2)
end
end.to change(EmailMessage, :count).by(1)
end
end
end