debian-mirror-gitlab/spec/lib/gitlab/ci/config/external/mapper_spec.rb

185 lines
5.1 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Ci::Config::External::Mapper do
2019-06-05 12:25:43 +05:30
include StubRequests
2020-04-08 14:13:33 +05:30
let_it_be(:project) { create(:project, :repository) }
let_it_be(:user) { create(:user) }
2019-02-15 15:39:39 +05:30
let(:local_file) { '/lib/gitlab/ci/templates/non-existent-file.yml' }
2019-12-04 20:38:33 +05:30
let(:remote_url) { 'https://gitlab.com/gitlab-org/gitlab-foss/blob/1234/.gitlab-ci-1.yml' }
2019-02-15 15:39:39 +05:30
let(:template_file) { 'Auto-DevOps.gitlab-ci.yml' }
2019-12-21 20:55:43 +05:30
let(:context_params) { { project: project, sha: '123456', user: user } }
let(:context) { Gitlab::Ci::Config::External::Context.new(**context_params) }
2019-02-15 15:39:39 +05:30
2018-12-05 23:21:45 +05:30
let(:file_content) do
<<~HEREDOC
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7'
2018-12-05 23:21:45 +05:30
HEREDOC
end
2019-02-15 15:39:39 +05:30
before do
2019-06-05 12:25:43 +05:30
stub_full_request(remote_url).to_return(body: file_content)
2019-12-21 20:55:43 +05:30
2020-01-01 13:55:28 +05:30
allow_next_instance_of(Gitlab::Ci::Config::External::Context) do |instance|
allow(instance).to receive(:check_execution_time!)
end
2019-02-15 15:39:39 +05:30
end
2018-12-05 23:21:45 +05:30
describe '#process' do
2019-12-21 20:55:43 +05:30
subject { described_class.new(values, context).process }
2018-12-05 23:21:45 +05:30
2019-02-15 15:39:39 +05:30
context "when single 'include' keyword is defined" do
2018-12-05 23:21:45 +05:30
context 'when the string is a local file' do
let(:values) do
2019-02-15 15:39:39 +05:30
{ include: local_file,
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2019-02-15 15:39:39 +05:30
end
it 'returns File instances' do
expect(subject).to contain_exactly(
an_instance_of(Gitlab::Ci::Config::External::File::Local))
2018-12-05 23:21:45 +05:30
end
2019-02-15 15:39:39 +05:30
end
2018-12-05 23:21:45 +05:30
2019-02-15 15:39:39 +05:30
context 'when the key is a local file hash' do
let(:values) do
{ include: { 'local' => local_file },
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2018-12-05 23:21:45 +05:30
end
it 'returns File instances' do
2019-02-15 15:39:39 +05:30
expect(subject).to contain_exactly(
an_instance_of(Gitlab::Ci::Config::External::File::Local))
2018-12-05 23:21:45 +05:30
end
end
context 'when the string is a remote file' do
let(:values) do
2020-04-22 19:07:51 +05:30
{ include: remote_url, image: 'ruby:2.7' }
2019-02-15 15:39:39 +05:30
end
it 'returns File instances' do
expect(subject).to contain_exactly(
an_instance_of(Gitlab::Ci::Config::External::File::Remote))
end
end
context 'when the key is a remote file hash' do
let(:values) do
{ include: { 'remote' => remote_url },
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2018-12-05 23:21:45 +05:30
end
2019-02-15 15:39:39 +05:30
it 'returns File instances' do
expect(subject).to contain_exactly(
an_instance_of(Gitlab::Ci::Config::External::File::Remote))
2018-12-05 23:21:45 +05:30
end
2019-02-15 15:39:39 +05:30
end
2018-12-05 23:21:45 +05:30
2019-02-15 15:39:39 +05:30
context 'when the key is a template file hash' do
let(:values) do
{ include: { 'template' => template_file },
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2018-12-05 23:21:45 +05:30
end
it 'returns File instances' do
2019-02-15 15:39:39 +05:30
expect(subject).to contain_exactly(
an_instance_of(Gitlab::Ci::Config::External::File::Template))
end
end
context 'when the key is a hash of file and remote' do
let(:values) do
{ include: { 'local' => local_file, 'remote' => remote_url },
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2019-02-15 15:39:39 +05:30
end
it 'returns ambigious specification error' do
expect { subject }.to raise_error(described_class::AmbigiousSpecificationError)
2018-12-05 23:21:45 +05:30
end
end
end
context "when 'include' is defined as an array" do
let(:values) do
2019-02-15 15:39:39 +05:30
{ include: [remote_url, local_file],
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2018-12-05 23:21:45 +05:30
end
2019-02-15 15:39:39 +05:30
it 'returns Files instances' do
expect(subject).to all(respond_to(:valid?))
expect(subject).to all(respond_to(:content))
2018-12-05 23:21:45 +05:30
end
2019-02-15 15:39:39 +05:30
end
2018-12-05 23:21:45 +05:30
2019-02-15 15:39:39 +05:30
context "when 'include' is defined as an array of hashes" do
let(:values) do
{ include: [{ remote: remote_url }, { local: local_file }],
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2018-12-05 23:21:45 +05:30
end
it 'returns Files instances' do
expect(subject).to all(respond_to(:valid?))
expect(subject).to all(respond_to(:content))
end
2019-02-15 15:39:39 +05:30
context 'when it has ambigious match' do
let(:values) do
{ include: [{ remote: remote_url, local: local_file }],
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2019-02-15 15:39:39 +05:30
end
it 'returns ambigious specification error' do
expect { subject }.to raise_error(described_class::AmbigiousSpecificationError)
end
end
2018-12-05 23:21:45 +05:30
end
context "when 'include' is not defined" do
let(:values) do
{
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7'
2018-12-05 23:21:45 +05:30
}
end
it 'returns an empty array' do
expect(subject).to be_empty
end
end
2019-07-07 11:18:12 +05:30
context "when duplicate 'include' is defined" do
let(:values) do
{ include: [
{ 'local' => local_file },
{ 'local' => local_file }
],
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2019-07-07 11:18:12 +05:30
end
it 'raises an exception' do
expect { subject }.to raise_error(described_class::DuplicateIncludesError)
end
end
context "when too many 'includes' are defined" do
let(:values) do
{ include: [
{ 'local' => local_file },
{ 'remote' => remote_url }
],
2020-04-22 19:07:51 +05:30
image: 'ruby:2.7' }
2019-07-07 11:18:12 +05:30
end
before do
stub_const("#{described_class}::MAX_INCLUDES", 1)
end
it 'raises an exception' do
expect { subject }.to raise_error(described_class::TooManyIncludesError)
end
end
2018-12-05 23:21:45 +05:30
end
end