require 'rails_helper' require 'lib/import/transaction_factory_examples' RSpec::Matchers.define_negated_matcher :not_change, :change RSpec.describe Import::OTRS::StateFactory do it_behaves_like 'Import::TransactionFactory' it 'creates a state backup in the pre_import_hook' do expect(described_class).to receive(:backup) described_class.pre_import_hook([]) end def load_state_json(file) json_fixture("import/otrs/state/#{file}") end it 'updates ObjectManager Ticket state_id and pending_time filter' do states = %w(new open merged pending_reminder pending_auto_close_p pending_auto_close_n pending_auto_close_p closed_successful closed_unsuccessful closed_successful removed) state_backend_param = [] states.each do |state| state_backend_param.push(load_state_json(state)) end ticket_state_id = ::ObjectManager::Attribute.get( object: 'Ticket', name: 'state_id', ) ticket_pending_time = ::ObjectManager::Attribute.get( object: 'Ticket', name: 'pending_time', ) expect { described_class.import(state_backend_param) # sync changes ticket_state_id.reload ticket_pending_time.reload }.to change { ticket_state_id.data_option }.and change { ticket_state_id.screens }.and change { ticket_pending_time.data_option } end it "doesn't update ObjectManager Ticket state_id and pending_time filter in diff import" do ticket_state_id = ::ObjectManager::Attribute.get( object: 'Ticket', name: 'state_id', ) ticket_pending_time = ::ObjectManager::Attribute.get( object: 'Ticket', name: 'pending_time', ) expect(Import::OTRS).to receive(:diff?).and_return(true) expect { described_class.update_attribute_settings # sync changes ticket_state_id.reload ticket_pending_time.reload }.to not_change { ticket_state_id.data_option }.and not_change { ticket_state_id.screens }.and not_change { ticket_pending_time.data_option } end it 'sets default create and update State' do state = ::Ticket::State.first state.default_create = false state.default_follow_up = false state.callback_loop = true state.save expect(Import::OTRS::SysConfigFactory).to receive(:postmaster_default_lookup).with(:state_default_create).and_return(state.name) expect(Import::OTRS::SysConfigFactory).to receive(:postmaster_default_lookup).with(:state_default_follow_up).and_return(state.name) described_class.update_attribute state.reload expect(state.default_create).to be true expect(state.default_follow_up).to be true end it "doesn't set default create and update State in diff import" do state = ::Ticket::State.first state.default_create = false state.default_follow_up = false state.callback_loop = true state.save expect(Import::OTRS).to receive(:diff?).and_return(true) described_class.update_attribute_settings state.reload expect(state.default_create).to be false expect(state.default_follow_up).to be false end end