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

links_spec.rb « assets « release « entry « config « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d12e8d966ab4a49fefd17d06acff5a7ab0ee270f (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
# frozen_string_literal: true

require 'spec_helper'

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

  describe 'validation' do
    context 'when entry config value is correct' do
      let(:config) do
        [
          {
            name: "cool-app.zip",
            url: "http://my.awesome.download.site/1.0-$CI_COMMIT_SHORT_SHA.zip"
          },
          {
            name: "cool-app.exe",
            url: "http://my.awesome.download.site/1.0-$CI_COMMIT_SHORT_SHA.exe"
          }
        ]
      end

      describe '#value' do
        it 'returns links configuration' do
          expect(entry.value).to eq config
        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
      describe '#errors' do
        context 'when value of link is invalid' do
          let(:config) { { link: 'xyz' } }

          it 'reports error' do
            expect(entry.errors)
              .to include 'links config should be a array'
          end
        end

        context 'when value of links link is empty' do
          let(:config) { { link: [] } }

          it 'reports error' do
            expect(entry.errors)
              .to include "links config should be a array"
          end
        end

        context 'when there is an unknown key present' do
          let(:config) { { test: 100 } }

          it 'reports error' do
            expect(entry.errors)
              .to include 'links config should be a array'
          end
        end
      end
    end
  end
end