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

198 lines
5.1 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)
2010-02-06 19:41:35 +00:00
extend ActiveModel::Naming
2010-08-31 08:19:10 +00:00
include ActiveModel::Conversion
2010-02-06 19:41:35 +00:00
2009-12-11 02:18:14 +00:00
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
def persisted?
true
2010-01-10 04:12:57 +00:00
end
end
2010-01-10 10:02:15 +00:00
class Tag < Company
2010-02-06 19:41:35 +00:00
extend ActiveModel::Naming
2010-08-31 08:19:10 +00:00
include ActiveModel::Conversion
2010-02-06 19:41:35 +00:00
def self.all(options={})
(1..3).map{|i| Tag.new(i, "Tag #{i}")}
2009-12-08 13:48:31 +00:00
end
end
2010-08-31 08:19:10 +00:00
class User
2010-02-06 19:41:35 +00:00
extend ActiveModel::Naming
2010-08-31 08:19:10 +00:00
include ActiveModel::Conversion
2010-02-06 19:41:35 +00:00
attr_accessor :id, :name, :company, :company_id, :time_zone, :active, :age,
:description, :created_at, :updated_at, :credit_limit, :password, :url,
:delivery_time, :born_at, :special_company_id, :country, :tags, :tag_ids,
:avatar, :home_picture, :email, :status, :residence_country, :phone_number,
:post_count, :lock_version, :amount, :attempts, :action
2010-08-31 08:19:10 +00:00
def initialize(options={})
options.each do |key, value|
send("#{key}=", value)
end if options
end
2009-12-08 13:48:31 +00:00
2009-12-10 20:03:27 +00:00
def new_record!
@new_record = true
end
def persisted?
!(@new_record || false)
2009-12-08 13:48:31 +00:00
end
2010-02-06 19:41:35 +00:00
def company_attributes=(*)
2010-01-10 04:12:57 +00:00
end
def tags_attributes=(*)
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]
when :description then [:text, 200]
2009-12-08 13:48:31 +00:00
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
when :lock_version then :integer
when :home_picture then :string
when :amount then :integer
when :attempts then :integer
2011-08-31 02:47:55 +00:00
when :action then :string
2009-12-08 13:48:31 +00:00
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-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 ||= begin
hash = Hash.new { |h,k| h[k] = [] }
hash.merge!(
:name => ["can't be blank"],
:description => ["must be longer than 15 characters"],
:age => ["is not a number", "must be greater than 18"],
:company => ["company must be present"],
:company_id => ["must be valid"]
)
end
2009-12-08 18:38:03 +00:00
end
2009-12-08 13:48:31 +00:00
end
class ValidatingUser < User
include ActiveModel::Validations
validates :name, :presence => true
validates :company, :presence => true
validates :age, :presence => true, :if => Proc.new { |user| user.name }
validates :amount, :presence => true, :unless => Proc.new { |user| user.age }
validates :action, :presence => true, :on => :create
validates :credit_limit, :presence => true, :on => :save
validates :phone_number, :presence => true, :on => :update
validates_numericality_of :age,
:greater_than_or_equal_to => 18,
:less_than_or_equal_to => 99,
:only_integer => true
validates_numericality_of :amount,
:greater_than => :min_amount,
:less_than => :max_amount,
:only_integer => true
validates_numericality_of :attempts,
:greater_than_or_equal_to => :min_attempts,
:less_than_or_equal_to => :max_attempts,
:only_integer => true
validates_length_of :name, :maximum => 25
validates_length_of :description, :maximum => 50
def min_amount
10
end
def max_amount
100
end
def min_attempts
1
end
def max_attempts
100
end
end
2010-09-05 16:46:02 +00:00
class OtherValidatingUser < User
include ActiveModel::Validations
validates_numericality_of :age,
:greater_than => 17,
:less_than => 100,
:only_integer => true
validates_numericality_of :amount,
:greater_than => Proc.new { |user| user.age },
:less_than => Proc.new { |user| user.age + 100},
:only_integer => true
validates_numericality_of :attempts,
:greater_than_or_equal_to => Proc.new { |user| user.age },
:less_than_or_equal_to => Proc.new { |user| user.age + 100},
:only_integer => true
validates_format_of :country, :with => /\w+/
2010-09-05 16:46:02 +00:00
end
class HashBackedAuthor < Hash
extend ActiveModel::Naming
include ActiveModel::Conversion
def persisted?; false; end
def name
'hash backed author'
end
end