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: 406d0a80a07b7c77e36b4cdddf1cde0a2dd6f4cf (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
# 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)
                          config = YAML.safe_load_file(config_file, permitted_classes: [Range])
                          config['exclusions']&.values || []
                        else
                          []
                        end
      end
    end
  end
end