Ich habe ein Problem, bei dem eine :if-Klausel innerhalb einer ActiveRecord-Validierung nicht beachtet wird.
Mein Modell hat ein ip_port-Attribut, das ich als vorhanden, numerisch und innerhalb eines bestimmten Bereichs validiere. Ich versuche sicherzustellen, dass jede Bedingung nur einen Fehler erzeugt. Ich möchte nicht, dass ein leeres Attribut dazu führt, dass dem Benutzer drei Meldungen angezeigt werden, die besagen, dass es nicht vorhanden, erforderlich und nicht numerisch ist.
Dies ist mein derzeitiges Modell
class Arc < ActiveRecord::Base
attr_accessible :ip_port
validates_presence_of :ip_port
validates_numericality_of :ip_port, :allow_blank => true
validates_inclusion_of :ip_port, :in => 1025..65535, :allow_blank => true,
:if => Proc.new {|arc| arc.ip_port.to_s.match(/^\d+$/) }
end
Und das sind meine Modellspezifikation und ihre Ergebnisse.
describe Arc do
it "should be valid with valid attributes" do
Arc.new(:ip_port => 1200).should be_valid
end
it "should be invalid with a non-numberic port" do
Arc.new(:ip_port => "test").should be_invalid
end
it "should be invalid with a missing port" do
Arc.new(:ip_port => nil).should be_invalid
end
it "should have one error with a missing port" do
a = Arc.new(:ip_port => nil)
a.should be_invalid
a.should have(1).errors_on(:ip_port)
end
it "should have one error with a non-numeric port" do
a = Arc.new(:ip_port => "test")
a.should be_invalid
a.should have(1).errors_on(:ip_port)
end
it "should have one error with a numeric port outside the range" do
a = Arc.new(:ip_port => 999)
a.should be_invalid
a.should have(1).errors_on(:ip_port)
end
end
Arc
- should be valid with valid attributes
- should be invalid with a non-numberic port
- should be invalid with a missing port
- should have one error with a missing port
- should have one error with a non-numeric port (FAILED - 1)
- should have one error with a numeric port outside the range
1)
'Arc should have one error with a non-numeric port' FAILED
expected 1 errors on :ip\_port, got 2
./spec/models/arc\_spec.rb:21:
Finished in 0.108245 seconds
Meine Frage ist, warum ich zwei Fehler für einen nicht-numerischen ip_port erhalte, wenn die :if-Klausel verhindern sollte, dass die validates_inclusion von aufgerufen wird.
Dies ist Rails 2.3.5 mit Ruby 1.8.7 auf OS/X 10.6.3