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

default_spec.rb « arguments « input « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc0cee6ac4e18fd9d07fb93eea10ec08b618418d (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
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Gitlab::Ci::Input::Arguments::Default, feature_category: :pipeline_composition do
  it 'returns a user-provided value if it is present' do
    argument = described_class.new(:website, { default: 'https://gitlab.com' }, 'https://example.gitlab.com')

    expect(argument).to be_valid
    expect(argument.to_value).to eq 'https://example.gitlab.com'
    expect(argument.to_hash).to eq({ website: 'https://example.gitlab.com' })
  end

  it 'returns an empty value if user-provider input is empty' do
    argument = described_class.new(:website, { default: 'https://gitlab.com' }, '')

    expect(argument).to be_valid
    expect(argument.to_value).to eq ''
    expect(argument.to_hash).to eq({ website: '' })
  end

  it 'returns a default value if user-provider one is unknown' do
    argument = described_class.new(:website, { default: 'https://gitlab.com' }, nil)

    expect(argument).to be_valid
    expect(argument.to_value).to eq 'https://gitlab.com'
    expect(argument.to_hash).to eq({ website: 'https://gitlab.com' })
  end

  it 'returns an error if the default argument has not been recognized' do
    argument = described_class.new(:website, { default: ['gitlab.com'] }, 'abc')

    expect(argument).not_to be_valid
  end

  it 'returns an error if the argument has not been fabricated correctly' do
    argument = described_class.new(:website, { required: 'https://gitlab.com' }, 'https://example.gitlab.com')

    expect(argument).not_to be_valid
  end

  describe '.matches?' do
    it 'matches specs with default configuration' do
      expect(described_class.matches?({ default: 'abc' })).to be true
    end

    it 'does not match specs different configuration keyword' do
      expect(described_class.matches?({ options: %w[a b] })).to be false
      expect(described_class.matches?('a b c')).to be false
      expect(described_class.matches?(%w[default a])).to be false
    end
  end
end