Sha256: ac1187f026b1aed1d7ccb78fea69bd700b75410bbad6d1fc5a43a7da7f8e6278

Contents?: true

Size: 1.3 KB

Versions: 21

Compression:

Stored size: 1.3 KB

Contents

require 'test_helper'
require 'models'

class BelongsToPolymorphicProxyTest < Test::Unit::TestCase
  def setup
    clear_all_collections
  end
  
  should "default to nil" do
    status = Status.new
    status.target.should be_nil
  end

  should "be able to replace the association" do
    status = Status.new
    project = Project.new(:name => "mongomapper")
    status.target = project
    status.save.should be_true

    from_db = Status.find(status.id)
    from_db.target.should_not be_nil
    from_db.target_id.should == project.id
    from_db.target_type.should == "Project"
    from_db.target.name.should == "mongomapper"
  end

  should "unset the association" do
    status = Status.new
    project = Project.new(:name => "mongomapper")
    status.target = project
    status.save.should be_true

    from_db = Status.find(status.id)
    from_db.target = nil
    from_db.target_type.should be_nil
    from_db.target_id.should be_nil
    from_db.target.should be_nil
  end
  
  context "association id set but document not found" do
    setup do
      @status = Status.new
      project = Project.new(:name => "mongomapper")
      @status.target = project
      @status.save.should be_true
      project.destroy
    end

    should "return nil instead of raising error" do
      @status.target.should be_nil
    end
  end
end

Version data entries

21 entries across 21 versions & 6 rubygems

Version Path
crnixon-mongomapper-0.3.4 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
djsun-mongomapper-0.3.3 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
djsun-mongomapper-0.3.5 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.10 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.11 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.12 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.13 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.14 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.15 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.3 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.4.1 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.4 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.5 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.6 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.7 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
hashrocket-mongomapper-0.3.8 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
jnunemaker-mongomapper-0.3.3 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
jnunemaker-mongomapper-0.3.4 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
jnunemaker-mongomapper-0.3.5 test/functional/associations/test_belongs_to_polymorphic_proxy.rb
nirvdrum-mongomapper-0.3.3 test/functional/associations/test_belongs_to_polymorphic_proxy.rb