107 lines
2.3 KiB
Ruby
107 lines
2.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Gitlab::Ci::Config::Entry::Image do
|
|
let(:entry) { described_class.new(config) }
|
|
|
|
context 'when configuration is a string' do
|
|
let(:config) { 'ruby:2.2' }
|
|
|
|
describe '#value' do
|
|
it 'returns image hash' do
|
|
expect(entry.value).to eq({ name: 'ruby:2.2' })
|
|
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
|
|
|
|
describe '#image' do
|
|
it "returns image's name" do
|
|
expect(entry.name).to eq 'ruby:2.2'
|
|
end
|
|
end
|
|
|
|
describe '#entrypoint' do
|
|
it "returns image's entrypoint" do
|
|
expect(entry.entrypoint).to be_nil
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when configuration is a hash' do
|
|
let(:config) { { name: 'ruby:2.2', entrypoint: %w(/bin/sh run) } }
|
|
|
|
describe '#value' do
|
|
it 'returns image hash' 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
|
|
|
|
describe '#valid?' do
|
|
it 'is valid' do
|
|
expect(entry).to be_valid
|
|
end
|
|
end
|
|
|
|
describe '#image' do
|
|
it "returns image's name" do
|
|
expect(entry.name).to eq 'ruby:2.2'
|
|
end
|
|
end
|
|
|
|
describe '#entrypoint' do
|
|
it "returns image's entrypoint" do
|
|
expect(entry.entrypoint).to eq %w(/bin/sh run)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when entry value is not correct' do
|
|
let(:config) { ['ruby:2.2'] }
|
|
|
|
describe '#errors' do
|
|
it 'saves errors' do
|
|
expect(entry.errors)
|
|
.to include 'image config should be a hash or a string'
|
|
end
|
|
end
|
|
|
|
describe '#valid?' do
|
|
it 'is not valid' do
|
|
expect(entry).not_to be_valid
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when unexpected key is specified' do
|
|
let(:config) { { name: 'ruby:2.2', non_existing: 'test' } }
|
|
|
|
describe '#errors' do
|
|
it 'saves errors' do
|
|
expect(entry.errors)
|
|
.to include 'image config contains unknown keys: non_existing'
|
|
end
|
|
end
|
|
|
|
describe '#valid?' do
|
|
it 'is not valid' do
|
|
expect(entry).not_to be_valid
|
|
end
|
|
end
|
|
end
|
|
end
|