summaryrefslogtreecommitdiff
path: root/spec/validators/variable_duplicates_validator_spec.rb
blob: acc47ff225ff984babd01ef4626642c91d657333 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe VariableDuplicatesValidator do
  let(:validator) { described_class.new(attributes: [:variables], **options) }

  describe '#validate_each' do
    let(:project) { build(:project) }

    subject { validator.validate_each(project, :variables, project.variables) }

    context 'with no scope' do
      let(:options) { {} }
      let(:variables) { build_list(:ci_variable, 2, project: project) }

      before do
        project.variables << variables
      end

      it 'does not have any errors' do
        subject

        expect(project.errors.empty?).to be true
      end

      context 'with duplicates' do
        before do
          project.variables.build(key: variables.first.key, value: 'dummy_value')
        end

        it 'has a duplicate key error' do
          subject

          expect(project.errors).to have_key(:variables)
        end
      end
    end

    context 'with a scope attribute' do
      let(:options) { { scope: :environment_scope } }
      let(:first_variable) { build(:ci_variable, key: 'test_key', environment_scope: '*', project: project) }
      let(:second_variable) { build(:ci_variable, key: 'test_key', environment_scope: 'prod', project: project) }

      before do
        project.variables << first_variable
        project.variables << second_variable
      end

      it 'does not have any errors' do
        subject

        expect(project.errors.empty?).to be true
      end

      context 'with duplicates' do
        before do
          project.variables.build(key: second_variable.key, value: 'dummy_value', environment_scope: second_variable.environment_scope)
        end

        it 'has a duplicate key error' do
          subject

          expect(project.errors).to have_key(:variables)
        end
      end
    end
  end
end