heartcombo--simple_form/test/support/models.rb

101 lines
2.4 KiB
Ruby
Raw Normal View History

2009-12-08 13:48:31 +00:00
require 'ostruct'
2009-12-11 02:18:14 +00:00
Column = Struct.new(:name, :type, :limit)
Association = Struct.new(:klass, :name, :macro, :options)
2009-12-11 02:18:14 +00:00
class Company < Struct.new(:id, :name)
def self.all(options={})
all = (1..3).map{|i| Company.new(i, "Company #{i}")}
2010-01-10 10:02:15 +00:00
return [all.first] if options[:conditions].present?
return [all.last] if options[:order].present?
return all[0..1] if options[:include].present?
return all[1..2] if options[:joins].present?
2009-12-11 02:18:14 +00:00
all
end
2010-01-10 04:12:57 +00:00
2010-01-10 10:02:15 +00:00
def self.merge_conditions(a, b)
(a || {}).merge(b || {})
end
2010-01-10 04:12:57 +00:00
def new_record?
false
end
end
2010-01-10 10:02:15 +00:00
class Tag < Company
def self.all(options={})
(1..3).map{|i| Tag.new(i, "Tag #{i}")}
2009-12-08 13:48:31 +00:00
end
end
class User < OpenStruct
# Get rid of deprecation warnings
undef_method :id
2009-12-08 13:48:31 +00:00
2009-12-10 20:03:27 +00:00
def new_record!
@new_record = true
end
2009-12-08 13:48:31 +00:00
def new_record?
2009-12-10 20:03:27 +00:00
@new_record || false
2009-12-08 13:48:31 +00:00
end
2010-01-10 04:12:57 +00:00
def company_attributes=(foo)
end
2009-12-08 13:48:31 +00:00
def column_for_attribute(attribute)
column_type, limit = case attribute.to_sym
when :name, :status, :password then [:string, 100]
2009-12-08 13:48:31 +00:00
when :description then :text
when :age then :integer
when :credit_limit then [:decimal, 15]
2009-12-08 13:48:31 +00:00
when :active then :boolean
when :born_at then :date
when :delivery_time then :time
when :created_at then :datetime
when :updated_at then :timestamp
end
2009-12-11 02:18:14 +00:00
Column.new(attribute, column_type, limit)
2009-12-08 13:48:31 +00:00
end
2009-12-10 20:03:27 +00:00
def self.human_attribute_name(attribute)
2009-12-08 13:48:31 +00:00
case attribute
when 'name'
'Super User Name!'
when 'description'
'User Description!'
when 'company'
'Company Human Name!'
else
attribute.humanize
2009-12-08 13:48:31 +00:00
end
end
2009-12-08 18:38:03 +00:00
2009-12-10 20:03:27 +00:00
def self.human_name
"User"
end
2009-12-11 02:18:14 +00:00
def self.reflect_on_association(association)
case association
when :company
Association.new(Company, association, :belongs_to, {})
when :tags
Association.new(Tag, association, :has_many, {})
when :first_company
Association.new(Company, association, :has_one, {})
2010-01-10 10:02:15 +00:00
when :special_company
Association.new(Company, association, :belongs_to, { :conditions => { :id => 1 } })
end
2009-12-11 02:18:14 +00:00
end
2009-12-08 18:38:03 +00:00
def errors
@errors ||= {
:name => "can't be blank",
:description => "must be longer than 15 characters",
:age => ["is not a number", "must be greater than 18"],
2009-12-11 03:18:56 +00:00
:company => "company must be present",
:company_id => "must be valid"
2009-12-08 18:38:03 +00:00
}
end
2009-12-08 13:48:31 +00:00
end