Skip to content

Commit

Permalink
Fix for validates :timeliness form to add attributes to plugin set
Browse files Browse the repository at this point in the history
  • Loading branch information
adzap committed Aug 23, 2012
1 parent 4fe2245 commit 02fbdc6
Show file tree
Hide file tree
Showing 5 changed files with 114 additions and 52 deletions.
7 changes: 1 addition & 6 deletions lib/validates_timeliness/helper_methods.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,7 @@ def validates_datetime(*attr_names)
end

def timeliness_validation_for(attr_names, type)
options = _merge_attributes(attr_names).merge(:type => type)
if respond_to?(:timeliness_validated_attributes)
self.timeliness_validated_attributes ||= []
self.timeliness_validated_attributes += (attr_names - self.timeliness_validated_attributes)
end
validates_with TimelinessValidator, options
validates_with TimelinessValidator, _merge_attributes(attr_names).merge(:type => type)
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/validates_timeliness/orm/mongoid.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def timeliness_validation_for(attr_names, type)
def timeliness_attribute_type(attr_name)
{
Date => :date,
Time => :datetime,
Time => :time,
DateTime => :datetime
}[fields[attr_name.to_s].type] || :datetime
end
Expand Down
7 changes: 7 additions & 0 deletions lib/validates_timeliness/validator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ def initialize(options)
super
end

def setup(model)
if model.respond_to?(:timeliness_validated_attributes)
model.timeliness_validated_attributes ||= []
model.timeliness_validated_attributes |= @attributes
end
end

def validate_each(record, attr_name, value)
raw_value = attribute_raw_value(record, attr_name) || value
return if (@allow_nil && raw_value.nil?) || (@allow_blank && raw_value.blank?)
Expand Down
142 changes: 97 additions & 45 deletions spec/validates_timeliness/orm/mongoid_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

require 'mongoid'
require 'validates_timeliness/orm/mongoid'

Mongoid.configure do |config|
name = "validates_timeliness_test"
host = "localhost"
Expand All @@ -16,51 +17,51 @@

class Article
include Mongoid::Document
ValidatesTimeliness.use_plugin_parser = true
field :publish_date, :type => Date
field :publish_time, :type => Time
field :publish_datetime, :type => DateTime
validates_date :publish_date, :allow_nil => true
validates_time :publish_time, :allow_nil => true
validates_datetime :publish_datetime, :allow_nil => true
ValidatesTimeliness.use_plugin_parser = false
end

context "validation methods" do
let(:record) { Article.new }

it 'should be defined on the class' do
Article.should respond_to(:validates_date)
Article.should respond_to(:validates_time)
Article.should respond_to(:validates_datetime)
end

it 'should be defined on the instance' do
Article.new.should respond_to(:validates_date)
Article.new.should respond_to(:validates_time)
Article.new.should respond_to(:validates_datetime)
record.should respond_to(:validates_date)
record.should respond_to(:validates_time)
record.should respond_to(:validates_datetime)
end

it "should validate a valid value string" do
r = Article.new
r.publish_date = '2012-01-01'
record.publish_date = '2012-01-01'

r.valid?
r.errors[:publish_date].should be_empty
record.valid?
record.errors[:publish_date].should be_empty
end

it "should validate a invalid value string" do
r = Article.new
r.publish_date = 'not a date'
begin
record.publish_date = 'not a date'
rescue
end

r.valid?
r.errors[:publish_date].should_not be_empty
record.valid?
record.errors[:publish_date].should_not be_empty
end

it "should validate a nil value" do
r = Article.new
r.publish_date = nil
record.publish_date = nil

r.valid?
r.errors[:publish_date].should be_empty
record.valid?
record.errors[:publish_date].should be_empty
end
end

Expand All @@ -69,57 +70,108 @@ class Article
end

context "attribute write method" do
let(:record) { Article.new }

it 'should cache attribute raw value' do
r = Article.new
r.publish_datetime = date_string = '2010-01-01'
r._timeliness_raw_value_for('publish_datetime').should == date_string
record.publish_datetime = date_string = '2010-01-01'

