require 'spec_helper' describe Spree::Zone, type: :model do describe 'for_address' do let(:new_york_address) { create(:address, state_code: "NY") } let(:alabama_address) { create(:address) } let(:canada_address) { create(:address, country_iso_code: "CA") } let!(:new_york_zone) { create(:zone, states: [new_york_address.state]) } let!(:alabama_zone) { create(:zone, states: [alabama_address.state]) } let!(:united_states_zone) { create(:zone, countries: [new_york_address.country]) } let!(:canada_zone) { create(:zone, countries: [canada_address.country]) } let!(:north_america_zone) { create(:zone, countries: [canada_address.country, new_york_address.country]) } subject { Spree::Zone.for_address(address) } context 'when there is no address' do let(:address) { nil } it 'returns an empty relation' do expect(subject).to eq([]) end end context 'for an address in New York' do let(:address) { new_york_address } it 'matches the New York zone' do expect(subject).to include(new_york_zone) end it 'matches the United States zone' do expect(subject).to include(united_states_zone) end it 'does not match the Alabama zone' do expect(subject).not_to include(alabama_zone) end it 'does not match the Canadian zone' do expect(subject).not_to include(canada_zone) end it 'matches the North America zone' do expect(subject).to include(north_america_zone) end end end context "#match" do let(:country_zone) { create(:zone, name: 'CountryZone') } let(:country) do country = create(:country) # Create at least one state for this country create(:state, country: country) country end before { country_zone.members.create(zoneable: country) } context "when there is only one qualifying zone" do let(:address) { create(:address, country: country, state: country.states.first) } it "should return the qualifying zone" do Spree::Deprecation.silence do expect(Spree::Zone.match(address)).to eq(country_zone) end end end context "when there are two qualified zones with same member type" do let(:address) { create(:address, country: country, state: country.states.first) } let(:second_zone) { create(:zone, name: 'SecondZone') } before { second_zone.members.create(zoneable: country) } context "when both zones have the same number of members" do it "should return the zone that was created first" do Spree::Deprecation.silence do expect(Spree::Zone.match(address)).to eq(country_zone) end end end context "when one of the zones has fewer members" do let(:country2) { create(:country) } before { country_zone.members.create(zoneable: country2) } it "should return the zone with fewer members" do Spree::Deprecation.silence do expect(Spree::Zone.match(address)).to eq(second_zone) end end end end context "when there are two qualified zones with different member types" do let(:state_zone) { create(:zone, name: 'StateZone') } let(:address) { create(:address, country: country, state: country.states.first) } before { state_zone.members.create(zoneable: country.states.first) } it "should return the zone with the more specific member type" do Spree::Deprecation.silence do expect(Spree::Zone.match(address)).to eq(state_zone) end end end context "when there are no qualifying zones" do it "should return nil" do Spree::Deprecation.silence do expect(Spree::Zone.match(Spree::Address.new)).to be_nil end end end end context "#country_list" do let(:state) { create(:state) } let(:country) { state.country } context "when zone consists of countries" do let(:country_zone) { create(:zone, name: 'CountryZone') } before { country_zone.members.create(zoneable: country) } it 'should return a list of countries' do Spree::Deprecation.silence do expect(country_zone.country_list).to eq([country]) end end end context "when zone consists of states" do let(:state_zone) { create(:zone, name: 'StateZone') } before { state_zone.members.create(zoneable: state) } it 'should return a list of countries' do Spree::Deprecation.silence do expect(state_zone.country_list).to eq([state.country]) end end end end context "#include?" do let(:state) { create(:state) } let(:country) { state.country } let(:address) { create(:address, state: state) } context "when zone is country type" do let(:country_zone) { create(:zone, name: 'CountryZone') } before { country_zone.members.create(zoneable: country) } it "should be true" do expect(country_zone.include?(address)).to be true end end context "when zone is state type" do let(:state_zone) { create(:zone, name: 'StateZone') } before { state_zone.members.create(zoneable: state) } it "should be true" do expect(state_zone.include?(address)).to be true end end end context ".default_tax" do context "when there is a default tax zone specified" do before { @foo_zone = create(:zone, name: 'whatever', default_tax: true) } it "should be the correct zone" do create(:zone, name: 'foo') Spree::Deprecation.silence do expect(Spree::Zone.default_tax).to eq(@foo_zone) end end end context "when there is no default tax zone specified" do it "should be nil" do expect(Spree::Zone.default_tax).to be_nil end end end context "#contains?" do let(:country1) { create(:country) } let(:country2) { create(:country) } let(:country3) { create(:country) } before do @source = create(:zone, name: 'source', zone_members: []) @target = create(:zone, name: 'target', zone_members: []) end it "should contain itself" do Spree::Deprecation.silence do expect(@source.contains?(@source)).to be true end end context "when both source and target have no members" do it "should be false" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be false end end end context "when the target has no members" do before { @source.members.create(zoneable: country1) } it "should be false" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be false end end end context "when the source has no members" do before { @target.members.create(zoneable: country1) } it "should be false" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be false end end end context "when both zones are the same zone" do before do @target = @source end it "should be true" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be true end end end context "when both zones are of the same type" do before do @source.members.create(zoneable: country1) @source.members.create(zoneable: country2) end context "when all members are included in the zone we check against" do before do @target.members.create(zoneable: country1) @target.members.create(zoneable: country2) end it "should be true" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be true end end end context "when some members are included in the zone we check against" do before do @target.members.create(zoneable: country1) @target.members.create(zoneable: country2) @target.members.create(zoneable: create(:country)) end it "should be false" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be false end end end context "when none of the members are included in the zone we check against" do before do @target.members.create(zoneable: create(:country)) @target.members.create(zoneable: create(:country)) end it "should be false" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be false end end end end context "when checking country against state" do before do @source.members.create(zoneable: create(:state)) @target.members.create(zoneable: country1) end it "should be false" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be false end end end context "when checking state against country" do before { @source.members.create(zoneable: country1) } context "when all states contained in one of the countries we check against" do before do state1 = create(:state, country: country1) @target.members.create(zoneable: state1) end it "should be true" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be true end end end context "when some states contained in one of the countries we check against" do before do state1 = create(:state, country: country1) @target.members.create(zoneable: state1) @target.members.create(zoneable: create(:state, country: country2)) end it "should be false" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be false end end end context "when none of the states contained in any of the countries we check against" do before do @target.members.create(zoneable: create(:state, country: country2)) @target.members.create(zoneable: create(:state, country: country2)) end it "should be false" do Spree::Deprecation.silence do expect(@source.contains?(@target)).to be false end end end end end context "#save" do context "when default_tax is true" do it "should clear previous default tax zone" do zone1 = create(:zone, name: 'foo', default_tax: true) create(:zone, name: 'bar', default_tax: true) expect(zone1.reload.default_tax).to be false end end context "when a zone member country is added to an existing zone consisting of state members" do it "should remove existing state members" do zone = create(:zone, name: 'foo', zone_members: []) state = create(:state) country = create(:country) zone.members.create(zoneable: state) country_member = zone.members.create(zoneable: country) zone.save expect(zone.reload.members).to eq([country_member]) end end end context "#kind" do context "when the zone consists of country zone members" do before do @zone = create(:zone, name: 'country', zone_members: []) @zone.members.create(zoneable: create(:country)) end it "should return the kind of zone member" do expect(@zone.kind).to eq("country") end end context "when the zone consists of state zone members" do before do @zone = create(:zone, name: 'state', zone_members: []) @zone.members.create(zoneable: create(:state)) end it "should return the kind of zone member" do expect(@zone.kind).to eq("state") end end end context "state and country associations" do let!(:country) { create(:country) } context "has countries associated" do let!(:zone) do create(:zone, countries: [country]) end it "can access associated countries" do expect(zone.countries).to eq([country]) end end context "has states associated" do let!(:state) { create(:state, country: country) } let!(:zone) do create(:zone, states: [state]) end it "can access associated states" do expect(zone.states).to eq([state]) end end end context ".with_shared_members" do let!(:country) { create(:country) } let!(:country2) { create(:country, name: 'OtherCountry') } let!(:country3) { create(:country, name: 'TaxCountry') } subject(:zones_with_shared_members) { Spree::Zone.with_shared_members(zone) } context 'when passing a zone with no members' do let!(:zone) { create :zone } it 'will return an empty set' do expect(subject).to eq([]) end end context 'when passing nil' do let!(:zone) { nil } it 'will return an empty set' do expect(subject).to eq([]) end end context "finding potential matches for a country zone" do let!(:zone) do create(:zone).tap do |z| z.members.create(zoneable: country) z.members.create(zoneable: country2) z.save! end end let!(:zone2) do create(:zone).tap { |z| z.members.create(zoneable: country) && z.save! } end let!(:zone3) do create(:zone).tap { |z| z.members.create(zoneable: country3) && z.save! } end it "will find all zones with countries covered by the passed in zone" do expect(zones_with_shared_members).to include(zone, zone2) end it "will not return zones with countries not covered in the passed in zone" do expect(zones_with_shared_members).not_to include(zone3) end it "only returns each zone once" do expect(zones_with_shared_members.select { |z| z == zone }.size).to be 1 end end context "finding potential matches for a state zone" do let!(:state) { create(:state, country: country) } let!(:state2) { create(:state, country: country2, name: 'OtherState') } let!(:state3) { create(:state, country: country2, name: 'State') } let!(:zone) do create(:zone).tap do |z| z.members.create(zoneable: state) z.members.create(zoneable: state2) z.save! end end let!(:zone2) do create(:zone).tap { |z| z.members.create(zoneable: state) && z.save! } end let!(:zone3) do create(:zone).tap { |z| z.members.create(zoneable: state2) && z.save! } end it "will find all zones which share states covered by passed in zone" do expect(zones_with_shared_members).to include(zone, zone2) end it "will find zones that share countries with any states of the passed in zone" do expect(zones_with_shared_members).to include(zone3) end it "only returns each zone once" do expect(zones_with_shared_members.select { |z| z == zone }.size).to be 1 end end end end