Methods
S
T
Instance Public methods
setup()
# File activeresource/test/cases/base/load_test.rb, line 36
def setup
  @matz  = { :id => 1, :name => 'Matz' }

  @first_address = { :address => { :id => 1, :street => '12345 Street' } }
  @addresses = [@first_address, { :address => { :id => 2, :street => '67890 Street' } }]
  @addresses_from_json = { :street_addresses => @addresses }
  @addresses_from_json_single = { :street_addresses => [ @first_address ] }

  @deep  = { :id => 1, :street => {
    :id => 1, :state => { :id => 1, :name => 'Oregon',
      :notable_rivers => [
        { :id => 1, :name => 'Willamette' },
        { :id => 2, :name => 'Columbia', :rafted_by => @matz }],
      :postal_codes => [ 97018, 1234567890 ],
      :dates => [ Time.now ],
      :votes => [ true, false, true ],
      :places => [ "Columbia City", "Unknown" ]}}}


  # List of books formated as [{timestamp_of_publication => name}, ...]
  @books = {:books => [
      {1009839600 => "Ruby in a Nutshell"},
      {1199142000 => "The Ruby Programming Language"}
    ]}

  @books_date = {:books => [
      {Time.at(1009839600) => "Ruby in a Nutshell"},
      {Time.at(1199142000) => "The Ruby Programming Language"}
  ]}
  @person = Person.new
end
test_after_load_attributes_are_accessible()
# File activeresource/test/cases/base/load_test.rb, line 86
def test_after_load_attributes_are_accessible
  assert_equal Hash.new, @person.attributes
  assert_equal @matz.stringify_keys, @person.load(@matz).attributes
  assert_equal @matz[:name], @person.attributes['name']
end
test_after_load_attributes_are_accessible_via_indifferent_access()
# File activeresource/test/cases/base/load_test.rb, line 92
def test_after_load_attributes_are_accessible_via_indifferent_access
  assert_equal Hash.new, @person.attributes
  assert_equal @matz.stringify_keys, @person.load(@matz).attributes
  assert_equal @matz[:name], @person.attributes['name']
  assert_equal @matz[:name], @person.attributes[:name]
end
test_load_collection_with_existing_resource()
# File activeresource/test/cases/base/load_test.rb, line 111
def test_load_collection_with_existing_resource
  addresses = @person.load(@addresses_from_json).street_addresses
  assert_kind_of Array, addresses
  addresses.each { |address| assert_kind_of StreetAddress, address }
  assert_equal @addresses.map { |a| a[:address].stringify_keys }, addresses.map(&:attributes)
end
test_load_collection_with_single_existing_resource()
# File activeresource/test/cases/base/load_test.rb, line 127
def test_load_collection_with_single_existing_resource
  addresses = @person.load(@addresses_from_json_single).street_addresses
  assert_kind_of Array, addresses
  addresses.each { |address| assert_kind_of StreetAddress, address }
  assert_equal [ @first_address.values.first ].map(&:stringify_keys), addresses.map(&:attributes)
end
test_load_collection_with_single_unknown_resource()
# File activeresource/test/cases/base/load_test.rb, line 134
def test_load_collection_with_single_unknown_resource
  Person.__send__(:remove_const, :Address) if Person.const_defined?(:Address)
  assert !Person.const_defined?(:Address), "Address shouldn't exist until autocreated"
  addresses = silence_warnings { @person.load(:addresses => [ @first_address ]).addresses }
  assert Person.const_defined?(:Address), "Address should have been autocreated"
  addresses.each { |address| assert_kind_of Person::Address, address }
  assert_equal [ @first_address.values.first ].map(&:stringify_keys), addresses.map(&:attributes)
end
test_load_collection_with_unknown_resource()
# File activeresource/test/cases/base/load_test.rb, line 118
def test_load_collection_with_unknown_resource
  Person.__send__(:remove_const, :Address) if Person.const_defined?(:Address)
  assert !Person.const_defined?(:Address), "Address shouldn't exist until autocreated"
  addresses = silence_warnings { @person.load(:addresses => @addresses).addresses }
  assert Person.const_defined?(:Address), "Address should have been autocreated"
  addresses.each { |address| assert_kind_of Person::Address, address }
  assert_equal @addresses.map { |a| a[:address].stringify_keys }, addresses.map(&:attributes)
