summaryrefslogtreecommitdiff
path: root/spec/models/integrations/open_project_spec.rb
blob: 789911acae8c1e0b80e90bd664f19ac55de60213 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Integrations::OpenProject do
  describe 'Validations' do
    context 'when integration is active' do
      before do
        subject.active = true
      end

      it { is_expected.to validate_presence_of(:url) }
      it { is_expected.to validate_presence_of(:token) }
      it { is_expected.to validate_presence_of(:project_identifier_code) }

      it_behaves_like 'issue tracker integration URL attribute', :url
      it_behaves_like 'issue tracker integration URL attribute', :api_url
    end

    context 'when integration is inactive' do
      before do
        subject.active = false
      end

      it { is_expected.not_to validate_presence_of(:url) }
      it { is_expected.not_to validate_presence_of(:token) }
      it { is_expected.not_to validate_presence_of(:project_identifier_code) }
    end
  end
end