/spec/lib/gitlab/ci/templates/Jobs/build_gitlab_ci_yaml_spec.rb
https://gitlab.com/klml/gitlab-ee · Ruby · 58 lines · 45 code · 12 blank · 1 comment · 0 complexity · d6ed045228ae3725f5d6f388f7c88ec9 MD5 · raw file
- # frozen_string_literal: true
- require 'spec_helper'
- RSpec.describe 'Jobs/Build.gitlab-ci.yml' do
- subject(:template) { Gitlab::Template::GitlabCiYmlTemplate.find('Jobs/Build') }
- describe 'the created pipeline' do
- let_it_be(:project) { create(:project, :repository) }
- let_it_be(:user) { project.owner }
- let(:default_branch) { 'master' }
- let(:pipeline_ref) { default_branch }
- let(:service) { Ci::CreatePipelineService.new(project, user, ref: pipeline_ref) }
- let(:pipeline) { service.execute!(:push) }
- let(:build_names) { pipeline.builds.pluck(:name) }
- before do
- stub_ci_pipeline_yaml_file(template.content)
- allow_any_instance_of(Ci::BuildScheduleWorker).to receive(:perform).and_return(true)
- allow(project).to receive(:default_branch).and_return(default_branch)
- end
- context 'on master' do
- it 'creates the build job' do
- expect(build_names).to contain_exactly('build')
- end
- end
- context 'on another branch' do
- let(:pipeline_ref) { 'feature' }
- it 'creates the build job' do
- expect(build_names).to contain_exactly('build')
- end
- end
- context 'on tag' do
- let(:pipeline_ref) { 'v1.0.0' }
- it 'creates the build job' do
- expect(pipeline).to be_tag
- expect(build_names).to contain_exactly('build')
- end
- end
- context 'on merge request' do
- let(:service) { MergeRequests::CreatePipelineService.new(project: project, current_user: user) }
- let(:merge_request) { create(:merge_request, :simple, source_project: project) }
- let(:pipeline) { service.execute(merge_request) }
- it 'has no jobs' do
- expect(pipeline).to be_merge_request_event
- expect(build_names).to be_empty
- end
- end
- end
- end