2016-08-24 12:49:21 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
describe Gitlab::Ci::Config::Entry::Cache do
|
2016-08-24 12:49:21 +05:30
|
|
|
let(:entry) { described_class.new(config) }
|
|
|
|
|
|
|
|
describe 'validations' do
|
2016-09-29 09:46:39 +05:30
|
|
|
before { entry.compose! }
|
2016-08-24 12:49:21 +05:30
|
|
|
|
|
|
|
context 'when entry config value is correct' do
|
|
|
|
let(:config) do
|
|
|
|
{ key: 'some key',
|
|
|
|
untracked: true,
|
|
|
|
paths: ['some/path/'] }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#value' do
|
|
|
|
it 'returns hash value' do
|
|
|
|
expect(entry.value).to eq config
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#valid?' do
|
|
|
|
it 'is valid' do
|
|
|
|
expect(entry).to be_valid
|
|
|
|
end
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
context 'when key is missing' do
|
|
|
|
let(:config) do
|
|
|
|
{ untracked: true,
|
|
|
|
paths: ['some/path/'] }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#value' do
|
|
|
|
it 'sets key with the default' do
|
|
|
|
expect(entry.value[:key])
|
|
|
|
.to eq(Gitlab::Ci::Config::Entry::Key.default)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when entry value is not correct' do
|
|
|
|
describe '#errors' do
|
|
|
|
context 'when is not a hash' do
|
|
|
|
let(:config) { 'ls' }
|
|
|
|
|
|
|
|
it 'reports errors with config value' do
|
|
|
|
expect(entry.errors)
|
|
|
|
.to include 'cache config should be a hash'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when descendants are invalid' do
|
|
|
|
let(:config) { { key: 1 } }
|
|
|
|
|
|
|
|
it 'reports error with descendants' do
|
|
|
|
expect(entry.errors)
|
|
|
|
.to include 'key config should be a string or symbol'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there is an unknown key present' do
|
|
|
|
let(:config) { { invalid: true } }
|
|
|
|
|
|
|
|
it 'reports error with descendants' do
|
|
|
|
expect(entry.errors)
|
|
|
|
.to include 'cache config contains unknown keys: invalid'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|