Welcome to mirror list, hosted at ThFree Co, Russian Federation.

recalculate_project_authorizations_with_min_max_user_id_spec.rb « background_migration « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1ba1607b89a59239c75c226b0cedd8f58c39234 (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'

RSpec.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