end
test_load_expects_hash()
# File activeresource/test/cases/base/load_test.rb, line 76
def test_load_expects_hash
  assert_raise(ArgumentError) { @person.load nil }
  assert_raise(ArgumentError) { @person.load '<person id="1"/>' }
end
test_load_hash_with_dates_as_keys()
# File activeresource/test/cases/base/load_test.rb, line 72
def test_load_hash_with_dates_as_keys
  assert_nothing_raised{@person.load(@books_date)}
end
test_load_hash_with_integers_as_keys()
# File activeresource/test/cases/base/load_test.rb, line 68
def test_load_hash_with_integers_as_keys
  assert_nothing_raised{@person.load(@books)}
end
test_load_one_with_existing_resource()
# File activeresource/test/cases/base/load_test.rb, line 99
def test_load_one_with_existing_resource
  address = @person.load(:street_address => @first_address.values.first).street_address
  assert_kind_of StreetAddress, address
  assert_equal @first_address.values.first.stringify_keys, address.attributes
end
test_load_one_with_unknown_resource()
# File activeresource/test/cases/base/load_test.rb, line 105
def test_load_one_with_unknown_resource
  address = silence_warnings { @person.load(@first_address).address }
  assert_kind_of Person::Address, address
  assert_equal @first_address.values.first.stringify_keys, address.attributes
end
test_load_simple_hash()
# File activeresource/test/cases/base/load_test.rb, line 81
def test_load_simple_hash
  assert_equal Hash.new, @person.attributes
  assert_equal @matz.stringify_keys, @person.load(@matz).attributes
end
test_nested_collections_in_different_levels_of_namespaces()
# File activeresource/test/cases/base/load_test.rb, line 195
def test_nested_collections_in_different_levels_of_namespaces
  n = Highrise::Deeply::Nested::TestDifferentLevels::Note.new(:comments => [{ :name => "1" }])
  assert_kind_of Highrise::Deeply::Nested::Comment, n.comments.first
end
test_nested_collections_within_deeply_nested_namespace()
# File activeresource/test/cases/base/load_test.rb, line 190
def test_nested_collections_within_deeply_nested_namespace
  n = Highrise::Deeply::Nested::Note.new(:comments => [{ :name => "1" }])
  assert_kind_of Highrise::Deeply::Nested::Comment, n.comments.first
end
test_nested_collections_within_the_same_namespace()
# File activeresource/test/cases/base/load_test.rb, line 185
def test_nested_collections_within_the_same_namespace
  n = Highrise::Note.new(:comments => [{ :comment => { :name => "1" } }])
  assert_kind_of Highrise::Comment, n.comments.first
end
test_recursively_loaded_collections()
# File activeresource/test/cases/base/load_test.rb, line 143
def test_recursively_loaded_collections
  person = @person.load(@deep)
  assert_equal @deep[:id], person.id

  street = person.street
  assert_kind_of Person::Street, street
  assert_equal @deep[:street][:id], street.id

  state = street.state
  assert_kind_of Person::Street::State, state
  assert_equal @deep[:street][:state][:id], state.id

  rivers = state.notable_rivers
  assert_kind_of Array, rivers
  assert_kind_of Person::Street::State::NotableRiver, rivers.first
  assert_equal @deep[:street][:state][:notable_rivers].first[:id], rivers.first.id
  assert_equal @matz[:id], rivers.last.rafted_by.id

  postal_codes = state.postal_codes
  assert_kind_of Array, postal_codes
  assert_equal 2, postal_codes.size
  assert_kind_of Fixnum, postal_codes.first
  assert_equal @deep[:street][:state][:postal_codes].first, postal_codes.first
  assert_kind_of Numeric, postal_codes.last
  assert_equal @deep[:street][:state][:postal_codes].last, postal_codes.last

  places = state.places
  assert_kind_of Array, places
  assert_kind_of String, places.first
  assert_equal @deep[:street][:state][:places].first, places.first

  dates = state.dates
  assert_kind_of Array, dates
  assert_kind_of Time, dates.first
  assert_equal @deep[:street][:state][:dates].first, dates.first

  votes = state.votes
  assert_kind_of Array, votes
  assert_kind_of TrueClass, votes.first
  assert_equal @deep[:street][:state][:votes].first, votes.first
end