Sha256: 1491785d40201124e447f68da9e9eac3ddf85e943a9f078984150441a4034e81

Contents?: true

Size: 1.92 KB

Versions: 32

Compression:

Stored size: 1.92 KB

Contents

require 'spree/testing_support/factories/promotion_code_factory'
require 'spree/testing_support/factories/variant_factory'

FactoryGirl.define do
  factory :promotion, class: Spree::Promotion do
    name 'Promo'

    transient do
      code nil
    end
    before(:create) do |promotion, evaluator|
      if evaluator.code
        promotion.codes << build(:promotion_code, promotion: promotion, value: evaluator.code)
      end
    end

    trait :with_line_item_adjustment do
      transient do
        adjustment_rate 10
      end

      after(:create) do |promotion, evaluator|
        calculator = Spree::Calculator::FlatRate.new
        calculator.preferred_amount = evaluator.adjustment_rate
        Spree::Promotion::Actions::CreateItemAdjustments.create!(calculator: calculator, promotion: promotion)
      end
    end
    factory :promotion_with_item_adjustment, traits: [:with_line_item_adjustment]

    trait :with_order_adjustment do
      transient do
        weighted_order_adjustment_amount 10
      end

      after(:create) do |promotion, evaluator|
        calculator = Spree::Calculator::FlatRate.new
        calculator.preferred_amount = evaluator.weighted_order_adjustment_amount
        action = Spree::Promotion::Actions::CreateAdjustment.create!(calculator: calculator)
        promotion.actions << action
        promotion.save!
      end
    end
    factory :promotion_with_order_adjustment, traits: [:with_order_adjustment]

    trait :with_item_total_rule do
      transient do
        item_total_threshold_amount 10
      end

      after(:create) do |promotion, evaluator|
        rule = Spree::Promotion::Rules::ItemTotal.create!(
          promotion: promotion,
          preferred_operator: 'gte',
          preferred_amount: evaluator.item_total_threshold_amount
        )
        promotion.rules << rule
        promotion.save!
      end
    end
    factory :promotion_with_item_total_rule, traits: [:with_item_total_rule]
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
solidus_core-2.3.1 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.2.2 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.1.1 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.0.3 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-1.4.2 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-1.3.2 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.3.0 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.3.0.rc3 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.3.0.rc2 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.3.0.rc1 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.3.0.beta1 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.0.2 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-1.4.1 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.2.1 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.2.0 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.2.0.rc1 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.2.0.beta1 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.1.0 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.1.0.rc1 lib/spree/testing_support/factories/promotion_factory.rb
solidus_core-2.0.1 lib/spree/testing_support/factories/promotion_factory.rb