1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
  
     | 
    
      # frozen_string_literal: true
require "abstract_unit"
require "active_support/ordered_options"
class OrderedOptionsTest < ActiveSupport::TestCase
  def test_usage
    a = ActiveSupport::OrderedOptions.new
    assert_nil a[:not_set]
    a[:allow_concurrency] = true
    assert_equal 1, a.size
    assert a[:allow_concurrency]
    a[:allow_concurrency] = false
    assert_equal 1, a.size
    assert_not a[:allow_concurrency]
    a["else_where"] = 56
    assert_equal 2, a.size
    assert_equal 56, a[:else_where]
  end
  def test_looping
    a = ActiveSupport::OrderedOptions.new
    a[:allow_concurrency] = true
    a["else_where"] = 56
    test = [[:allow_concurrency, true], [:else_where, 56]]
    a.each_with_index do |(key, value), index|
      assert_equal test[index].first, key
      assert_equal test[index].last, value
    end
  end
  def test_method_access
    a = ActiveSupport::OrderedOptions.new
    assert_nil a.not_set
    a.allow_concurrency = true
    assert_equal 1, a.size
    assert a.allow_concurrency
    a.allow_concurrency = false
    assert_equal 1, a.size
    assert_not a.allow_concurrency
    a.else_where = 56
    assert_equal 2, a.size
    assert_equal 56, a.else_where
  end
  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
  def test_introspection
    a = ActiveSupport::OrderedOptions.new
    assert_respond_to a, :blah
    assert_respond_to a, :blah=
    assert_equal 42, a.method(:blah=).call(42)
    assert_equal 42, a.method(:blah).call
  end
  def test_raises_with_bang
    a = ActiveSupport::OrderedOptions.new
    a[:foo] = :bar
    assert_respond_to a, :foo!
    assert_nothing_raised { a.foo! }
    assert_equal a.foo, a.foo!
    assert_raises(KeyError) do
      a.foo = nil
      a.foo!
    end
    assert_raises(KeyError) { a.non_existing_key! }
  end
  def test_inheritable_options_with_bang
    a = ActiveSupport::InheritableOptions.new(foo: :bar)
    assert_nothing_raised { a.foo! }
    assert_equal a.foo, a.foo!
    assert_raises(KeyError) do
      a.foo = nil
      a.foo!
    end
    assert_raises(KeyError) { a.non_existing_key! }
  end
end
 
     |