mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
106 lines
3.7 KiB
Ruby
106 lines
3.7 KiB
Ruby
require 'spec_helper'
|
|
|
|
module Spree
|
|
describe ShippingMethod do
|
|
it "is valid when built from factory" do
|
|
build(:shipping_method).should be_valid
|
|
end
|
|
|
|
it "can have distributors" do
|
|
d1 = create(:distributor_enterprise)
|
|
d2 = create(:distributor_enterprise)
|
|
sm = create(:shipping_method)
|
|
|
|
sm.distributors.clear
|
|
sm.distributors << d1
|
|
sm.distributors << d2
|
|
|
|
sm.reload.distributors.should match_array [d1, d2]
|
|
end
|
|
|
|
it "finds shipping methods for a particular distributor" do
|
|
d1 = create(:distributor_enterprise)
|
|
d2 = create(:distributor_enterprise)
|
|
sm1 = create(:shipping_method, distributors: [d1])
|
|
sm2 = create(:shipping_method, distributors: [d2])
|
|
|
|
ShippingMethod.for_distributor(d1).should == [sm1]
|
|
end
|
|
|
|
it "orders shipping methods by name" do
|
|
sm1 = create(:shipping_method, name: 'ZZ')
|
|
sm2 = create(:shipping_method, name: 'AA')
|
|
sm3 = create(:shipping_method, name: 'BB')
|
|
|
|
ShippingMethod.by_name.should == [sm2, sm3, sm1]
|
|
end
|
|
|
|
|
|
describe "availability" do
|
|
let(:sm) { create(:shipping_method) }
|
|
let(:currency) { 'AUD' }
|
|
|
|
before do
|
|
sm.calculator.preferred_currency = currency
|
|
end
|
|
|
|
it "is available to orders that match its distributor" do
|
|
o = create(:order, ship_address: create(:address),
|
|
distributor: sm.distributors.first, currency: currency)
|
|
sm.should be_available_to_order o
|
|
end
|
|
|
|
it "is not available to orders that do not match its distributor" do
|
|
o = create(:order, ship_address: create(:address),
|
|
distributor: create(:distributor_enterprise), currency: currency)
|
|
sm.should_not be_available_to_order o
|
|
end
|
|
|
|
it "is available to orders with no shipping address" do
|
|
o = create(:order, ship_address: nil,
|
|
distributor: sm.distributors.first, currency: currency)
|
|
sm.should be_available_to_order o
|
|
end
|
|
end
|
|
|
|
describe "finding services offered by all distributors" do
|
|
let!(:d1) { create(:distributor_enterprise) }
|
|
let!(:d2) { create(:distributor_enterprise) }
|
|
let!(:d3) { create(:distributor_enterprise) }
|
|
let!(:d4) { create(:distributor_enterprise) }
|
|
let!(:d1_pickup) { create(:shipping_method, require_ship_address: false, distributors: [d1]) }
|
|
let!(:d1_delivery) { create(:shipping_method, require_ship_address: true, distributors: [d1]) }
|
|
let!(:d2_pickup) { create(:shipping_method, require_ship_address: false, distributors: [d2]) }
|
|
let!(:d3_delivery) { create(:shipping_method, require_ship_address: true, distributors: [d3]) }
|
|
|
|
it "reports when the services are available" do
|
|
ShippingMethod.services[d1.id].should == {pickup: true, delivery: true}
|
|
end
|
|
|
|
it "reports when only pickup is available" do
|
|
ShippingMethod.services[d2.id].should == {pickup: true, delivery: false}
|
|
end
|
|
|
|
it "reports when only delivery is available" do
|
|
ShippingMethod.services[d3.id].should == {pickup: false, delivery: true}
|
|
end
|
|
|
|
it "returns no entry when no service is available" do
|
|
ShippingMethod.services[d4.id].should be_nil
|
|
end
|
|
end
|
|
|
|
describe '#delivery?' do
|
|
context 'when the shipping method requires an address' do
|
|
let(:shipping_method) { build(:shipping_method, require_ship_address: true) }
|
|
it { expect(shipping_method.delivery?).to be true }
|
|
end
|
|
|
|
context 'when the shipping method does not require address' do
|
|
let(:shipping_method) { build(:shipping_method, require_ship_address: false) }
|
|
it { expect(shipping_method.delivery?).to be false }
|
|
end
|
|
end
|
|
end
|
|
end
|