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

exclusions.rb « bullet « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f897ff492d9ad650e412f9585295049f3bfc31d4 (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
# frozen_string_literal: true

module Gitlab
  module Bullet
    class Exclusions
      def initialize(config_file = Gitlab.root.join('config/bullet.yml'))
        @config_file = config_file
      end

      def execute
        exclusions.map { |v| v['exclude'] }
      end

      def validate_paths!
        exclusions.each do |properties|
          next unless properties['path_with_method']

          file = properties['exclude'].first

          raise "Bullet: File used by #{config_file} doesn't exist, validate the #{file} exclusion!" unless File.exist?(file)
        end
      end

      private

      attr_reader :config_file

      def exclusions
        @exclusions ||= if File.exist?(config_file)
                          YAML.load_file(config_file)['exclusions']&.values || []
                        else
                          []
                        end
      end
    end
  end
end