311 lines
14 KiB
Ruby
311 lines
14 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Broadcasts::WelcomeNotification::Generator, type: :service do
|
|
let(:mascot_account) { create(:user) }
|
|
let!(:welcome_thread) { create(:article, user: mascot_account, published: true, tags: "welcome") }
|
|
|
|
# welcome_broadcast is explicitly not readonly so that we can test against an inactive broadcast
|
|
let!(:welcome_broadcast) { create(:welcome_broadcast) }
|
|
let!(:twitter_connect_broadcast) { create(:twitter_connect_broadcast) }
|
|
let!(:github_connect_broadcast) { create(:github_connect_broadcast) }
|
|
let!(:facebook_connect_broadcast) { create(:facebook_connect_broadcast) }
|
|
let!(:apple_connect_broadcast) { create(:apple_connect_broadcast) }
|
|
let!(:forem_connect_broadcast) { create(:forem_connect_broadcast) }
|
|
let!(:google_oauth2_connect_broadcast) { create(:google_oauth2_connect_broadcast) }
|
|
let!(:customize_feed_broadcast) { create(:customize_feed_broadcast) }
|
|
let!(:discuss_and_ask_broadcast) { create(:discuss_and_ask_broadcast) }
|
|
let!(:customize_ux_broadcast) { create(:customize_ux_broadcast) }
|
|
let!(:download_app_broadcast) { create(:download_app_broadcast) }
|
|
|
|
before do
|
|
omniauth_mock_providers_payload
|
|
allow(Notification).to receive(:send_welcome_notification).and_call_original
|
|
allow(User).to receive(:mascot_account).and_return(mascot_account)
|
|
allow(Settings::Community).to receive(:staff_user_id).and_return(mascot_account.id)
|
|
allow(Settings::Authentication).to receive(:providers).and_return(Authentication::Providers.available)
|
|
end
|
|
|
|
it "requires a valid user id" do
|
|
expect { described_class.call(9999) }.to raise_error(ActiveRecord::RecordNotFound)
|
|
end
|
|
|
|
describe ".call" do
|
|
let(:user) { create(:user, :with_identity, identities: ["github"], created_at: 1.week.ago) }
|
|
|
|
it "does not send a notification to an unsubscribed user" do
|
|
user.notification_setting.update!(welcome_notifications: false)
|
|
expect do
|
|
sidekiq_perform_enqueued_jobs { described_class.call(user.id) }
|
|
end.to not_change(user.notifications, :count)
|
|
end
|
|
|
|
it "does not send a notification if no active broadcast exists" do
|
|
welcome_broadcast.update!(active: false)
|
|
expect do
|
|
Timecop.freeze(1.week.ago + 4.hours) do
|
|
sidekiq_perform_enqueued_jobs { described_class.call(user.id) }
|
|
end
|
|
end.not_to change(user.notifications, :count)
|
|
end
|
|
|
|
# rubocop:disable RSpec/ExampleLength
|
|
# rubocop:disable RSpec/MultipleExpectations
|
|
it "sends only 1 notification at a time, in the correct order" do
|
|
user.update!(created_at: 1.day.ago)
|
|
|
|
expect do
|
|
sidekiq_perform_enqueued_jobs do
|
|
described_class.call(user.id)
|
|
end
|
|
end.to change(user.notifications, :count).by(1)
|
|
expect(user.notifications.last.notifiable).to eq(welcome_broadcast)
|
|
|
|
Timecop.travel(1.day.from_now)
|
|
expect do
|
|
sidekiq_perform_enqueued_jobs do
|
|
described_class.call(user.id)
|
|
end
|
|
end.to change(user.notifications, :count).by(1)
|
|
not_github = [
|
|
facebook_connect_broadcast,
|
|
twitter_connect_broadcast,
|
|
apple_connect_broadcast,
|
|
forem_connect_broadcast,
|
|
google_oauth2_connect_broadcast,
|
|
].include?(user.notifications.last.notifiable)
|
|
expect(not_github).to be(true)
|
|
|
|
Timecop.travel(1.day.from_now)
|
|
expect do
|
|
sidekiq_perform_enqueued_jobs do
|
|
described_class.call(user.id)
|
|
end
|
|
end.to change(user.notifications, :count).by(1)
|
|
expect(user.notifications.last.notifiable).to eq(customize_feed_broadcast)
|
|
|
|
Timecop.travel(2.days.from_now)
|
|
expect do
|
|
sidekiq_perform_enqueued_jobs do
|
|
described_class.call(user.id)
|
|
end
|
|
end.to change(user.notifications, :count).by(1)
|
|
expect(user.notifications.last.notifiable).to eq(customize_ux_broadcast)
|
|
|
|
Timecop.travel(1.day.from_now)
|
|
expect do
|
|
sidekiq_perform_enqueued_jobs do
|
|
described_class.call(user.id)
|
|
end
|
|
end.to change(user.notifications, :count).by(1)
|
|
expect(user.notifications.last.notifiable).to eq(discuss_and_ask_broadcast)
|
|
|
|
Timecop.travel(1.day.from_now)
|
|
expect do
|
|
sidekiq_perform_enqueued_jobs do
|
|
described_class.call(user.id)
|
|
end
|
|
end.to change(user.notifications, :count).by(1)
|
|
expect(user.notifications.last.notifiable).to eq(download_app_broadcast)
|
|
|
|
Timecop.return
|
|
end
|
|
# rubocop:enable RSpec/MultipleExpectations
|
|
# rubocop:enable RSpec/ExampleLength
|
|
end
|
|
|
|
describe "#send_welcome_notification" do
|
|
let(:user) { create(:user, created_at: 4.hours.ago) }
|
|
|
|
it "does not send a notification to a newly-created user" do
|
|
user.update!(created_at: Time.zone.now)
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_welcome_notification) }
|
|
expect(user.notifications.count).to eq(0)
|
|
end
|
|
|
|
it "generates the correct broadcast type and sends the notification to the user" do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_welcome_notification) }
|
|
expect(user.notifications.first.notifiable).to eq(welcome_broadcast)
|
|
end
|
|
|
|
it "does not send to a user who has commented in a welcome thread" do
|
|
create(:comment, commentable: welcome_thread, commentable_type: "Article", user: user)
|
|
expect do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_welcome_notification) }
|
|
end.not_to change(user.notifications, :count)
|
|
end
|
|
|
|
it "does not send duplicate notifications" do
|
|
2.times { sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_welcome_notification) } }
|
|
expect(user.notifications.count).to eq(1)
|
|
end
|
|
end
|
|
|
|
describe "#send_authentication_notification" do
|
|
it "does not send notification if user is created less than a day ago" do
|
|
user = create(:user, :with_identity, identities: ["github"])
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_authentication_notification) }
|
|
expect(Notification).not_to have_received(:send_welcome_notification)
|
|
end
|
|
|
|
it "does not send notification if user is authenticated with both services" do
|
|
user = create(:user, :with_identity, identities: %w[twitter github], created_at: 1.day.ago)
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_authentication_notification) }
|
|
expect(Notification).not_to have_received(:send_welcome_notification).with(user.id, github_connect_broadcast.id)
|
|
end
|
|
|
|
it "does not send notification if user is authenticated with all services" do
|
|
user = create(:user, :with_identity, created_at: 1.day.ago)
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_authentication_notification) }
|
|
expect(Notification).not_to have_received(:send_welcome_notification).with(user.id, github_connect_broadcast.id)
|
|
end
|
|
|
|
Authentication::Providers.available.each do |provider_name|
|
|
it "does not send duplicate notifications for #{provider_name}" do
|
|
user = create(:user, :with_identity, identities: [provider_name], created_at: 1.day.ago)
|
|
2.times do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_authentication_notification) }
|
|
end
|
|
expect(user.notifications.count).to eq(1)
|
|
end
|
|
|
|
it "generates and sends the appropriate broadcast for a #{provider_name} identity" do
|
|
user = create(:user, :with_identity, identities: [provider_name], created_at: 1.day.ago)
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_authentication_notification) }
|
|
expect(user.notifications.first.notifiable).not_to eq(public_send("#{provider_name}_connect_broadcast"))
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "#send_feed_customization_notification" do
|
|
let!(:user) { create(:user, :with_identity, created_at: 3.days.ago) }
|
|
|
|
it "does not send a notification to a newly-created user" do
|
|
user.update!(created_at: Time.current)
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_feed_customization_notification) }
|
|
expect(Notification).not_to have_received(:send_welcome_notification)
|
|
end
|
|
|
|
it "does not send a notification to a user that is following 2 tags" do
|
|
2.times { user.follow(create(:tag)) }
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_feed_customization_notification) }
|
|
expect(Notification).not_to have_received(:send_welcome_notification)
|
|
end
|
|
|
|
it "sends a notification to a user with 0 tag follows" do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_feed_customization_notification) }
|
|
expect(user.notifications.count).to eq(1)
|
|
expect(user.notifications.first.notifiable).to eq(customize_feed_broadcast)
|
|
end
|
|
|
|
it "does not send duplicate notifications" do
|
|
2.times do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_feed_customization_notification) }
|
|
end
|
|
expect(user.notifications.count).to eq(1)
|
|
end
|
|
end
|
|
|
|
describe "#send_ux_customization_notification" do
|
|
let!(:user) { create(:user, :with_identity, created_at: 5.days.ago) }
|
|
|
|
it "does not send a notification to a newly-created user" do
|
|
user.update!(created_at: Time.zone.now)
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_ux_customization_notification) }
|
|
expect(Notification).not_to have_received(:send_welcome_notification)
|
|
end
|
|
|
|
it "generates the correct broadcast type and sends the notification to the user" do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_ux_customization_notification) }
|
|
expect(user.notifications.count).to eq(1)
|
|
expect(user.notifications.first.notifiable).to eq(customize_ux_broadcast)
|
|
end
|
|
|
|
it "does not send duplicate notifications" do
|
|
2.times do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_ux_customization_notification) }
|
|
end
|
|
expect(user.notifications.count).to eq(1)
|
|
end
|
|
end
|
|
|
|
describe "#send_discuss_and_ask_notification" do
|
|
let!(:user) { create(:user, :with_identity, created_at: 6.days.ago) }
|
|
|
|
let!(:ask_question_broadcast) { create(:ask_question_broadcast) }
|
|
let!(:start_discussion_broadcast) { create(:start_discussion_broadcast) }
|
|
|
|
context "with a user who has asked a question" do
|
|
it "generates the correct broadcast type and sends the notification to the user" do
|
|
create(:article, tags: "explainlikeimfive", user: user)
|
|
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_discuss_and_ask_notification) }
|
|
expect(user.notifications.count).to eq(1)
|
|
expect(user.notifications.first.notifiable).to eq(start_discussion_broadcast)
|
|
end
|
|
end
|
|
|
|
context "with a user who has started a discussion" do
|
|
it "generates the correct broadcast type and sends the notification to the user" do
|
|
create(:article, tags: "discuss", user: user)
|
|
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_discuss_and_ask_notification) }
|
|
expect(user.notifications.count).to eq(1)
|
|
expect(user.notifications.first.notifiable).to eq(ask_question_broadcast)
|
|
end
|
|
end
|
|
|
|
context "with a user who has neither asked a question and started a discussion" do
|
|
it "generates the correct broadcast type and sends the notification to the user" do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_discuss_and_ask_notification) }
|
|
expect(user.notifications.count).to eq(1)
|
|
expect(user.notifications.first.notifiable).to eq(discuss_and_ask_broadcast)
|
|
end
|
|
end
|
|
|
|
context "with a user who has asked a question and started a discussion" do
|
|
it "does not send a notification" do
|
|
create(:article, tags: "discuss", user: user)
|
|
create(:article, tags: "explainlikeimfive", user: user)
|
|
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_discuss_and_ask_notification) }
|
|
expect(Notification).not_to have_received(:send_welcome_notification)
|
|
end
|
|
end
|
|
|
|
it "does not send a notification to a newly-created user" do
|
|
user.update!(created_at: Time.zone.now)
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_discuss_and_ask_notification) }
|
|
expect(Notification).not_to have_received(:send_welcome_notification)
|
|
end
|
|
|
|
it "does not send duplicate notifications" do
|
|
2.times do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_discuss_and_ask_notification) }
|
|
end
|
|
expect(user.notifications.count).to eq(1)
|
|
end
|
|
|
|
describe "#send_download_app_notification" do
|
|
let!(:user) { create(:user, :with_identity, identities: %w[twitter github], created_at: 7.days.ago) }
|
|
|
|
it "does not send a notification to a newly-created user" do
|
|
user.update!(created_at: Time.zone.now)
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_download_app_notification) }
|
|
expect(Notification).not_to have_received(:send_welcome_notification)
|
|
end
|
|
|
|
it "generates the correct broadcast type and sends the notification to the user" do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_download_app_notification) }
|
|
expect(user.notifications.count).to eq(1)
|
|
expect(user.notifications.first.notifiable).to eq(download_app_broadcast)
|
|
end
|
|
|
|
it "does not send duplicate notifications" do
|
|
2.times do
|
|
sidekiq_perform_enqueued_jobs { described_class.new(user.id).__send__(:send_download_app_notification) }
|
|
end
|
|
expect(user.notifications.count).to eq(1)
|
|
end
|
|
end
|
|
end
|
|
end
|