summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/background_migration/recalculate_project_authorizations_with_min_max_user_id_spec.rb
blob: edb46efad7c108afadb44ae71e550c9c5833921d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::BackgroundMigration::RecalculateProjectAuthorizationsWithMinMaxUserId, schema: 20200204113224 do
  let(:users_table) { table(:users) }
  let(:min) { 1 }
  let(:max) { 5 }

  before do
    min.upto(max) do |i|
      users_table.create!(id: i, email: "user#{i}@example.com", projects_limit: 10)
    end
  end

  describe '#perform' do
    it 'initializes Users::RefreshAuthorizedProjectsService with correct users' do
      min.upto(max) do |i|
        user = User.find(i)
        expect(Users::RefreshAuthorizedProjectsService).to(
          receive(:new).with(user, any_args).and_call_original)
      end

      described_class.new.perform(min, max)
    end

    it 'executes Users::RefreshAuthorizedProjectsService' do
      expected_call_counts = max - min + 1

      service = instance_double(Users::RefreshAuthorizedProjectsService)
      expect(Users::RefreshAuthorizedProjectsService).to(
        receive(:new).exactly(expected_call_counts).times.and_return(service))
      expect(service).to receive(:execute).exactly(expected_call_counts).times

      described_class.new.perform(min, max)
    end
  end
end