Files
openfoodnetwork/spec/helpers/checkout_helper_spec.rb
Neal Chambers c3b4781a28 Safely autocorrect Style/RedundantConstantBase
Inspecting 1509 files
.........................................................................................................C.........................................C......................................................................................................................................................................................................................................................................................................................................................................................................................................................................C.......................................................................................................................................................................................................................................................................................................................................................................................................................C.........................................................................................................................................................................CCC........................................C......................................................................................C......................................................................................................................................................................................................

Offenses:

app/controllers/split_checkout_controller.rb:5:33: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
class SplitCheckoutController < ::BaseController
                                ^^
app/controllers/webhook_endpoints_controller.rb:3:36: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
class WebhookEndpointsController < ::BaseController
                                   ^^
config.ru:5:9: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
require ::File.expand_path('config/environment', __dir__)
        ^^
spec/helpers/checkout_helper_spec.rb:168:68: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
      let!(:tax_rate) { create(:tax_rate, amount: 0.1, calculator: ::Calculator::DefaultTax.new) }
                                                                   ^^
spec/models/spree/order_spec.rb:619:25: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
    let(:fee_handler) { ::OrderFeesHandler.new(subject) }
                        ^^
spec/models/spree/payment_method_spec.rb:150:51: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
                                      calculator: ::Calculator::FlatRate.new(preferred_amount: 10))
                                                  ^^
spec/models/spree/payment_method_spec.rb:154:54: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
                                         calculator: ::Calculator::FlatPercentItemTotal
                                                     ^^
spec/models/spree/payment_spec.rb:429:49: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
            create(:payment_method, calculator: ::Calculator::FlatRate.new(preferred_amount: 10))
                                                ^^
spec/models/spree/payment_spec.rb:1002:11: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
          ::Calculator::FlatPercentItemTotal.new(preferred_flat_percent: 10)
          ^^
spec/models/spree/payment_spec.rb:1039:28: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
        let(:calculator) { ::Calculator::FlatPercentItemTotal.new(preferred_flat_percent: 10) }
                           ^^
spec/queries/complete_visible_orders_spec.rb:12:31: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
    let(:order_permissions) { ::Permissions::Order.new(user, filter_canceled) }
                              ^^
spec/services/paypal_items_builder_spec.rb:34:37: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
                        calculator: ::Calculator::DefaultTax.new)
                                    ^^
spec/services/paypal_items_builder_spec.rb:38:37: C: [Corrected] Style/RedundantConstantBase: Remove redundant ::.
                        calculator: ::Calculator::DefaultTax.new)
                                    ^^

1509 files inspected, 13 offenses detected, 13 offenses corrected
2023-11-10 09:13:57 +09:00

