Używam Rails 4 teksty stałe i chcę, aby prawidłowo je przetestować, więc ustawić te testy się na mój pól ENUM:Rails - Zatwierdzenie badania pól enum
it { should validate_inclusion_of(:category).in_array(%w[sale sale_with_tax fees lease tax_free other payroll]) }
it { should validate_inclusion_of(:type).in_array(%w[receivable payable]) }
i jest to model oni Re walidacji:
class Invoice < ActiveRecord::Base
belongs_to :user
enum category: [:sale, :sale_with_tax, :fees, :lease, :tax_free, :other, :payroll]
enum type: [:receivable, :payable]
validates :user, presence: true
validates :issue_date, presence: true
validates :series, presence: true
validates :folio, presence: true
validates :issuing_location, presence: true
validates :payment_method, presence: true
validates :last_digits, presence: true
validates :credit_note, presence: true
validates :total, presence: true
validates :subtotal, presence: true
validates :category, presence: true
validates_inclusion_of :category, in: Invoice.categories.keys
validates :type, presence: true
validates_inclusion_of :type, in: Invoice.types.keys
end
Ale kiedy uruchomić testy uzyskać:
1) Invoice should ensure inclusion of type in [0, 1]
Failure/Error: it { should validate_inclusion_of(:type).in_array([0,1]) }
ArgumentError:
'123456789' is not a valid type
# ./spec/models/invoice_spec.rb:20:in `block (2 levels) in <top (required)>'
2) Invoice should ensure inclusion of category in [0, 1, 2, 3, 4, 5, 6]
Failure/Error: it { should validate_inclusion_of(:category).in_array([0,1,2,3,4,5,6]) }
ArgumentError:
'123456789' is not a valid category
# ./spec/models/invoice_spec.rb:19:in `block (2 levels) in <top (required)>'
ja również próbowałem z ciągów znaków na tablicach testowych, b ut Mam ten sam błąd i naprawdę go nie rozumiem.
To pytanie jest duplikatem http://stackoverflow.com/questions/25597031/rails-4-enum-validation. Jak słusznie stwierdza Albertis: "Nie jestem pewien, czy ta walidacja ma sens, ponieważ próba przypisania nieprawidłowej wartości do statusu wywołuje argument ArgumentError" – ctc
Może nie być spokrewniony, ale zdecydowanie ciekawy odczyt: [Używanie Enum jako abstrakcji podczas testowania] (http://craftingruby.com/posts/2015/07/07/using-enumerable-as-abstraction-when-testing.html) – onebree