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 ) }
2021-06-08 01:23:25 +05:30
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' }
2022-04-01 21:47:47 +05:30
let ( :variables ) { project . predefined_variables }
let ( :context_params ) { { project : project , sha : '123456' , user : user , variables : variables } }
2019-12-21 20:55:43 +05:30
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
2022-06-21 17:19:12 +05:30
image : 'image:1.0'
2018-12-05 23:21:45 +05:30
HEREDOC
end
2022-06-21 17:19:12 +05:30
subject ( :mapper ) { described_class . new ( values , context ) }
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
2022-06-21 17:19:12 +05:30
subject ( :process ) { mapper . 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 ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
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 } ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
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
2022-06-21 17:19:12 +05:30
{ include : remote_url , image : 'image:1.0' }
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 } ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
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 } ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
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
2022-04-01 21:47:47 +05:30
let ( :variables ) { Gitlab :: Ci :: Variables :: Collection . new ( [ { 'key' = > 'GITLAB_TOKEN' , 'value' = > 'secret-file' , 'masked' = > true } ] ) }
let ( :local_file ) { 'secret-file.yml' }
let ( :remote_url ) { 'https://gitlab.com/secret-file.yml' }
2019-02-15 15:39:39 +05:30
let ( :values ) do
{ include : { 'local' = > local_file , 'remote' = > remote_url } ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2019-02-15 15:39:39 +05:30
end
it 'returns ambigious specification error' do
2022-04-01 21:47:47 +05:30
expect { subject } . to raise_error ( described_class :: AmbigiousSpecificationError , 'Include `{"local":"xxxxxxxxxxx.yml","remote":"https://gitlab.com/xxxxxxxxxxx.yml"}` needs to match exactly one accessor!' )
2018-12-05 23:21:45 +05:30
end
end
2021-01-29 00:20:46 +05:30
context " when the key is a project's file " do
let ( :values ) do
{ include : { project : project . full_path , file : local_file } ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2021-01-29 00:20:46 +05:30
end
it 'returns File instances' do
expect ( subject ) . to contain_exactly (
an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Project ) )
end
end
context " when the key is project's files " do
let ( :values ) do
{ include : { project : project . full_path , file : [ local_file , 'another_file_path.yml' ] } ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2021-01-29 00:20:46 +05:30
end
it 'returns two File instances' do
expect ( subject ) . to contain_exactly (
an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Project ) ,
an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Project ) )
end
end
2018-12-05 23:21:45 +05:30
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 ] ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
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 } ] ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
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 } ] ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
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
{
2022-06-21 17:19:12 +05:30
image : 'image:1.0'
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
2022-04-04 11:22:00 +05:30
context " when duplicate 'include's are defined " do
let ( :values ) do
{ include : [
{ 'local' = > local_file } ,
{ 'local' = > local_file }
] ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2022-04-04 11:22:00 +05:30
end
it 'does not raise an exception' do
2022-06-21 17:19:12 +05:30
expect { process } . not_to raise_error
end
it 'has expanset with one' do
process
expect ( mapper . expandset . size ) . to eq ( 1 )
2022-04-04 11:22:00 +05:30
end
end
context 'when passing max number of files' do
2019-07-07 11:18:12 +05:30
let ( :values ) do
{ include : [
{ 'local' = > local_file } ,
2022-04-04 11:22:00 +05:30
{ 'remote' = > remote_url }
2019-07-07 11:18:12 +05:30
] ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2019-07-07 11:18:12 +05:30
end
2022-04-04 11:22:00 +05:30
before do
stub_const ( " #{ described_class } ::MAX_INCLUDES " , 2 )
2019-07-07 11:18:12 +05:30
end
2021-01-29 00:20:46 +05:30
2022-04-04 11:22:00 +05:30
it 'does not raise an exception' do
expect { subject } . not_to raise_error
2021-01-29 00:20:46 +05:30
end
2019-07-07 11:18:12 +05:30
end
context " when too many 'includes' are defined " do
let ( :values ) do
{ include : [
{ 'local' = > local_file } ,
{ 'remote' = > remote_url }
] ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
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
2021-01-29 00:20:46 +05:30
context 'when including multiple files from a project' do
let ( :values ) do
{ include : { project : project . full_path , file : [ local_file , 'another_file_path.yml' ] } }
end
it 'raises an exception' do
expect { subject } . to raise_error ( described_class :: TooManyIncludesError )
end
end
2019-07-07 11:18:12 +05:30
end
2021-03-08 18:12:59 +05:30
context " when 'include' section uses project variable " do
let ( :full_local_file_path ) { '$CI_PROJECT_PATH' + local_file }
context 'when local file is included as a single string' do
let ( :values ) do
{ include : full_local_file_path }
end
it 'expands the variable' , :aggregate_failures do
expect ( subject [ 0 ] . location ) . to eq ( project . full_path + local_file )
expect ( subject ) . to contain_exactly ( an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Local ) )
end
end
context 'when remote file is included as a single string' do
let ( :remote_url ) { " #{ Gitlab . config . gitlab . url } /radio/.gitlab-ci.yml " }
let ( :values ) do
{ include : '$CI_SERVER_URL/radio/.gitlab-ci.yml' }
end
it 'expands the variable' , :aggregate_failures do
expect ( subject [ 0 ] . location ) . to eq ( remote_url )
expect ( subject ) . to contain_exactly ( an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Remote ) )
end
end
context 'defined as an array' do
let ( :values ) do
{ include : [ full_local_file_path , remote_url ] ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2021-03-08 18:12:59 +05:30
end
it 'expands the variable' do
expect ( subject [ 0 ] . location ) . to eq ( project . full_path + local_file )
expect ( subject [ 1 ] . location ) . to eq ( remote_url )
end
end
context 'defined as an array of hashes' do
let ( :values ) do
{ include : [ { local : full_local_file_path } , { remote : remote_url } ] ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2021-03-08 18:12:59 +05:30
end
it 'expands the variable' do
expect ( subject [ 0 ] . location ) . to eq ( project . full_path + local_file )
expect ( subject [ 1 ] . location ) . to eq ( remote_url )
end
end
context 'local file hash' do
let ( :values ) do
{ include : { 'local' = > full_local_file_path } }
end
it 'expands the variable' do
expect ( subject [ 0 ] . location ) . to eq ( project . full_path + local_file )
end
end
context 'project name' do
let ( :values ) do
{ include : { project : '$CI_PROJECT_PATH' , file : local_file } ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2021-03-08 18:12:59 +05:30
end
it 'expands the variable' , :aggregate_failures do
expect ( subject [ 0 ] . project_name ) . to eq ( project . full_path )
expect ( subject ) . to contain_exactly ( an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Project ) )
end
end
context 'with multiple files' do
let ( :values ) do
{ include : { project : project . full_path , file : [ full_local_file_path , 'another_file_path.yml' ] } ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2021-03-08 18:12:59 +05:30
end
it 'expands the variable' do
expect ( subject [ 0 ] . location ) . to eq ( project . full_path + local_file )
expect ( subject [ 1 ] . location ) . to eq ( 'another_file_path.yml' )
end
end
context 'when include variable has an unsupported type for variable expansion' do
let ( :values ) do
{ include : { project : project . id , file : local_file } ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2021-03-08 18:12:59 +05:30
end
it 'does not invoke expansion for the variable' , :aggregate_failures do
expect ( ExpandVariables ) . not_to receive ( :expand ) . with ( project . id , context_params [ :variables ] )
expect { subject } . to raise_error ( described_class :: AmbigiousSpecificationError )
end
end
end
2021-04-29 21:17:54 +05:30
context 'when local file path has wildcard' do
let ( :project ) { create ( :project , :repository ) }
let ( :values ) do
{ include : 'myfolder/*.yml' }
end
before do
allow_next_instance_of ( Repository ) do | repository |
allow ( repository ) . to receive ( :search_files_by_wildcard_path ) . with ( 'myfolder/*.yml' , '123456' ) do
[ 'myfolder/file1.yml' , 'myfolder/file2.yml' ]
end
end
end
it 'includes the matched local files' do
expect ( subject ) . to contain_exactly ( an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Local ) ,
an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Local ) )
expect ( subject . map ( & :location ) ) . to contain_exactly ( 'myfolder/file1.yml' , 'myfolder/file2.yml' )
end
2021-10-27 15:23:28 +05:30
end
context " when 'include' has rules " do
let ( :values ) do
{ include : [ { remote : remote_url } ,
{ local : local_file , rules : [ { if : " $CI_PROJECT_ID == ' #{ project_id } ' " } ] } ] ,
2022-06-21 17:19:12 +05:30
image : 'image:1.0' }
2021-10-27 15:23:28 +05:30
end
2021-04-29 21:17:54 +05:30
2021-10-27 15:23:28 +05:30
context 'when the rules matches' do
let ( :project_id ) { project . id }
it 'includes the file' do
expect ( subject ) . to contain_exactly ( an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Remote ) ,
an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Local ) )
2021-04-29 21:17:54 +05:30
end
2021-10-27 15:23:28 +05:30
end
context 'when the rules does not match' do
let ( :project_id ) { non_existing_record_id }
it 'does not include the file' do
expect ( subject ) . to contain_exactly ( an_instance_of ( Gitlab :: Ci :: Config :: External :: File :: Remote ) )
end
2021-04-29 21:17:54 +05:30
end
end
2022-06-21 17:19:12 +05:30
context " when locations are same after masking variables " do
let ( :variables ) do
Gitlab :: Ci :: Variables :: Collection . new ( [
{ 'key' = > 'GITLAB_TOKEN' , 'value' = > 'secret-file1' , 'masked' = > true } ,
{ 'key' = > 'GITLAB_TOKEN' , 'value' = > 'secret-file2' , 'masked' = > true }
] )
end
let ( :values ) do
{ include : [
{ 'local' = > 'hello/secret-file1.yml' } ,
{ 'local' = > 'hello/secret-file2.yml' }
] ,
image : 'ruby:2.7' }
end
it 'has expanset with two' do
process
expect ( mapper . expandset . size ) . to eq ( 2 )
end
end
2018-12-05 23:21:45 +05:30
end
end