74 lines
2.3 KiB
Ruby
74 lines
2.3 KiB
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe Import::OTRS::CustomerUser do
|
||
|
|
||
|
def creates_with(zammad_structure)
|
||
|
expect_organization_lookup
|
||
|
expect(import_object).to receive(:new).with(zammad_structure).and_call_original
|
||
|
expect_any_instance_of(import_object).to receive(:save)
|
||
|
expect_any_instance_of(described_class).to receive(:reset_primary_key_sequence)
|
||
|
start_import_test
|
||
|
end
|
||
|
|
||
|
def updates_with(zammad_structure)
|
||
|
expect_organization_lookup
|
||
|
expect(import_object).to receive(:find_by).and_return(existing_object)
|
||
|
expect(existing_object).to receive(:role_ids).and_return([]).at_least(:once)
|
||
|
expect(existing_object).to receive(:update_attributes).with(zammad_structure)
|
||
|
expect(import_object).not_to receive(:new)
|
||
|
start_import_test
|
||
|
end
|
||
|
|
||
|
def expect_organization_lookup
|
||
|
expect(Import::OTRS::Customer).to receive(:by_customer_id).and_return(organization)
|
||
|
expect(organization).to receive(:id).and_return(organization_id)
|
||
|
end
|
||
|
|
||
|
def load_customer_json(file)
|
||
|
json_fixture("import/otrs/customer_user/#{file}")
|
||
|
end
|
||
|
|
||
|
let(:import_object) { User }
|
||
|
let(:existing_object) { instance_double(import_object) }
|
||
|
let(:start_import_test) { described_class.new(object_structure) }
|
||
|
let(:organization) { instance_double(Organization) }
|
||
|
let(:organization_id) { 1337 }
|
||
|
|
||
|
context 'Customer User' do
|
||
|
|
||
|
let(:object_structure) { load_customer_json('default') }
|
||
|
let(:zammad_structure) {
|
||
|
{
|
||
|
created_by_id: '1',
|
||
|
updated_by_id: '1',
|
||
|
active: true,
|
||
|
source: 'OTRS Import',
|
||
|
organization_id: 1337,
|
||
|
role_ids: [3],
|
||
|
updated_at: '2014-06-07 02:31:31',
|
||
|
created_at: '2014-06-07 02:31:31',
|
||
|
note: '',
|
||
|
email: 'qa100@t-online.de',
|
||
|
firstname: 'test669673',
|
||
|
lastname: 'test669673',
|
||
|
login: 'test669673',
|
||
|
password: 'f8be19af2f25837a31eff9131b0e47a5173290652c04a48b49b86474d48825ee',
|
||
|
phone: nil,
|
||
|
fax: nil,
|
||
|
mobile: nil,
|
||
|
street: nil,
|
||
|
zip: nil,
|
||
|
city: nil,
|
||
|
country: nil
|
||
|
}}
|
||
|
|
||
|
it 'creates' do
|
||
|
creates_with(zammad_structure)
|
||
|
end
|
||
|
|
||
|
it 'updates' do
|
||
|
updates_with(zammad_structure)
|
||
|
end
|
||
|
end
|
||
|
end
|