209 lines
6.5 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe CheckoutHelper, type: :helper do
it "generates html for validated inputs" do
expect(helper).to receive(:render).with(
"shared/validated_input",
name: "test",
path: "foo",
attributes: { :required => true, :type => :email, :name => "foo", :id => "foo",
"ng-model" => "foo", "ng-class" => "{error: !fieldValid('foo')}" }
)
helper.validated_input("test", "foo", type: :email)
end
describe "#display_checkout_tax_total" do
subject(:display_checkout_tax_total) { helper.display_checkout_tax_total(order) }
let(:order) { instance_double(Spree::Order, total_tax: 123.45, currency: 'AUD') }
let(:service) { instance_double(VoucherAdjustmentsService, voucher_included_tax: ) }
let(:voucher_included_tax) { 0.0 }
before do
allow(VoucherAdjustmentsService).to receive(:new).and_return(service)
end
it "retrieves the total tax on the order" do
expect(display_checkout_tax_total).to eq(Spree::Money.new(123.45, currency: 'AUD'))
end
context "with a voucher" do
let(:voucher_included_tax) { -0.45 }
it "displays the discounted total tax" do
expect(display_checkout_tax_total).to eq(Spree::Money.new(123.00, currency: 'AUD'))
end
end
end
describe "#display_checkout_taxes_hash" do
let(:order) { build(:order_with_totals) }
let(:tax_rate10) { build(:tax_rate, amount: 0.1) }
let(:tax_rate20) { build(:tax_rate, amount: 0.2) }
let(:other_tax_rate20) { build(:tax_rate, amount: 0.2) }
let(:adjustment1) {
build(:adjustment, amount: 1, label: "10% tax", originator: tax_rate10)
}
let(:adjustment2) {
build(:adjustment, amount: 2, label: "20% tax", originator: tax_rate20)
}
let(:other_adjustment2) {
build(:adjustment, amount: 2, label: "20% tax", originator: other_tax_rate20)
}
it "produces an empty array without taxes" do
expect(helper.display_checkout_taxes_hash(order)).to eq([])
end
it "shows a single tax adjustment" do
order.all_adjustments << adjustment1
order.save!
expect(helper.display_checkout_taxes_hash(order)).to eq [
{
amount: Spree::Money.new(1, currency: order.currency),
percentage: "10.0%",
rate_amount: 0.1,
}
]
end
it "shows multiple tax adjustments" do
order.all_adjustments << adjustment1
order.all_adjustments << adjustment2
order.save!
expect(helper.display_checkout_taxes_hash(order)).to eq [
{
amount: Spree::Money.new(1, currency: order.currency),
percentage: "10.0%",
rate_amount: 0.1,
},
{
amount: Spree::Money.new(2, currency: order.currency),
percentage: "20.0%",
rate_amount: 0.2,
},
]
end
it "sorts adjustments by percentage" do
order.all_adjustments << adjustment2
order.all_adjustments << adjustment1
order.save!
expect(helper.display_checkout_taxes_hash(order)).to eq [
{
amount: Spree::Money.new(1, currency: order.currency),
percentage: "10.0%",
rate_amount: 0.1,
},
{
amount: Spree::Money.new(2, currency: order.currency),
percentage: "20.0%",
rate_amount: 0.2,
},
]
end
it "shows multiple tax adjustments with same percentage" do
order.all_adjustments << adjustment2
order.all_adjustments << other_adjustment2
order.save!
expect(helper.display_checkout_taxes_hash(order)).to eq [
{
amount: Spree::Money.new(2, currency: order.currency),
percentage: "20.0%",
rate_amount: 0.2,
},
{
amount: Spree::Money.new(2, currency: order.currency),
percentage: "20.0%",
rate_amount: 0.2,
},
]
expect(helper.display_checkout_taxes_hash(order).size).to eq 2
end
end
it "knows if guests can checkout" do
distributor = create(:distributor_enterprise)
order = create(:order, distributor:)
allow(helper).to receive(:current_order) { order }
expect(helper.guest_checkout_allowed?).to be true
order.distributor.allow_guest_orders = false
expect(helper.guest_checkout_allowed?).to be false
end
describe "#checkout_adjustments_for" do
let(:order) { create(:order_with_totals_and_distribution) }
let(:enterprise_fee) { create(:enterprise_fee, amount: 123) }
let!(:fee_adjustment) {
create(:adjustment, originator: enterprise_fee, adjustable: order,
order:, label: "Enterprise Fee")
}
before do
order.update_order!
# Sanity check initial adjustments state
expect(order.shipment_adjustments.count).to eq 1
expect(order.adjustments.enterprise_fee.count).to eq 1
end
it "collects adjustments on the order" do
adjustments = helper.checkout_adjustments_for(order)
shipping_adjustment = order.shipment_adjustments.first
expect(adjustments).to match_array [shipping_adjustment, fee_adjustment]
end
context "tax rate adjustments" do
let!(:tax_rate) { create(:tax_rate, amount: 0.1, calculator: Calculator::DefaultTax.new) }
let!(:line_item_fee_adjustment) {
create(:adjustment, originator: enterprise_fee, adjustable: order.line_items.first,
order:)
}
let!(:order_tax_adjustment) {
create(:adjustment,
originator: tax_rate,
adjustable: fee_adjustment,
order:)
}
let!(:line_item_fee_adjustment_tax_adjustment) {
create(:adjustment,
originator: tax_rate,
adjustable: line_item_fee_adjustment,
order:)
}
it "removes tax rate adjustments" do
expect(order.all_adjustments.tax.count).to eq(2)
adjustments = helper.checkout_adjustments_for(order)
tax_adjustments = adjustments.select { |a| a.originator_type == "Spree::TaxRate" }
expect(tax_adjustments.count).to eq(0)
end
end
context "with return authorization adjustments" do
let!(:return_adjustment) {
create(:adjustment, originator_type: 'Spree::ReturnAuthorization', adjustable: order,
order:)
}
it "includes return adjustments" do
adjustments = helper.checkout_adjustments_for(order)
expect(adjustments).to include return_adjustment
end
end
end
end