record._timeliness_raw_value_for('publish_datetime').should == date_string
end

context "with plugin parser" do
with_config(:use_plugin_parser, true)

it 'should parse a string value' do
Timeliness::Parser.should_receive(:parse)
r = Article.new
r.publish_date = '2010-01-01'
let(:record) { ArticleWithParser.new }

class ArticleWithParser
include Mongoid::Document
field :publish_date, :type => Date
field :publish_time, :type => Time
field :publish_datetime, :type => DateTime

ValidatesTimeliness.use_plugin_parser = true
validates_date :publish_date, :allow_nil => true
validates_time :publish_time, :allow_nil => true
validates_datetime :publish_datetime, :allow_nil => true
ValidatesTimeliness.use_plugin_parser = false
end

it 'should parse an invalid value as nil' do
Timeliness::Parser.should_receive(:parse)
r = Article.new
r.publish_date = 'bad value'
context "for a date column" do
it 'should parse a string value' do
Timeliness::Parser.should_receive(:parse)

r.publish_date.should be_nil
end
record.publish_date = '2010-01-01'
end

it 'should parse a invalid string value as nil' do
Timeliness::Parser.should_receive(:parse)

record.publish_date = 'not valid'
end

context "for a date column" do
it 'should store a Date value after parsing string' do
r = Article.new
r.publish_date = '2010-01-01'
record.publish_date = '2010-01-01'

r.publish_date.should be_kind_of(Date)
r.publish_date.should == Date.new(2010, 1, 1)
record.publish_date.should be_kind_of(Date)
record.publish_date.should eq Date.new(2010, 1, 1)
end
end

context "for a time column" do
it 'should parse a string value' do
Timeliness::Parser.should_receive(:parse)

record.publish_time = '12:30'
end

it 'should parse a invalid string value as nil' do
Timeliness::Parser.should_receive(:parse)

record.publish_time = 'not valid'
end

it 'should store a Time value after parsing string' do
record.publish_time = '12:30'

record.publish_time.should be_kind_of(Time)
record.publish_time.should eq Time.utc(2000, 1, 1, 12, 30)
end
end

context "for a datetime column" do
with_config(:default_timezone, 'Australia/Melbourne')

it 'should parse a string value' do
Timeliness::Parser.should_receive(:parse)

record.publish_datetime = '2010-01-01 12:00'
end

it 'should parse a invalid string value as nil' do
Timeliness::Parser.should_receive(:parse)

record.publish_datetime = 'not valid'
end

it 'should parse string into DateTime value' do
r = Article.new
r.publish_datetime = '2010-01-01 12:00'
record.publish_datetime = '2010-01-01 12:00'

record.publish_datetime.should be_kind_of(DateTime)
end

pending 'should parse string as current timezone' do
record.publish_datetime = '2010-06-01 12:00'

r.publish_datetime.should be_kind_of(DateTime)
r.publish_datetime.should == DateTime.new(2010,1,1,12,0)
record.publish_datetime.utc_offset.should eq Time.zone.utc_offset
end
end
end
end

context "cached value" do
it 'should be cleared on reload' do
r = Article.create!
r.publish_date = '2010-01-01'
r.reload
r._timeliness_raw_value_for('publish_date').should be_nil
record = Article.create!
record.publish_date = '2010-01-01'
record.reload
record._timeliness_raw_value_for('publish_date').should be_nil
end
end

Expand Down
8 changes: 8 additions & 0 deletions spec/validates_timeliness/validator_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
Person.validates :birth_datetime, :timeliness => {:is_at => Time.mktime(2010,1,1)}
Person.validators.first.type.should == :datetime
end

it 'should add attribute to timeliness attributes set' do
PersonWithShim.timeliness_validated_attributes.should_not include(:birth_time)

PersonWithShim.validates :birth_time, :timeliness => {:is_at => "12:30"}

PersonWithShim.timeliness_validated_attributes.should include(:birth_time)
end
end

it 'should not be valid for value which not valid date or time value' do
Expand Down

0 comments on commit 02fbdc6

Please sign in to comment.