Files
openfoodnetwork/spec/models/spree/tax_rate_spec.rb

71 lines
2.5 KiB
Ruby

module Spree
describe TaxRate do
describe "selecting tax rates to apply to an order" do
let!(:zone) { create(:zone_with_member) }
let!(:order) { create(:order, distributor: hub, bill_address: create(:address)) }
let!(:tax_rate) { create(:tax_rate, included_in_price: true, calculator: Calculator::FlatRate.new(preferred_amount: 0.1), zone: zone) }
describe "when the order's hub charges sales tax" do
let(:hub) { create(:distributor_enterprise, charges_sales_tax: true) }
it "selects all tax rates" do
expect(TaxRate.match(order)).to eq([tax_rate])
end
end
describe "when the order's hub does not charge sales tax" do
let(:hub) { create(:distributor_enterprise, charges_sales_tax: false) }
it "selects no tax rates" do
expect(TaxRate.match(order)).to be_empty
end
end
describe "when the order does not have a hub" do
let!(:order) { create(:order, distributor: nil, bill_address: create(:address)) }
it "selects all tax rates" do
expect(TaxRate.match(order)).to eq([tax_rate])
end
end
end
describe "ensuring that tax rate is marked as tax included_in_price" do
let(:tax_rate) { create(:tax_rate, included_in_price: false, calculator: Spree::Calculator::DefaultTax.new) }
it "sets included_in_price to true" do
tax_rate.send(:with_tax_included_in_price) do
expect(tax_rate.included_in_price).to be true
end
end
it "sets the included_in_price value accessible to the calculator to true" do
tax_rate.send(:with_tax_included_in_price) do
expect(tax_rate.calculator.calculable.included_in_price).to be true
end
end
it "passes through the return value of the block" do
expect(tax_rate.send(:with_tax_included_in_price) do
'asdf'
end).to eq('asdf')
end
it "restores both values to their original afterwards" do
tax_rate.send(:with_tax_included_in_price) {}
expect(tax_rate.included_in_price).to be false
expect(tax_rate.calculator.calculable.included_in_price).to be false
end
it "restores both values when an exception is raised" do
expect do
tax_rate.send(:with_tax_included_in_price) { raise Exception, 'oops' }
end.to raise_error 'oops'
expect(tax_rate.included_in_price).to be false
expect(tax_rate.calculator.calculable.included_in_price).to be false
end
end
end
end