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

required_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: 847272998c2a1837273dc1005ae9de9af14c8c62 (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
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Gitlab::Ci::Input::Arguments::Required, feature_category: :pipeline_composition do
  it 'returns a user-provided value if it is present' do
    argument = described_class.new(:website, nil, '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 value is empty' do
    argument = described_class.new(:website, nil, '')

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

  it 'returns an error if user-provided value is unspecified' do
    argument = described_class.new(:website, nil, nil)

    expect(argument).not_to be_valid
    expect(argument.errors.first).to eq '`website` input: required value has not been provided'
  end

  describe '.matches?' do
    it 'matches specs without configuration' do
      expect(described_class.matches?(nil)).to be true
    end

    it 'matches specs with empty configuration' do
      expect(described_class.matches?('')).to be true
    end

    it 'matches specs with an empty hash configuration' do
      expect(described_class.matches?({})).to be true
    end

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