28 lines
		
	
	
		
			761 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			761 B
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'spec_helper'
 | 
						|
 | 
						|
describe Gitlab::FogbugzImport::Client do
 | 
						|
  let(:client) { described_class.new(uri: '', token: '') }
 | 
						|
  let(:one_user) { { 'people' => { 'person' => { "ixPerson" => "2", "sFullName" => "James" } } } }
 | 
						|
  let(:two_users) { { 'people' => { 'person' => [one_user, { "ixPerson" => "3" }] } } }
 | 
						|
 | 
						|
  it 'retrieves user_map with one user' do
 | 
						|
    stub_api(one_user)
 | 
						|
 | 
						|
    expect(client.user_map.count).to eq(1)
 | 
						|
  end
 | 
						|
 | 
						|
  it 'retrieves user_map with two users' do
 | 
						|
    stub_api(two_users)
 | 
						|
 | 
						|
    expect(client.user_map.count).to eq(2)
 | 
						|
  end
 | 
						|
 | 
						|
  def stub_api(users)
 | 
						|
    allow_next_instance_of(::Fogbugz::Interface) do |instance|
 | 
						|
      allow(instance).to receive(:command).with(:listPeople).and_return(users)
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |