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

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

require 'spec_helper'

RSpec.describe Integration do
  let_it_be(:project_1) { create(:project) }
  let_it_be(:project_2) { create(:project) }
  let_it_be(:project_3) { create(:project) }
  let_it_be(:project_4) { create(:project) }
  let_it_be(:instance_integration) { create(:jira_service, :instance) }

  before do
    create(:jira_service, project: project_1, inherit_from_id: instance_integration.id)
    create(:jira_service, project: project_2, inherit_from_id: nil)
    create(:jira_service, group: create(:group), project: nil, inherit_from_id: nil)
    create(:jira_service, project: project_3, inherit_from_id: nil)
    create(:slack_service, project: project_4, inherit_from_id: nil)
  end

  describe '.with_custom_integration_for' do
    it 'returns projects with custom integrations' do
      # We use pagination to verify that the group is excluded from the query
      expect(Project.with_custom_integration_for(instance_integration, 0, 2)).to contain_exactly(project_2, project_3)
      expect(Project.with_custom_integration_for(instance_integration)).to contain_exactly(project_2, project_3)
    end
  end

  describe '.without_integration' do
    it 'returns projects without integration' do
      expect(Project.without_integration(instance_integration)).to contain_exactly(project_4)
    end
  end
end