summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/config/entry/key_spec.rb
blob: a7874447725a2d82df86a9a07b3aed452d72a6b1 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Ci::Config::Entry::Key do
  let(:entry) { described_class.new(config) }

  describe 'validations' do
    shared_examples 'key with slash' do
      it 'is invalid' do
        expect(entry).not_to be_valid
      end

      it 'reports errors with config value' do
        expect(entry.errors).to include 'key config cannot contain the "/" character'
      end
    end

    shared_examples 'key with only dots' do
      it 'is invalid' do
        expect(entry).not_to be_valid
      end

      it 'reports errors with config value' do
        expect(entry.errors).to include 'key config cannot be "." or ".."'
      end
    end

    context 'when entry config value is correct' do
      let(:config) { 'test' }

      describe '#value' do
        it 'returns key value' do
          expect(entry.value).to eq 'test'
        end
      end

      describe '#valid?' do
        it 'is valid' do
          expect(entry).to be_valid
        end
      end
    end

    context 'when entry value is not correct' do
      let(:config) { ['incorrect'] }

      describe '#errors' do
        it 'saves errors' do
          expect(entry.errors)
            .to include 'key config should be a string or symbol'
        end
      end
    end

    context 'when entry value contains slash' do
      let(:config) { 'key/with/some/slashes' }

      it_behaves_like 'key with slash'
    end

    context 'when entry value contains URI encoded slash (%2F)' do
      let(:config) { 'key%2Fwith%2Fsome%2Fslashes' }

      it_behaves_like 'key with slash'
    end

    context 'when entry value is a dot' do
      let(:config) { '.' }

      it_behaves_like 'key with only dots'
    end

    context 'when entry value is two dots' do
      let(:config) { '..' }

      it_behaves_like 'key with only dots'
    end

    context 'when entry value is a URI encoded dot (%2E)' do
      let(:config) { '%2e' }

      it_behaves_like 'key with only dots'
    end

    context 'when entry value is two URI encoded dots (%2E)' do
      let(:config) { '%2E%2e' }

      it_behaves_like 'key with only dots'
    end

    context 'when entry value is one dot and one URI encoded dot' do
      let(:config) { '.%2e' }

      it_behaves_like 'key with only dots'
    end
  end

  describe '.default' do
    it 'returns default key' do
      expect(described_class.default).to eq 'default'
    end
  end
end