31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'spec_helper'
 | 
						|
 | 
						|
RSpec.describe Gitlab::Ci::Build::Context::Build do
 | 
						|
  let(:pipeline)        { create(:ci_pipeline) }
 | 
						|
  let(:seed_attributes) { { 'name' => 'some-job' } }
 | 
						|
 | 
						|
  let(:context) { described_class.new(pipeline, seed_attributes) }
 | 
						|
 | 
						|
  describe '#variables' do
 | 
						|
    subject { context.variables.to_hash }
 | 
						|
 | 
						|
    it { expect(context.variables).to be_instance_of(Gitlab::Ci::Variables::Collection) }
 | 
						|
 | 
						|
    it { is_expected.to include('CI_COMMIT_REF_NAME' => 'master') }
 | 
						|
    it { is_expected.to include('CI_PIPELINE_IID'    => pipeline.iid.to_s) }
 | 
						|
    it { is_expected.to include('CI_PROJECT_PATH'    => pipeline.project.full_path) }
 | 
						|
    it { is_expected.to include('CI_JOB_NAME'        => 'some-job') }
 | 
						|
    it { is_expected.to include('CI_BUILD_REF_NAME'  => 'master') }
 | 
						|
 | 
						|
    context 'without passed build-specific attributes' do
 | 
						|
      let(:context) { described_class.new(pipeline) }
 | 
						|
 | 
						|
      it { is_expected.to include('CI_JOB_NAME'       => nil) }
 | 
						|
      it { is_expected.to include('CI_BUILD_REF_NAME' => 'master') }
 | 
						|
      it { is_expected.to include('CI_PROJECT_PATH'   => pipeline.project.full_path) }
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |