summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/templates/themekit_gitlab_ci_yaml_spec.rb
blob: 607db33f61a0d32a85d04cba62e77a6436143b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'ThemeKit.gitlab-ci.yml', feature_category: :continuous_integration do
  before do
    allow(Gitlab::Template::GitlabCiYmlTemplate).to receive(:excluded_patterns).and_return([])
  end

  subject(:template) { Gitlab::Template::GitlabCiYmlTemplate.find('ThemeKit') }

  describe 'the created pipeline' do
    let(:pipeline_ref) { project.default_branch_or_main }
    let(:project) { create(:project, :custom_repo, files: { 'README.md' => '' }) }
    let(:user) { project.first_owner }
    let(:service) { Ci::CreatePipelineService.new(project, user, ref: pipeline_ref) }
    let(:pipeline) { service.execute(:push).payload }
    let(:build_names) { pipeline.builds.pluck(:name) }

    before do
      stub_ci_pipeline_yaml_file(template.content)
    end

    context 'on the default branch' do
      it 'only creates staging deploy', :aggregate_failures do
        expect(pipeline.errors).to be_empty
        expect(build_names).to include('staging')
        expect(build_names).not_to include('production')
      end
    end

    context 'on a tag' do
      let(:pipeline_ref) { '1.0' }

      before do
        project.repository.add_tag(user, pipeline_ref, project.default_branch_or_main)
      end

      it 'only creates a production deploy', :aggregate_failures do
        expect(pipeline.errors).to be_empty
        expect(build_names).to include('production')
        expect(build_names).not_to include('staging')
      end
    end

    context 'outside of the default branch' do
      let(:pipeline_ref) { 'patch-1' }

      before do
        project.repository.create_branch(pipeline_ref, project.default_branch_or_main)
      end

      it 'has no jobs' do
        expect(build_names).to be_empty
        expect(pipeline.errors.full_messages).to match_array(['Pipeline will not run for the selected trigger. ' \
          'The rules configuration prevented any jobs from being added to the pipeline.'])
      end
    end
  end
end