aasm/spec/models/guardian.rb

59 lines
2.0 KiB
Ruby
Raw Normal View History

2014-01-24 10:12:43 +00:00
class Guardian
include AASM
def inner_guard(options={})
end
2014-01-24 10:12:43 +00:00
aasm do
state :alpha, :initial => true
state :beta
event :use_one_guard_that_succeeds do
transitions :from => :alpha, :to => :beta, :guard => :succeed
end
event :use_one_guard_that_fails do
transitions :from => :alpha, :to => :beta, :guard => :fail
end
2014-01-24 11:02:22 +00:00
event :use_proc_guard_with_params do
transitions :from => :alpha, :to => :beta, :guard => Proc.new { |options={}| inner_guard(options) }
end
event :use_lambda_guard_with_params do
transitions :from => :alpha, :to => :beta, :guard => lambda { |options={}| inner_guard(options) }
end
2014-01-24 10:12:43 +00:00
event :use_guards_that_succeed do
transitions :from => :alpha, :to => :beta, :guards => [:succeed, :another_succeed]
end
event :use_guards_where_the_first_fails do
transitions :from => :alpha, :to => :beta, :guards => [:succeed, :fail]
end
event :use_guards_where_the_second_fails do
transitions :from => :alpha, :to => :beta, :guards => [:fail, :succeed]
end
2014-01-24 11:02:22 +00:00
event :use_event_guards_that_succeed, :guards => [:succeed, :another_succeed] do
transitions :from => :alpha, :to => :beta
end
event :use_event_and_transition_guards_that_succeed, :guards => [:succeed, :another_succeed] do
transitions :from => :alpha, :to => :beta, :guards => [:more_succeed]
end
event :use_event_guards_where_the_first_fails, :guards => [:succeed, :fail] do
transitions :from => :alpha, :to => :beta
end
event :use_event_guards_where_the_second_fails, :guards => [:fail, :succeed] do
transitions :from => :alpha, :to => :beta, :guard => :another_succeed
end
event :use_event_and_transition_guards_where_third_fails, :guards => [:succeed, :another_succeed] do
transitions :from => :alpha, :to => :beta, :guards => [:fail]
end
2014-01-24 10:12:43 +00:00
end
2014-01-24 11:02:22 +00:00
def fail; false; end
2014-01-24 10:12:43 +00:00
2014-01-24 11:02:22 +00:00
def succeed; true; end
def another_succeed; true; end
def more_succeed; true; end
2014-01-24 10:12:43 +00:00
end