Sha256: 3b99547bec44d7b54b191649a08eac100a86ef02ae9b5b84c80ea185afdea567

Contents?: true

Size: 1.89 KB

Versions: 12

Compression:

Stored size: 1.89 KB

Contents

require File.expand_path('../../spec_helper', __FILE__)
require File.join(FIXTURE_PATH, 'more', 'cat')
require File.join(FIXTURE_PATH, 'more', 'person')
require File.join(FIXTURE_PATH, 'more', 'card')

class Driver < CouchRest::Model::Base
  use_database TEST_SERVER.default_database
  # You have to add a casted_by accessor if you want to reach a casted extended doc parent
  attr_accessor :casted_by
  
  property :name
end

class Car < CouchRest::Model::Base
  use_database TEST_SERVER.default_database
  
  property :name
  property :driver, Driver
end

describe "casting an extended document" do
  
  before(:each) do
    @driver = Driver.new(:name => 'Matt')
    @car    = Car.new(:name => 'Renault 306', :driver => @driver)
  end

  it "should retain all properties of the casted attribute" do
    @car.driver.should == @driver
  end
  
  it "should let the casted document know who casted it" do
    @car.driver.casted_by.should == @car
  end
end

describe "assigning a value to casted attribute after initializing an object" do

  before(:each) do
    @car    = Car.new(:name => 'Renault 306')
    @driver = Driver.new(:name => 'Matt')
  end
  
  it "should not create an empty casted object" do
    @car.driver.should be_nil
  end
  
  it "should let you assign the value" do
    @car.driver = @driver
    @car.driver.name.should == 'Matt'
  end
  
  it "should cast attribute" do
    @car.driver = JSON.parse(@driver.to_json)
    @car.driver.should be_instance_of(Driver)
  end

end

describe "casting a model from parsed JSON" do

  before(:each) do
    @driver = Driver.new(:name => 'Matt')
    @car    = Car.new(:name => 'Renault 306', :driver => @driver)
    @new_car = Car.new(JSON.parse(@car.to_json))
  end

  it "should cast casted attribute" do
    @new_car.driver.should be_instance_of(Driver)
  end
  
  it "should retain all properties of the casted attribute" do
    @new_car.driver.should == @driver
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
couchrest_model-1.1.0.rc1 spec/couchrest/casted_spec.rb
couchrest_model-1.1.0.beta5 spec/couchrest/casted_spec.rb
couchrest_model-1.1.0.beta4 spec/couchrest/casted_spec.rb
couchrest_model-1.1.0.beta3 spec/couchrest/casted_spec.rb
couchrest_model-1.1.0.beta2 spec/couchrest/casted_spec.rb
couchrest_model-1.1.0.beta spec/couchrest/casted_spec.rb
couchrest_model-1.0.0 spec/couchrest/casted_spec.rb
couchrest_model-radiant-1.0.0 spec/couchrest/casted_spec.rb
couchrest_model-1.0.0.beta8 spec/couchrest/casted_spec.rb
couchrest_model_thought-1.0.0.beta9 spec/couchrest/casted_spec.rb
couchrest_model_thought-1.0.0.beta8 spec/couchrest/casted_spec.rb
couchrest_model-1.0.0.beta7 spec/couchrest/casted_spec.rb