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

jira_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: 1b6ece8531b5b747155572f282315473dff93316 (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
# frozen_string_literal: true

require 'spec_helper'

describe JiraTrackerData do
  let(:service) { create(:jira_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 'jira_issue_transition_id' do
      it { is_expected.to allow_value(nil).for(:jira_issue_transition_id) }
      it { is_expected.to allow_value('1,2,3').for(:jira_issue_transition_id) }
      it { is_expected.to allow_value('1;2;3').for(:jira_issue_transition_id) }
      it { is_expected.not_to allow_value('a,b,cd').for(:jira_issue_transition_id) }
    end

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

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

        it_behaves_like 'issue tracker service URL attribute', :url

        it { is_expected.to validate_presence_of(:url) }
        it { is_expected.to validate_presence_of(:username) }
        it { is_expected.to validate_presence_of(:password) }
      end
    end
  end
end