Sha256: 9a78876bf8b4c036660b74082ed8276425817f91a3981ebcaa56f5fb0bd11d1d
Contents?: true
Size: 1.47 KB
Versions: 3
Compression:
Stored size: 1.47 KB
Contents
require 'spec_helper' describe NetSuiteRails::RecordSync::PollManager do include ExampleModels # TODO fake a couple items in the list let(:empty_search_results) { OpenStruct.new(results: [ OpenStruct.new(internal_id: 0) ]) } it "should poll record sync objects" do allow(NetSuite::Records::Customer).to receive(:search).and_return(empty_search_results) StandardRecord.netsuite_poll(import_all: true) expect(NetSuite::Records::Customer).to have_received(:search) end skip "should poll and then get_list on saved search" do # TODO SS enabled record # TODO mock search to return one result # TODO mock out get_list end it "should poll list sync objects" do allow(NetSuite::Records::CustomList).to receive(:get).and_return(OpenStruct.new(custom_value_list: OpenStruct.new(custom_value: []))) StandardList.netsuite_poll(import_all: true) expect(NetSuite::Records::CustomList).to have_received(:get) end it "should sync only available local records" do NetSuiteRails::Configuration.netsuite_push_disabled true StandardRecord.create! netsuite_id: 123 NetSuiteRails::Configuration.netsuite_push_disabled false allow(NetSuite::Records::Customer).to receive(:get_list).and_return([OpenStruct.new(internal_id: 123)]) allow(NetSuiteRails::RecordSync::PollManager).to receive(:process_search_result_item) NetSuiteRails::PollTrigger.update_local_records expect(NetSuite::Records::Customer).to have_received(:get_list) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
netsuite_rails-0.2.2 | spec/models/poll_manager_spec.rb |
netsuite_rails-0.2.1 | spec/models/poll_manager_spec.rb |
netsuite_rails-0.2.0 | spec/models/poll_manager_spec.rb |