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

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

module Gitlab::Ci
  module Badge
    module Coverage
      ##
      # Class that represents a coverage badge template.
      #
      # Template object will be passed to badge.svg.erb template.
      #
      class Template < Badge::Template
        STATUS_COLOR = {
          good: '#4c1',
          acceptable: '#a3c51c',
          medium: '#dfb317',
          low: '#e05d44',
          unknown: '#9f9f9f'
        }.freeze
        COVERAGE_MAX = 100
        COVERAGE_MIN = 0
        MIN_GOOD_DEFAULT = 95
        MIN_ACCEPTABLE_DEFAULT = 90
        MIN_MEDIUM_DEFAULT = 75

        def initialize(badge)
          @status = badge.status
          @min_good = badge.customization.dig(:min_good)
          @min_acceptable = badge.customization.dig(:min_acceptable)
          @min_medium = badge.customization.dig(:min_medium)
          super
        end

        def value_text
          @status ? ("%.2f%%" % @status) : 'unknown'
        end

        def value_width
          @status ? 54 : 58
        end

        def min_good_value
          if @min_good && @min_good.between?(3, COVERAGE_MAX)
            @min_good
          else
            MIN_GOOD_DEFAULT
          end
        end

        def min_acceptable_value
          if @min_acceptable && @min_acceptable.between?(2, min_good_value - 1)
            @min_acceptable
          else
            [MIN_ACCEPTABLE_DEFAULT, (min_good_value - 1)].min
          end
        end

        def min_medium_value
          if @min_medium && @min_medium.between?(1, min_acceptable_value - 1)
            @min_medium
          else
            [MIN_MEDIUM_DEFAULT, (min_acceptable_value - 1)].min
          end
        end

        def value_color
          case @status
          when min_good_value..COVERAGE_MAX then STATUS_COLOR[:good]
          when min_acceptable_value..min_good_value then STATUS_COLOR[:acceptable]
          when min_medium_value..min_acceptable_value then STATUS_COLOR[:medium]
          when COVERAGE_MIN..min_medium_value then STATUS_COLOR[:low]
          else
            STATUS_COLOR[:unknown]
          end
        end
      end
    end
  end
end