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

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

require 'spec_helper'
require_migration!

RSpec.describe AddWorkItemsRelatedLinkRestrictions, :migration, feature_category: :portfolio_management do
  let!(:restrictions) { table(:work_item_related_link_restrictions) }
  let!(:work_item_types) { table(:work_item_types) }

  # These rules are documented in https://docs.gitlab.com/ee/development/work_items.html#write-a-database-migration
  it 'creates default restrictions' do
    restrictions.delete_all

    reversible_migration do |migration|
      migration.before -> {
        expect(restrictions.count).to eq(0)
      }

      migration.after -> {
        expect(restrictions.count).to eq(34)
      }
    end
  end

  context 'when work item types are missing' do
    before do
      work_item_types.delete_all
    end

    it 'does not add restrictions' do
      expect(Gitlab::AppLogger).to receive(:warn)
        .with('Default WorkItemType records are missing, not adding RelatedLinkRestrictions.')

      expect { migrate! }.not_to change { restrictions.count }
    end
  end
end