136 lines
4.6 KiB
Ruby
136 lines
4.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe AssetCollection do
|
|
|
|
# it 'should have a valid factory' do
|
|
# Factory.build(:asset_collection).should be_valid
|
|
# end
|
|
|
|
describe 'custom fields (beta)' do
|
|
|
|
before(:each) do
|
|
@collection = Factory.build(:asset_collection, :site => nil)
|
|
@collection.asset_custom_fields.build :label => 'My Description', :_alias => 'description', :kind => 'Text'
|
|
@collection.asset_custom_fields.build :label => 'Active', :kind => 'Boolean'
|
|
puts "first field index = #{@collection.asset_custom_fields.first._index}"
|
|
end
|
|
|
|
context 'define core attributes' do
|
|
|
|
it 'should have an unique name' do
|
|
@collection.asset_custom_fields.first._name.should == "custom_field_1"
|
|
@collection.asset_custom_fields.last._name.should == "custom_field_2"
|
|
end
|
|
|
|
it 'should have an unique alias' do
|
|
@collection.asset_custom_fields.first._alias.should == "description"
|
|
@collection.asset_custom_fields.last._alias.should == "active"
|
|
end
|
|
|
|
end
|
|
|
|
context 'build and save' do
|
|
|
|
it 'should build asset' do
|
|
asset = @collection.assets.build
|
|
lambda {
|
|
asset.description
|
|
asset.active
|
|
}.should_not raise_error
|
|
end
|
|
|
|
it 'should assign values to newly built asset' do
|
|
asset = build_asset(@collection)
|
|
asset.description.should == 'Lorem ipsum'
|
|
asset.active.should == true
|
|
end
|
|
|
|
it 'should save asset' do
|
|
asset = build_asset(@collection)
|
|
asset.save and @collection.reload
|
|
asset = @collection.assets.first
|
|
asset.description.should == 'Lorem ipsum'
|
|
asset.active.should == true
|
|
end
|
|
|
|
it 'should not modify assets from another collection' do
|
|
asset = build_asset(@collection)
|
|
asset.save and @collection.reload
|
|
new_collection = AssetCollection.new
|
|
lambda { new_collection.assets.build.description }.should raise_error
|
|
end
|
|
|
|
end
|
|
|
|
context 'modifying fields' do
|
|
|
|
before(:each) do
|
|
@asset = build_asset(@collection).save
|
|
end
|
|
|
|
it 'should add new field' do
|
|
@collection.asset_custom_fields.build :label => 'Active at', :name => 'active_at', :kind => 'Date'
|
|
@collection.upsert(false)
|
|
@collection.reload
|
|
asset = @collection.assets.first
|
|
lambda { asset.active_at }.should_not raise_error
|
|
end
|
|
|
|
it 'should remove field' do
|
|
@collection.asset_custom_fields.clear
|
|
@collection.upsert(false)
|
|
@collection.reload
|
|
asset = @collection.assets.first
|
|
lambda { asset.active }.should raise_error
|
|
end
|
|
|
|
it 'should rename field label' do
|
|
@collection.asset_custom_fields.first.label = 'Simple description'
|
|
@collection.asset_custom_fields.first._alias = nil
|
|
@collection.upsert(false)
|
|
@collection.reload
|
|
asset = @collection.assets.first
|
|
asset.simple_description.should == 'Lorem ipsum'
|
|
end
|
|
|
|
end
|
|
|
|
context 'managing from hash' do
|
|
|
|
before(:each) do
|
|
site = Factory.build(:site)
|
|
Site.stubs(:find).returns(site)
|
|
@collection.site = site
|
|
end
|
|
|
|
it 'should add new field' do
|
|
@collection.asset_custom_fields.clear
|
|
@collection.asset_custom_fields.build :label => 'Title'
|
|
@collection.asset_custom_fields_attributes = { '0' => { 'label' => 'A title', 'kind' => 'String' }, '-1' => { 'label' => 'Tagline', 'kind' => 'String' } }
|
|
@collection.asset_custom_fields.size.should == 2
|
|
@collection.asset_custom_fields.first.label.should == 'A title'
|
|
@collection.asset_custom_fields.last.label.should == 'Tagline'
|
|
end
|
|
|
|
it 'should update/remove fields' do
|
|
@collection.asset_custom_fields.build :label => 'Title', :kind => 'String'
|
|
@collection.save; @collection = AssetCollection.first
|
|
@collection.update_attributes(:asset_custom_fields_attributes => {
|
|
'0' => { 'label' => 'My Description', 'kind' => 'Text', '_destroy' => "1" },
|
|
'1' => { 'label' => 'Active', 'kind' => 'Boolean', '_destroy' => "0" },
|
|
'2' => { 'label' => 'My Title !', 'kind' => 'String' }
|
|
})
|
|
@collection = AssetCollection.first
|
|
@collection.asset_custom_fields.size.should == 1
|
|
@collection.asset_custom_fields.first.label.should == 'My Title !'
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
def build_asset(collection)
|
|
collection.assets.build(:name => 'Asset on steroids', :description => 'Lorem ipsum', :active => true)
|
|
end
|
|
|
|
end |