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

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

module Gitlab
  module Ci
    module Reports
      class CoverageReport
        attr_reader :files

        def initialize
          @files = {}
        end

        def empty?
          @files.empty?
        end

        def pick(keys)
          coverage_files = files.select do |key|
            keys.include?(key)
          end

          { files: coverage_files }
        end

        def add_file(name, line_coverage)
          if files[name].present?
            line_coverage.each { |line, hits| combine_lines(name, line, hits) }

          else
            files[name] = line_coverage
          end
        end

        private

        def combine_lines(name, line, hits)
          if files[name][line].present?
            files[name][line] += hits

          else
            files[name][line] = hits
          end
        end
      end
    end
  end
end