unity_test_summary.rb 3.2 KB
Newer Older
G
greg-williams 已提交
1 2 3 4 5 6 7 8 9 10
#!/usr/bin/ruby
#
# unity_test_summary.rb
#
require 'fileutils'
require 'set'

class UnityTestSummary
  include FileUtils::Verbose

11 12 13 14 15 16 17 18 19
  attr_reader :report, :total_tests, :failures, :ignored
  
  def initialize
    @report = ''
    @total_tests = 0
    @failures = 0
    @ignored = 0
  end
  
G
greg-williams 已提交
20 21 22 23
  def run
    # Clean up result file names
    results = @targets.map {|target| target.gsub(/\\/,'/')}

24
    # Dig through each result file, looking for details on pass/fail:   
25 26
    failure_output = []
    ignore_output = []
G
greg-williams 已提交
27 28 29 30
    
    results.each do |result_file|
      lines = File.readlines(result_file).map { |line| line.chomp }
      if lines.length == 0
31
        raise "Empty test result file: #{result_file}"
G
greg-williams 已提交
32 33 34
      else
        summary_line = -2
        output = get_details(result_file, lines)
35 36
        failure_output << output[:failures] unless output[:failures].empty?
        ignore_output  << output[:ignores]  unless output[:ignores].empty?
G
greg-williams 已提交
37
        tests,failures,ignored = parse_test_summary(lines[summary_line])
38 39 40
        @total_tests += tests
        @failures += failures
        @ignored += ignored
G
greg-williams 已提交
41 42 43
      end
    end
    
44 45 46 47 48
    if @ignored > 0
      @report += "\n"
      @report += "--------------------------\n"
      @report += "UNITY IGNORED TEST SUMMARY\n"
      @report += "--------------------------\n"
49
      @report += ignore_output.flatten.join("\n")
G
greg-williams 已提交
50 51
    end
    
52 53 54 55 56
    if @failures > 0
      @report += "\n"
      @report += "--------------------------\n"
      @report += "UNITY FAILED TEST SUMMARY\n"
      @report += "--------------------------\n"
57
      @report += failure_output.flatten.join("\n")
G
greg-williams 已提交
58 59
    end
  
60 61 62 63
    @report += "\n"
    @report += "--------------------------\n"
    @report += "OVERALL UNITY TEST SUMMARY\n"
    @report += "--------------------------\n"
64
    @report += "#{@total_tests} TOTAL TESTS #{@failures} TOTAL FAILURES #{@ignored} IGNORED\n"
65
    @report += "\n"
G
greg-williams 已提交
66
  end
67
  
G
greg-williams 已提交
68 69 70 71 72 73 74 75
  def set_targets(target_array)
    @targets = target_array
  end
  
  def set_root_path(path)
    @root = path
  end

76 77 78 79 80 81
  def usage(err_msg=nil)
    puts err_msg if err_msg
    puts "Usage: unity_test_summary.rb"
    exit 1
  end
  
G
greg-williams 已提交
82 83 84 85 86 87 88
  protected
  
  @@targets=nil
  @@path=nil
  @@root=nil

  def get_details(result_file, lines)
89 90 91
    results = { :failures => [], :ignores => [], :successes => [] }
    lines.each do |line|
      src_file,src_line,test_name,status,msg = line.split(/:/)
92
      line_out = ((@root and (@root != 0)) ? "#{@root}#{line}" : line ).gsub(/\//, "\\")
93 94 95 96
      case(status)
        when 'IGNORE' then results[:ignores]   << line_out
        when 'FAIL'   then results[:failures]  << line_out
        when 'PASS'   then results[:successes] << line_out
G
greg-williams 已提交
97 98
      end
    end
99
    return results
G
greg-williams 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
  end
  
  def parse_test_summary(summary)
    if summary =~ /(\d+) Tests (\d+) Failures (\d+) Ignored/
      [$1.to_i,$2.to_i,$3.to_i]
    else
      raise "Couldn't parse test results: #{summary}"
    end
  end

  def here; File.expand_path(File.dirname(__FILE__)); end
  
end

if $0 == __FILE__
  script = UnityTestSummary.new
  begin
    script.run
  rescue Exception => e
    script.usage e.message
  end
end