summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/templates/templates_spec.rb
blob: fbbd58280a9d9d7071650659c6e3f95b629018e9 (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
# frozen_string_literal: true

require 'spec_helper'

describe "CI YML Templates" do
  ABSTRACT_TEMPLATES = %w[Serverless].freeze

  def self.concrete_templates
    Gitlab::Template::GitlabCiYmlTemplate.all.reject do |template|
      ABSTRACT_TEMPLATES.include?(template.name)
    end
  end

  def self.abstract_templates
    Gitlab::Template::GitlabCiYmlTemplate.all.select do |template|
      ABSTRACT_TEMPLATES.include?(template.name)
    end
  end

  describe 'concrete templates with CI/CD jobs' do
    concrete_templates.each do |template|
      it "#{template.name} template should be valid" do
        expect { Gitlab::Ci::YamlProcessor.new(template.content) }
          .not_to raise_error
      end
    end
  end

  describe 'abstract templates without concrete jobs defined' do
    abstract_templates.each do |template|
      it "#{template.name} template should be valid after being implemented" do
        content = template.content + <<~EOS
          concrete_build_implemented_by_a_user:
            stage: build
            script: do something
        EOS

        expect { Gitlab::Ci::YamlProcessor.new(content) }.not_to raise_error
      end
    end
  end
end