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

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

require 'spec_helper'

RSpec.describe Integrations::BaseIssueTracker do
  let(:integration) { Integrations::Redmine.new(project: project, active: true, issue_tracker_data: build(:issue_tracker_data)) }

  let_it_be_with_refind(:project) { create :project }

  describe 'Validations' do
    describe 'only one issue tracker per project' do
      before do
        create(:custom_issue_tracker_integration, project: project)
      end

      context 'when integration is changed manually by user' do
        it 'executes the validation' do
          valid = integration.valid?(:manual_change)

          expect(valid).to be_falsey
          expect(integration.errors[:base]).to include(
            'Another issue tracker is already in use. Only one issue tracker service can be active at a time'
          )
        end
      end

      context 'when integration is changed internally' do
        it 'does not execute the validation' do
          expect(integration.valid?).to be_truthy
        end
      end
    end
  end

  describe '#activate_disabled_reason' do
    subject { integration.activate_disabled_reason }

    context 'when there is an existing issue tracker integration' do
      let_it_be(:custom_tracker) { create(:custom_issue_tracker_integration, project: project) }

      it { is_expected.to eq(trackers: [custom_tracker]) }
    end

    context 'when there is no existing issue tracker integration' do
      it { is_expected.to be(nil) }
    end
  end
end