2008-01-05 08:31:04 -05:00
|
|
|
require 'abstract_unit'
|
2012-03-20 10:11:27 -04:00
|
|
|
require 'active_support/ordered_options'
|
2005-09-30 02:51:42 -04:00
|
|
|
|
2012-01-05 20:12:46 -05:00
|
|
|
class OrderedOptionsTest < ActiveSupport::TestCase
|
2005-09-30 02:51:42 -04:00
|
|
|
def test_usage
|
2008-06-03 14:32:53 -04:00
|
|
|
a = ActiveSupport::OrderedOptions.new
|
2005-09-30 02:51:42 -04:00
|
|
|
|
|
|
|
assert_nil a[:not_set]
|
|
|
|
|
2006-07-08 14:14:49 -04:00
|
|
|
a[:allow_concurreny] = true
|
2005-09-30 02:51:42 -04:00
|
|
|
assert_equal 1, a.size
|
|
|
|
assert a[:allow_concurreny]
|
|
|
|
|
|
|
|
a[:allow_concurreny] = false
|
|
|
|
assert_equal 1, a.size
|
|
|
|
assert !a[:allow_concurreny]
|
|
|
|
|
|
|
|
a["else_where"] = 56
|
|
|
|
assert_equal 2, a.size
|
|
|
|
assert_equal 56, a[:else_where]
|
|
|
|
end
|
2006-07-08 14:14:49 -04:00
|
|
|
|
2005-09-30 03:02:28 -04:00
|
|
|
def test_looping
|
2008-06-03 14:32:53 -04:00
|
|
|
a = ActiveSupport::OrderedOptions.new
|
2005-09-30 03:02:28 -04:00
|
|
|
|
2006-07-08 14:14:49 -04:00
|
|
|
a[:allow_concurreny] = true
|
2005-09-30 03:02:28 -04:00
|
|
|
a["else_where"] = 56
|
2006-07-08 14:14:49 -04:00
|
|
|
|
2005-09-30 03:02:28 -04:00
|
|
|
test = [[:allow_concurreny, true], [:else_where, 56]]
|
2006-07-08 14:14:49 -04:00
|
|
|
|
2005-09-30 03:02:28 -04:00
|
|
|
a.each_with_index do |(key, value), index|
|
|
|
|
assert_equal test[index].first, key
|
|
|
|
assert_equal test[index].last, value
|
|
|
|
end
|
|
|
|
end
|
2006-07-08 14:14:49 -04:00
|
|
|
|
2005-09-30 03:14:37 -04:00
|
|
|
def test_method_access
|
2008-06-03 14:32:53 -04:00
|
|
|
a = ActiveSupport::OrderedOptions.new
|
2005-09-30 03:14:37 -04:00
|
|
|
|
|
|
|
assert_nil a.not_set
|
|
|
|
|
2006-07-08 14:14:49 -04:00
|
|
|
a.allow_concurreny = true
|
2005-09-30 03:14:37 -04:00
|
|
|
assert_equal 1, a.size
|
|
|
|
assert a.allow_concurreny
|
|
|
|
|
|
|
|
a.allow_concurreny = false
|
|
|
|
assert_equal 1, a.size
|
|
|
|
assert !a.allow_concurreny
|
|
|
|
|
|
|
|
a.else_where = 56
|
|
|
|
assert_equal 2, a.size
|
|
|
|
assert_equal 56, a.else_where
|
|
|
|
end
|
2011-03-25 15:48:52 -04:00
|
|
|
|
|
|
|
def test_inheritable_options_continues_lookup_in_parent
|
|
|
|
parent = ActiveSupport::OrderedOptions.new
|
|
|
|
parent[:foo] = true
|
|
|
|
|
|
|
|
child = ActiveSupport::InheritableOptions.new(parent)
|
|
|
|
assert child.foo
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_inheritable_options_can_override_parent
|
|
|
|
parent = ActiveSupport::OrderedOptions.new
|
|
|
|
parent[:foo] = :bar
|
|
|
|
|
|
|
|
child = ActiveSupport::InheritableOptions.new(parent)
|
|
|
|
child[:foo] = :baz
|
|
|
|
|
|
|
|
assert_equal :baz, child.foo
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_inheritable_options_inheritable_copy
|
|
|
|
original = ActiveSupport::InheritableOptions.new
|
|
|
|
copy = original.inheritable_copy
|
|
|
|
|
|
|
|
assert copy.kind_of?(original.class)
|
|
|
|
assert_not_equal copy.object_id, original.object_id
|
|
|
|
end
|
2012-05-05 02:24:57 -04:00
|
|
|
|
|
|
|
def test_introspection
|
|
|
|
a = ActiveSupport::OrderedOptions.new
|
|
|
|
assert a.respond_to?(:blah)
|
|
|
|
assert a.respond_to?(:blah=)
|
|
|
|
assert_equal 42, a.method(:blah=).call(42)
|
|
|
|
assert_equal 42, a.method(:blah).call
|
|
|
|
end
|
2005-09-30 02:51:42 -04:00
|
|
|
end
|