148 lines
5.3 KiB
Ruby
148 lines
5.3 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Mailchimp::Bot, type: :service do
|
|
let(:user) { create(:user, :with_newsletters, :ignore_mailchimp_subscribe_callback) }
|
|
let(:article) { create(:article, user_id: user.id) }
|
|
let(:my_gibbon_client) { class_double Gibbon::Request }
|
|
let(:tag) do
|
|
create(:tag,
|
|
name: "tagname",
|
|
bg_color_hex: Faker::Color.hex_color,
|
|
text_color_hex: Faker::Color.hex_color,
|
|
supported: true)
|
|
end
|
|
|
|
before do
|
|
allow(Gibbon::Request).to receive(:new) { my_gibbon_client }
|
|
allow(my_gibbon_client).to receive(:lists) { my_gibbon_client }
|
|
allow(my_gibbon_client).to receive(:tag_mods) { my_gibbon_client }
|
|
allow(my_gibbon_client).to receive(:community_mods) { my_gibbon_client }
|
|
allow(my_gibbon_client).to receive(:members) { my_gibbon_client }
|
|
allow(my_gibbon_client).to receive(:upsert).and_return(true)
|
|
end
|
|
|
|
def matcher
|
|
{
|
|
body: {
|
|
email_address: user.email,
|
|
status: "subscribed",
|
|
merge_fields: {
|
|
NAME: user.name.to_s,
|
|
USERNAME: user.username.to_s,
|
|
TWITTER: user.twitter_username.to_s,
|
|
GITHUB: user.github_username.to_s,
|
|
IMAGE_URL: user.profile_image_url.to_s,
|
|
ARTICLES: user.articles.size,
|
|
COMMENTS: user.comments.size,
|
|
ONBOARD_PK: user.onboarding_package_requested.to_s,
|
|
EXPERIENCE: user.setting.experience_level || 666
|
|
}
|
|
}
|
|
}
|
|
end
|
|
|
|
describe "#upsert" do
|
|
it "calls upsert" do
|
|
described_class.new(user).upsert
|
|
expect(my_gibbon_client).to have_received(:upsert)
|
|
end
|
|
end
|
|
|
|
describe "#upsert_to_newsletter" do
|
|
it "sends proper information" do
|
|
user.notification_setting.update(email_newsletter: true)
|
|
described_class.new(user).upsert_to_newsletter
|
|
expect(my_gibbon_client).to have_received(:upsert).with(matcher)
|
|
end
|
|
|
|
it "unsubscribes properly" do
|
|
user.notification_setting.update(email_newsletter: false)
|
|
described_class.new(user).upsert_to_newsletter
|
|
expect(my_gibbon_client).to have_received(:upsert)
|
|
.with(hash_including(body: hash_including(status: "unsubscribed")))
|
|
end
|
|
|
|
it "subscribes properly" do
|
|
user.notification_setting.update(email_newsletter: false)
|
|
user.notification_setting.update(email_newsletter: true)
|
|
described_class.new(user).upsert_to_newsletter
|
|
expect(my_gibbon_client).to have_received(:upsert)
|
|
.with(hash_including(body: hash_including(status: "subscribed")))
|
|
end
|
|
|
|
it "updates email properly" do
|
|
user.update(email: Faker::Internet.email)
|
|
user.confirm
|
|
described_class.new(user).upsert_to_newsletter
|
|
expect(my_gibbon_client).to have_received(:upsert)
|
|
.with(hash_including(body: hash_including(email_address: user.email)))
|
|
end
|
|
|
|
it "tries to resubscribe the user if the user has previously been subscribed" do
|
|
user.notification_setting.update(email_newsletter: false)
|
|
mailchimp_bot = described_class.new(user)
|
|
mc_error =
|
|
Gibbon::MailChimpError.new("Error", status_code: 400, title: "Member In Compliance State")
|
|
allow(mailchimp_bot.gibbon).to receive(:upsert).and_raise(mc_error)
|
|
allow(mailchimp_bot).to receive(:resubscribe_as_pending)
|
|
|
|
mailchimp_bot.upsert_to_newsletter
|
|
|
|
expect(mailchimp_bot).to have_received(:resubscribe_as_pending)
|
|
end
|
|
|
|
it "handles GibbonError" do
|
|
mailchimp_bot = described_class.new(user)
|
|
gibbon_error =
|
|
Gibbon::GibbonError.new("You must set an api_key prior to making a call")
|
|
allow(mailchimp_bot.gibbon).to receive(:upsert).and_raise(gibbon_error)
|
|
|
|
expect { mailchimp_bot.upsert_to_newsletter }.not_to raise_error
|
|
end
|
|
end
|
|
|
|
describe "manage community moderator list" do
|
|
before { Settings::General.mailchimp_community_moderators_id = "something" }
|
|
|
|
after { Settings::General.mailchimp_community_moderators_id = nil }
|
|
|
|
it "returns false if user isn't a community moderator" do
|
|
expect(described_class.new(user).manage_community_moderator_list).to be(false)
|
|
end
|
|
|
|
it "sends proper information" do
|
|
user.notification_setting.update(email_community_mod_newsletter: true)
|
|
user.add_role(:trusted)
|
|
Settings::General.mailchimp_community_moderators_id = "something"
|
|
described_class.new(user).manage_community_moderator_list
|
|
expect(my_gibbon_client).to have_received(:upsert)
|
|
.with(hash_including(
|
|
body: hash_including(
|
|
status: "subscribed",
|
|
),
|
|
))
|
|
end
|
|
end
|
|
|
|
describe "manage tag moderator list" do
|
|
before { Settings::General.mailchimp_tag_moderators_id = "something" }
|
|
|
|
after { Settings::General.mailchimp_tag_moderators_id = nil }
|
|
|
|
it "returns false if user isn't a tag moderator" do
|
|
expect(described_class.new(user).manage_tag_moderator_list).to be(false)
|
|
end
|
|
|
|
it "sends proper information" do
|
|
user.notification_setting.update(email_tag_mod_newsletter: true)
|
|
user.add_role(:tag_moderator, tag)
|
|
described_class.new(user).manage_tag_moderator_list
|
|
expect(my_gibbon_client).to have_received(:upsert)
|
|
.with(hash_including(
|
|
body: hash_including(
|
|
status: "subscribed",
|
|
),
|
|
))
|
|
end
|
|
end
|
|
end
|