2022-03-25 17:08:24 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
describe CustomWizard::Subscription do
|
2023-02-08 13:32:24 +01:00
|
|
|
let(:guests_permitted) { get_wizard_fixture("wizard/guests_permitted") }
|
2023-02-23 19:24:11 +01:00
|
|
|
let!(:business_product_id) { SecureRandom.hex(8) }
|
|
|
|
let!(:standard_product_id) { SecureRandom.hex(8) }
|
|
|
|
let!(:community_product_id) { SecureRandom.hex(8) }
|
|
|
|
let!(:product_slugs) {
|
|
|
|
{
|
|
|
|
"#{business_product_id}" => "business",
|
|
|
|
"#{standard_product_id}" => "standard",
|
|
|
|
"#{community_product_id}" => "community"
|
|
|
|
}
|
|
|
|
}
|
2023-02-08 13:32:24 +01:00
|
|
|
|
2022-03-25 17:08:24 +01:00
|
|
|
def undefine_client_classes
|
2023-02-23 19:24:11 +01:00
|
|
|
Object.send(:remove_const, :DiscourseSubscriptionClient) if Object.constants.include?(:DiscourseSubscriptionClient)
|
2022-03-25 17:08:24 +01:00
|
|
|
Object.send(:remove_const, :SubscriptionClientSubscription) if Object.constants.include?(:SubscriptionClientSubscription)
|
|
|
|
end
|
|
|
|
|
|
|
|
def define_client_classes
|
|
|
|
load File.expand_path("#{Rails.root}/plugins/discourse-custom-wizard/spec/fixtures/subscription_client.rb", __FILE__)
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
undefine_client_classes
|
|
|
|
end
|
|
|
|
|
|
|
|
it "detects the subscription client" do
|
2023-02-24 14:17:00 +01:00
|
|
|
undefine_client_classes
|
2022-03-25 17:08:24 +01:00
|
|
|
expect(described_class.client_installed?).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "without a subscription client" do
|
|
|
|
it "is not subscribed" do
|
|
|
|
expect(described_class.subscribed?).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has none type" do
|
|
|
|
subscription = described_class.new
|
|
|
|
expect(subscription.type).to eq(:none)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "non subscriber features are included" do
|
|
|
|
expect(described_class.includes?(:wizard, :after_signup, true)).to eq(true)
|
|
|
|
end
|
|
|
|
|
2023-02-08 13:32:24 +01:00
|
|
|
it "subscriber features are not included" do
|
2022-03-25 17:08:24 +01:00
|
|
|
expect(described_class.includes?(:wizard, :permitted, {})).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with subscription client" do
|
|
|
|
before do
|
|
|
|
define_client_classes
|
|
|
|
end
|
|
|
|
|
|
|
|
it "detects the subscription client" do
|
|
|
|
expect(described_class.client_installed?).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "without a subscription" do
|
2023-02-23 19:24:11 +01:00
|
|
|
before do
|
|
|
|
DiscourseSubscriptionClient.stubs(:find_subscriptions).returns(nil)
|
|
|
|
end
|
|
|
|
|
2022-03-25 17:08:24 +01:00
|
|
|
it "has none type" do
|
|
|
|
expect(described_class.type).to eq(:none)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "non subscriber features are included" do
|
|
|
|
expect(described_class.includes?(:wizard, :after_signup, true)).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "subscriber features are not included" do
|
|
|
|
expect(described_class.includes?(:wizard, :permitted, {})).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
context "with subscriptions" do
|
|
|
|
def get_subscription_result(product_id)
|
|
|
|
result = DiscourseSubscriptionClient::Subscriptions::Result.new
|
|
|
|
result.supplier = SubscriptionClientSupplier.new(product_slugs)
|
|
|
|
result.resource = SubscriptionClientResource.new
|
|
|
|
result.subscriptions = [SubscriptionClientSubscription.new(product_id)]
|
|
|
|
result
|
|
|
|
end
|
|
|
|
let!(:business_subscription_result) { get_subscription_result(business_product_id) }
|
|
|
|
let!(:standard_subscription_result) { get_subscription_result(standard_product_id) }
|
|
|
|
let!(:community_subscription_result) { get_subscription_result(community_product_id) }
|
|
|
|
|
2023-02-08 13:32:24 +01:00
|
|
|
it "handles mapped values" do
|
2023-02-23 19:24:11 +01:00
|
|
|
DiscourseSubscriptionClient.stubs(:find_subscriptions).returns(standard_subscription_result)
|
2023-02-08 13:32:24 +01:00
|
|
|
expect(described_class.includes?(:wizard, :permitted, guests_permitted["permitted"])).to eq(true)
|
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
DiscourseSubscriptionClient.stubs(:find_subscriptions).returns(community_subscription_result)
|
2023-02-08 13:32:24 +01:00
|
|
|
expect(described_class.includes?(:wizard, :permitted, guests_permitted["permitted"])).to eq(false)
|
|
|
|
end
|
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
context "with a standard subscription" do
|
|
|
|
before do
|
|
|
|
DiscourseSubscriptionClient.stubs(:find_subscriptions).returns(standard_subscription_result)
|
|
|
|
end
|
2022-03-25 17:08:24 +01:00
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
it "detects standard type" do
|
|
|
|
expect(described_class.type).to eq(:standard)
|
|
|
|
end
|
2022-03-25 17:08:24 +01:00
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
it "standard features are included" do
|
|
|
|
expect(described_class.includes?(:wizard, :type, 'send_message')).to eq(true)
|
|
|
|
end
|
2022-03-25 17:08:24 +01:00
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
it "business features are not included" do
|
|
|
|
expect(described_class.includes?(:action, :type, 'create_category')).to eq(false)
|
|
|
|
end
|
2022-03-25 17:08:24 +01:00
|
|
|
end
|
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
context "with a business subscription" do
|
|
|
|
before do
|
|
|
|
DiscourseSubscriptionClient.stubs(:find_subscriptions).returns(business_subscription_result)
|
|
|
|
end
|
2022-03-25 17:08:24 +01:00
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
it "detects business type" do
|
|
|
|
expect(described_class.type).to eq(:business)
|
|
|
|
end
|
2022-03-25 17:08:24 +01:00
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
it "business features are included" do
|
|
|
|
expect(described_class.includes?(:action, :type, 'create_category')).to eq(true)
|
|
|
|
end
|
2022-09-23 15:52:05 +02:00
|
|
|
end
|
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
context "with a community subscription" do
|
|
|
|
before do
|
|
|
|
DiscourseSubscriptionClient.stubs(:find_subscriptions).returns(community_subscription_result)
|
|
|
|
end
|
2022-09-23 15:52:05 +02:00
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
it "detects community type" do
|
|
|
|
expect(described_class.type).to eq(:community)
|
|
|
|
end
|
2022-09-23 15:52:05 +02:00
|
|
|
|
2023-02-23 19:24:11 +01:00
|
|
|
it "community features are included" do
|
|
|
|
expect(described_class.includes?(:action, :type, 'create_category')).to eq(true)
|
|
|
|
end
|
2022-03-25 17:08:24 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|