debian-mirror-gitlab/spec/lib/gitlab/ci/config/entry/configurable_spec.rb

54 lines
1.2 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
require 'spec_helper'
describe Gitlab::Ci::Config::Entry::Configurable do
2018-03-17 18:26:18 +05:30
let(:entry) do
Class.new(Gitlab::Ci::Config::Entry::Node) do
include Gitlab::Ci::Config::Entry::Configurable
end
2017-08-17 22:00:37 +05:30
end
describe 'validations' do
2018-03-17 18:26:18 +05:30
context 'when entry is a hash' do
let(:instance) { entry.new(key: 'value') }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
it 'correctly validates an instance' do
expect(instance).to be_valid
2017-08-17 22:00:37 +05:30
end
end
2018-03-17 18:26:18 +05:30
context 'when entry is not a hash' do
2017-08-17 22:00:37 +05:30
let(:instance) { entry.new('ls') }
2018-03-17 18:26:18 +05:30
it 'invalidates the instance' do
expect(instance).not_to be_valid
2017-08-17 22:00:37 +05:30
end
end
end
describe 'configured entries' do
before do
entry.class_eval do
entry :object, Object, description: 'test object'
end
end
describe '.nodes' do
it 'has valid nodes' do
expect(entry.nodes).to include :object
end
it 'creates a node factory' do
expect(entry.nodes[:object])
.to be_an_instance_of Gitlab::Ci::Config::Entry::Factory
end
it 'returns a duplicated factory object' do
first_factory = entry.nodes[:object]
second_factory = entry.nodes[:object]
expect(first_factory).not_to be_equal(second_factory)
end
end
end
end