Files
openfoodnetwork/spec/helpers/admin/enterprises_helper_spec.rb
2025-09-24 10:40:43 +10:00

137 lines
4.5 KiB
Ruby

# frozen_string_literal: true
require "spec_helper"
RSpec.describe Admin::EnterprisesHelper do
let(:user) { build(:user) }
before do
# Enable helper to use `#can?` method.
# We could extract this when other helper specs need it.
allow_any_instance_of(CanCan::ControllerAdditions).to receive(:current_ability) do
Spree::Ability.new(user)
end
allow(helper).to receive(:spree_current_user) { user }
end
describe "#enterprise_side_menu_items" do
let(:enterprise) { build(:enterprise) }
let(:menu_items) { helper.enterprise_side_menu_items(enterprise) }
let(:visible_items) { menu_items.select { |i| i[:show] } }
it "lists default items" do
expect(visible_items.pluck(:name)).to eq %w[
primary_details address contact social about business_details images
vouchers enterprise_permissions tag_rules shop_preferences white_label users
]
end
it "lists enabled features when allowed", feature: :connected_apps do
allow(Spree::Config).to receive(:connected_apps_enabled).and_return "discover_regen"
user.enterprises << enterprise
expect(visible_items.pluck(:name)).to include "connected_apps"
end
context "with inventory enabled", feature: :inventory do
it "lists inventory_settings" do
expect(visible_items.pluck(:name)).to include "inventory_settings"
end
end
it "hides Connected Apps by default" do
user.enterprises << enterprise
expect(visible_items.pluck(:name)).not_to include "connected_apps"
end
it "shows Connected Apps for specific user" do
user.enterprises << enterprise
Flipper.enable("cqcm-dev", user)
expect(visible_items.pluck(:name)).to include "connected_apps"
end
end
describe '#enterprise_sells_options' do
it 'returns sells options with translations' do
expect(helper.enterprise_sells_options.map(&:first)).to eq %w[unspecified none own any]
end
end
describe "#tag_groups" do
subject { helper.tag_groups(tag_rules) }
context "with one group" do
let(:tag_rules) { [tag_rule] }
let(:tag_rule) { create(:filter_products_tag_rule, preferred_customer_tags: "test") }
it "return an array of one tag group" do
expected = [
{
position: 1,
rules: [tag_rule],
tags: ["test"]
}
]
expect(subject.length).to eq(1)
expect(subject).to eq(expected)
end
context "wiht mutiple rules" do
let(:enterprise) { create(:enterprise) }
let(:tag_rules) {
create_list(:filter_products_tag_rule, 3, enterprise:, preferred_customer_tags: "good")
}
it "returns all the rules associated with the tag group" do
expect(subject.length).to eq(1)
group = subject.first
expect(group[:rules].length).to eq(3)
expect(group[:tags]).to eq(["good"])
end
end
end
context "with multiple group" do
let(:tag_rules) { [tag_rule_group1, tag_rule_group2, tag_rule_group3] }
let(:tag_rule_group1) {
create(:filter_products_tag_rule, enterprise:, preferred_customer_tags: "group_1")
}
let(:tag_rule_group2) {
create(:filter_products_tag_rule, enterprise:, preferred_customer_tags: "group_2")
}
let(:tag_rule_group3) {
create(:filter_products_tag_rule, enterprise:, preferred_customer_tags: "group_3")
}
let(:enterprise) { create(:enterprise) }
it "return an array of all the group" do
expect(subject.length).to eq(3)
expect(subject.first[:tags]).to eq(["group_1"])
expect(subject.second[:tags]).to eq(["group_2"])
expect(subject.third[:tags]).to eq(["group_3"])
end
context "with multiple rules per group" do
let(:tag_rules) { enterprise.tag_rules }
let!(:tag_rules_group1) {
create_list(:filter_products_tag_rule, 3, enterprise:, preferred_customer_tags: "group_1")
}
let!(:tag_rules_group2) {
create(:filter_products_tag_rule, enterprise:, preferred_customer_tags: "group_2")
}
let!(:tag_rules_group3) {
create_list(:filter_products_tag_rule, 2, enterprise:, preferred_customer_tags: "group_3")
}
it "matches the rules with the correct group" do
expect(subject.length).to eq(3)
expect(subject.first[:rules].length).to eq(3)
expect(subject.second[:rules].length).to eq(1)
expect(subject.third[:rules].length).to eq(2)
end
end
end
end
end