summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/work_item_hierarchy_restrictions_importer.rb
blob: a1bccb7b7a39e20b01c19fc2ab132cb44860637c (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true

RSpec.shared_examples 'work item hierarchy restrictions importer' do
  shared_examples_for 'adds restrictions' do
    it "adds all restrictions if they don't exist" do
      expect { subject }.to change { WorkItems::HierarchyRestriction.count }.from(0).to(4)
    end
  end

  it_behaves_like 'adds restrictions'

  context 'when base types are missing' do
    before do
      WorkItems::Type.delete_all
    end

    it_behaves_like 'adds restrictions'
  end

  context 'when restrictions already exist' do
    before do
      Gitlab::DatabaseImporters::WorkItems::HierarchyRestrictionsImporter.upsert_restrictions
    end

    it 'upserts restrictions' do
      restriction = WorkItems::HierarchyRestriction.first
      depth = restriction.maximum_depth

      restriction.update!(maximum_depth: depth + 1)

      expect do
        subject
        restriction.reload
      end.to not_change { WorkItems::HierarchyRestriction.count }.and(
        change { restriction.maximum_depth }.from(depth + 1).to(depth)
      )
    end
  end

  context 'when some restrictions are missing' do
    before do
      Gitlab::DatabaseImporters::WorkItems::HierarchyRestrictionsImporter.upsert_restrictions
      WorkItems::HierarchyRestriction.limit(1).delete_all
    end

    it 'inserts missing restrictions and does nothing if some already existed' do
      expect { subject }.to make_queries_matching(/INSERT/, 1).and(
        change { WorkItems::HierarchyRestriction.count }.by(1)
      )
      expect(WorkItems::HierarchyRestriction.count).to eq(4)
    end
  end
end