Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sast_iac_build_action_spec.rb « ci_configuration « security « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b2a0d22918286d363736c5d2c6113faa60babb6 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Security::CiConfiguration::SastIacBuildAction do
  subject(:result) { described_class.new(auto_devops_enabled, gitlab_ci_content).generate }

  let(:params) { {} }

  shared_examples 'existing .gitlab-ci.yml tests' do
    context 'with existing .gitlab-ci.yml' do
      let(:auto_devops_enabled) { false }

      context 'sast iac has not been included' do
        let(:expected_yml) do
          <<-CI_YML.strip_heredoc
          # You can override the included template(s) by including variable overrides
          # SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
          # Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/#customizing-settings
          # Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings
          # Container Scanning customization: https://docs.gitlab.com/ee/user/application_security/container_scanning/#customizing-the-container-scanning-settings
          # Note that environment variables can be set in several places
          # See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
          stages:
          - test
          - security
          variables:
            RANDOM: make sure this persists
          include:
          - template: existing.yml
          - template: Security/SAST-IaC.latest.gitlab-ci.yml
          CI_YML
        end

        context 'template includes are an array' do
          let(:gitlab_ci_content) do
            { "stages" => %w(test security),
              "variables" => { "RANDOM" => "make sure this persists" },
              "include" => [{ "template" => "existing.yml" }] }
          end

          it 'generates the correct YML' do
            expect(result[:action]).to eq('update')
            expect(result[:content]).to eq(expected_yml)
          end
        end

        context 'template include is not an array' do
          let(:gitlab_ci_content) do
            { "stages" => %w(test security),
              "variables" => { "RANDOM" => "make sure this persists" },
              "include" => { "template" => "existing.yml" } }
          end

          it 'generates the correct YML' do
            expect(result[:action]).to eq('update')
            expect(result[:content]).to eq(expected_yml)
          end
        end
      end

      context 'secret_detection has been included' do
        let(:expected_yml) do
          <<-CI_YML.strip_heredoc
          # You can override the included template(s) by including variable overrides
          # SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
          # Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/#customizing-settings
          # Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings
          # Container Scanning customization: https://docs.gitlab.com/ee/user/application_security/container_scanning/#customizing-the-container-scanning-settings
          # Note that environment variables can be set in several places
          # See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
          stages:
          - test
          variables:
            RANDOM: make sure this persists
          include:
          - template: Security/SAST-IaC.latest.gitlab-ci.yml
          CI_YML
        end

        context 'secret_detection template include are an array' do
          let(:gitlab_ci_content) do
            { "stages" => %w(test),
              "variables" => { "RANDOM" => "make sure this persists" },
              "include" => [{ "template" => "Security/SAST-IaC.latest.gitlab-ci.yml" }] }
          end

          it 'generates the correct YML' do
            expect(result[:action]).to eq('update')
            expect(result[:content]).to eq(expected_yml)
          end
        end

        context 'secret_detection template include is not an array' do
          let(:gitlab_ci_content) do
            { "stages" => %w(test),
              "variables" => { "RANDOM" => "make sure this persists" },
              "include" => { "template" => "Security/SAST-IaC.latest.gitlab-ci.yml" } }
          end

          it 'generates the correct YML' do
            expect(result[:action]).to eq('update')
            expect(result[:content]).to eq(expected_yml)
          end
        end
      end
    end
  end

  context 'with existing .gitlab-ci.yml and when the ci config file configuration was not set' do
    subject(:result) { described_class.new(auto_devops_enabled, gitlab_ci_content).generate }

    it_behaves_like 'existing .gitlab-ci.yml tests'
  end

  context 'with existing .gitlab-ci.yml and when the ci config file configuration was deleted' do
    subject(:result) { described_class.new(auto_devops_enabled, gitlab_ci_content, ci_config_path: '').generate }

    it_behaves_like 'existing .gitlab-ci.yml tests'
  end

  context 'with no .gitlab-ci.yml' do
    let(:gitlab_ci_content) { nil }

    context 'autodevops disabled' do
      let(:auto_devops_enabled) { false }
      let(:expected_yml) do
        <<-CI_YML.strip_heredoc
          # You can override the included template(s) by including variable overrides
          # SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
          # Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/#customizing-settings
          # Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings
          # Container Scanning customization: https://docs.gitlab.com/ee/user/application_security/container_scanning/#customizing-the-container-scanning-settings
          # Note that environment variables can be set in several places
          # See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
          include:
          - template: Security/SAST-IaC.latest.gitlab-ci.yml
        CI_YML
      end

      it 'generates the correct YML' do
        expect(result[:action]).to eq('create')
        expect(result[:content]).to eq(expected_yml)
      end
    end

    context 'with autodevops enabled' do
      let(:auto_devops_enabled) { true }
      let(:expected_yml) do
        <<-CI_YML.strip_heredoc
          # You can override the included template(s) by including variable overrides
          # SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
          # Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/#customizing-settings
          # Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings
          # Container Scanning customization: https://docs.gitlab.com/ee/user/application_security/container_scanning/#customizing-the-container-scanning-settings
          # Note that environment variables can be set in several places
          # See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
          include:
          - template: Auto-DevOps.gitlab-ci.yml
        CI_YML
      end

      before do
        allow_next_instance_of(described_class) do |sast_iac_build_actions|
          allow(sast_iac_build_actions).to receive(:auto_devops_stages).and_return(fast_auto_devops_stages)
        end
      end

      it 'generates the correct YML' do
        expect(result[:action]).to eq('create')
        expect(result[:content]).to eq(expected_yml)
      end
    end
  end

  # stubbing this method allows this spec file to use fast_spec_helper
  def fast_auto_devops_stages
    auto_devops_template = YAML.safe_load( File.read('lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml') )
    auto_devops_template['stages']
  end
end