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

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

require 'spec_helper'

describe IssueTrackerData do
  let(:service) { create(:custom_issue_tracker_service, active: false, properties: {}) }

  describe 'Associations' do
    it { is_expected.to belong_to :service }
  end

  describe 'Validations' do
    subject { described_class.new(service: service) }

    context 'url validations' do
      context 'when service is inactive' do
        it { is_expected.not_to validate_presence_of(:project_url) }
        it { is_expected.not_to validate_presence_of(:issues_url) }
      end

      context 'when service is active' do
        before do
          service.update(active: true)
        end

        it_behaves_like 'issue tracker service URL attribute', :project_url
        it_behaves_like 'issue tracker service URL attribute', :issues_url
        it_behaves_like 'issue tracker service URL attribute', :new_issue_url

        it { is_expected.to validate_presence_of(:project_url) }
        it { is_expected.to validate_presence_of(:issues_url) }
      end
    end
  end
end