2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Gitlab::Ci::Config::Entry::Commands do
|
2016-09-13 17:45:13 +05:30
|
|
|
let(:entry) { described_class.new(config) }
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
context 'when entry config value is an array of strings' do
|
2017-08-17 22:00:37 +05:30
|
|
|
let(:config) { %w(ls pwd) }
|
2016-09-13 17:45:13 +05:30
|
|
|
|
|
|
|
describe '#value' do
|
|
|
|
it 'returns array of strings' do
|
|
|
|
expect(entry.value).to eq config
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#errors' do
|
|
|
|
it 'does not append errors' do
|
|
|
|
expect(entry.errors).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when entry config value is a string' do
|
|
|
|
let(:config) { 'ls' }
|
|
|
|
|
|
|
|
describe '#value' do
|
|
|
|
it 'returns array with single element' do
|
|
|
|
expect(entry.value).to eq ['ls']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#valid?' do
|
|
|
|
it 'is valid' do
|
|
|
|
expect(entry).to be_valid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
context 'when entry config value is array of arrays of strings' do
|
|
|
|
let(:config) { [['ls'], ['pwd', 'echo 1']] }
|
|
|
|
|
|
|
|
describe '#value' do
|
|
|
|
it 'returns array of strings' do
|
|
|
|
expect(entry.value).to eq ['ls', 'pwd', 'echo 1']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#errors' do
|
|
|
|
it 'does not append errors' do
|
|
|
|
expect(entry.errors).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#valid?' do
|
|
|
|
it 'is valid' do
|
|
|
|
expect(entry).to be_valid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when entry config value is array of strings and arrays of strings' do
|
|
|
|
let(:config) { ['ls', ['pwd', 'echo 1']] }
|
|
|
|
|
|
|
|
describe '#value' do
|
|
|
|
it 'returns array of strings' do
|
|
|
|
expect(entry.value).to eq ['ls', 'pwd', 'echo 1']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#errors' do
|
|
|
|
it 'does not append errors' do
|
|
|
|
expect(entry.errors).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#valid?' do
|
|
|
|
it 'is valid' do
|
|
|
|
expect(entry).to be_valid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when entry value is integer' do
|
2016-09-13 17:45:13 +05:30
|
|
|
let(:config) { 1 }
|
|
|
|
|
|
|
|
describe '#errors' do
|
|
|
|
it 'saves errors' do
|
|
|
|
expect(entry.errors)
|
2021-03-11 19:13:27 +05:30
|
|
|
.to include 'commands config should be a string or a nested array of strings up to 10 levels deep'
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when entry value is multi-level nested array' do
|
2021-03-11 19:13:27 +05:30
|
|
|
let(:config) do
|
|
|
|
['ls 0', ['ls 1', ['ls 2', ['ls 3', ['ls 4', ['ls 5', ['ls 6', ['ls 7', ['ls 8', ['ls 9', ['ls 10']]]]]]]]]]]
|
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
describe '#errors' do
|
|
|
|
it 'saves errors' do
|
|
|
|
expect(entry.errors)
|
2021-03-11 19:13:27 +05:30
|
|
|
.to include 'commands config should be a string or a nested array of strings up to 10 levels deep'
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#valid?' do
|
|
|
|
it 'is not valid' do
|
|
|
|
expect(entry).not_to be_valid
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|