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

maintainers_spec.rb « weightage « danger « tooling « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b99ffe706a477a6813cee88a60ff9577de47d0df (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
# frozen_string_literal: true

require_relative '../../../../tooling/danger/weightage/maintainers'

RSpec.describe Tooling::Danger::Weightage::Maintainers do
  let(:multiplier) { Tooling::Danger::Weightage::CAPACITY_MULTIPLIER }
  let(:regular_maintainer) { double('Teammate', reduced_capacity: false) }
  let(:reduced_capacity_maintainer) { double('Teammate', reduced_capacity: true) }
  let(:maintainers) do
    [
      regular_maintainer,
      reduced_capacity_maintainer
    ]
  end

  let(:maintainer_count) { Tooling::Danger::Weightage::BASE_REVIEWER_WEIGHT * multiplier }
  let(:reduced_capacity_maintainer_count) { Tooling::Danger::Weightage::BASE_REVIEWER_WEIGHT }

  subject(:weighted_maintainers) { described_class.new(maintainers).execute }

  describe '#execute' do
    it 'weights the maintainers overall' do
      expect(weighted_maintainers.count).to eq maintainer_count + reduced_capacity_maintainer_count
    end

    it 'has total count of regular maintainers' do
      expect(weighted_maintainers.count { |r| r.object_id == regular_maintainer.object_id }).to eq maintainer_count
    end

    it 'has count of reduced capacity maintainers' do
      expect(weighted_maintainers.count { |r| r.object_id == reduced_capacity_maintainer.object_id }).to eq reduced_capacity_maintainer_count
    end
  end
end