# encoding: utf-8 require 'spec_helper' describe ContentInstance do before(:each) do Site.any_instance.stubs(:create_default_pages!).returns(true) @content_type = Factory.build(:content_type) @content_type.content_custom_fields.build :label => 'Title', :kind => 'String' @content_type.content_custom_fields.build :label => 'Description', :kind => 'Text' @content_type.content_custom_fields.build :label => 'Visible ?', :kind => 'Text', :_alias => 'visible' @content_type.highlighted_field_name = 'custom_field_1' end describe '#validation' do it 'is valid' do build_content.should be_valid end ## Validations ## it 'requires the presence of title' do content = build_content :title => nil content.should_not be_valid content.errors[:title].should == ["can't be blank"] end it 'requires the presence of the permalink (_slug)' do content = build_content :title => nil content.should_not be_valid content.errors[:_slug].should == ["can't be blank"] end it 'has an unique permalink' do build_content.save; @content_type = ContentType.find(@content_type._id) content = build_content content.should_not be_valid content.errors[:_slug].should == ["is already taken"] end end describe '#permalink' do before(:each) do @content = build_content end it 'has a default value based on the highlighted field' do @content.send(:set_slug) @content._permalink.should == 'locomotive' end it 'is empty if no value for the highlighted field is provided' do @content.title = nil; @content.send(:set_slug) @content._permalink.should be_nil end it 'includes dashes instead of white spaces' do @content.title = 'my content instance'; @content.send(:set_slug) @content._permalink.should == 'my-content-instance' end it 'removes accentued characters' do @content.title = "une chèvre dans le pré"; @content.send(:set_slug) @content._permalink.should == 'une-chevre-dans-le-pre' end it 'removes dots' do @content.title = "my.test"; @content.send(:set_slug) @content._permalink.should == 'my-test' end end describe '#visibility' do before(:each) do @content = build_content end it 'is visible by default' do @content._visible?.should be_true @content.visible?.should be_true end it 'can be visible even if it is nil' do @content.visible = nil @content.send(:set_visibility) @content.visible?.should be_true end it 'can not be visible' do @content.visible = false @content.send(:set_visibility) @content.visible?.should be_false end end describe '#requirements' do it 'has public access to the highlighted field value' do build_content.highlighted_field_value.should == 'Locomotive' end end describe '#api' do before(:each) do @account_1 = Factory.build('admin user', :id => fake_bson_id('1')) @account_2 = Factory.build('frenchy user', :id => fake_bson_id('2')) @content_type.api_enabled = true @content_type.api_accounts = ['', @account_1.id, @account_2.id] Site.any_instance.stubs(:accounts).returns([@account_1, @account_2]) @content = build_content end it 'does not send email notifications if the api is disabled' do @content_type.api_enabled = false Admin::Notifications.expects(:new_content_instance).never @content.save end it 'does not send email notifications if no api accounts' do @content_type.api_accounts = nil Admin::Notifications.expects(:new_content_instance).never @content.save end it 'sends email notifications when a new instance is created' do Admin::Notifications.expects(:new_content_instance).with(@account_1, @content).returns(mock('mailer', :deliver => true)) Admin::Notifications.expects(:new_content_instance).with(@account_2, @content).returns(mock('mailer', :deliver => true)) @content.save end end describe '#site' do it 'delegates to the content type' do @content_type.expects(:site) build_content.site end end def build_content(options = {}) @content_type.contents.build({ :title => 'Locomotive', :description => 'Lorem ipsum....' }.merge(options)) end def fake_bson_id(id) BSON::ObjectId(id.to_s.rjust(24, '0')) end end