aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/checkable.rb
blob: 03f0526292999647d29506ee9ff4e2c6bd92ffdb (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
module Hbc
  module Checkable
    def errors
      Array(@errors)
    end

    def warnings
      Array(@warnings)
    end

    def add_error(message)
      @errors ||= []
      @errors << message
    end

    def add_warning(message)
      @warnings ||= []
      @warnings << message
    end

    def errors?
      Array(@errors).any?
    end

    def warnings?
      Array(@warnings).any?
    end

    def result
      if errors?
        Formatter.error("failed")
      elsif warnings?
        Formatter.warning("warning")
      else
        Formatter.success("passed")
      end
    end

    def summary
      summary = ["#{summary_header}: #{result}"]

      errors.each do |error|
        summary << " #{Formatter.error("-")} #{error}"
      end

      warnings.each do |warning|
        summary << " #{Formatter.warning("-")} #{warning}"
      end

      summary.join("\n")
    end
  end
end