require 'spec_helper' describe NetSuite::Records::CustomRecord do let(:record) { NetSuite::Records::CustomRecord.new } it 'has all the right fields' do [ :allow_attachments, :allow_inline_editing, :allow_numbering_override, :allow_quick_search, :created, :custom_record_id, :description, :disclaimer, :enabl_email_merge, :enable_numbering, :include_name, :is_available_offline, :is_inactive, :is_numbering_updateable, :is_ordered, :last_modified, :name, :numbering_current_number, :numbering_init, :numbering_min_digits, :numbering_prefix, :numbering_suffix, :record_name, :script_id, :show_creation_date, :show_creation_date_on_list, :show_id, :show_last_modified, :show_last_modified_on_list, :show_notes, :show_owner, :show_owner_allow_change, :show_owner_on_list, :use_permissions ].each do |field| record.should have_field(field) end end it 'has all the right record_refs' do [ :custom_form, :owner ].each do |record_ref| record.should have_record_ref(record_ref) end end describe '#custom_field_list' do it 'can be set from attributes' do attributes = { :custom_field => { :amount => 10, :internal_id => 'custfield_amount' } } record.custom_field_list = attributes record.custom_field_list.should be_kind_of(NetSuite::Records::CustomFieldList) record.custom_field_list.custom_fields.length.should eql(1) record.custom_field_list.custfield_amount.attributes[:amount].should eq(10) end it 'can be set from a CustomFieldList object' do custom_field_list = NetSuite::Records::CustomFieldList.new record.custom_field_list = custom_field_list record.custom_field_list.should eql(custom_field_list) end end describe '.get' do context 'when the response is successful' do let(:response) { NetSuite::Response.new(:success => true, :body => { :allow_quick_search => true }) } it 'returns a Customer instance populated with the data from the response object' do NetSuite::Actions::Get.should_receive(:call). with([NetSuite::Records::CustomRecord, {:external_id => 1, :type_id => nil, :custom => true}], {}). and_return(response) customer = NetSuite::Records::CustomRecord.get(:external_id => 1) customer.should be_kind_of(NetSuite::Records::CustomRecord) customer.allow_quick_search.should be_truthy end end context 'when the response is unsuccessful' do let(:response) { NetSuite::Response.new(:success => false, :body => {}) } it 'raises a RecordNotFound exception' do NetSuite::Actions::Get.should_receive(:call). with([NetSuite::Records::CustomRecord, {:external_id => 1, :type_id => nil, :custom => true}], {}). and_return(response) lambda { NetSuite::Records::CustomRecord.get(:external_id => 1) }.should raise_error(NetSuite::RecordNotFound, /NetSuite::Records::CustomRecord with OPTIONS=(.*) could not be found/) end end end describe '#add' do context 'when the response is successful' do let(:response) { NetSuite::Response.new(:success => true, :body => { :internal_id => '1' }) } it 'returns true' do NetSuite::Actions::Add.should_receive(:call). with([record], {}). and_return(response) record.add.should be_truthy end end context 'when the response is unsuccessful' do let(:response) { NetSuite::Response.new(:success => false, :body => {}) } it 'returns false' do NetSuite::Actions::Add.should_receive(:call). with([record], {}). and_return(response) record.add.should be_falsey end end end describe '#delete' do context 'when the response is successful' do let(:response) { NetSuite::Response.new(:success => true, :body => { :internal_id => '1' }) } it 'returns true' do NetSuite::Actions::Delete.should_receive(:call). with([record, { :custom => true }], {}). and_return(response) record.delete.should be_truthy end end context 'when the response is unsuccessful' do let(:response) { NetSuite::Response.new(:success => false, :body => {}) } it 'returns false' do NetSuite::Actions::Delete.should_receive(:call). with([record, { :custom => true }], {}). and_return(response) record.delete.should be_falsey end end end end