Files
Unity/auto/unity_test_summary.rb
greg-williams 720acfbb95 Initial project population
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@1 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
2008-02-07 03:00:54 +00:00

204 lines
5.5 KiB
Ruby

#!/usr/bin/ruby
#
# unity_test_summary.rb
#
require 'fileutils'
require 'set'
class UnityTestSummary
include FileUtils::Verbose
def run
$stderr.flush
$stdout.flush
# Clean up result file names
results = @targets.map {|target| target.gsub(/\\/,'/')}
# Dig through each result file, looking for details on pass/fail:
total_tests = 0
total_failures = 0
total_ignored = 0
failure_output = ""
ignore_output = ""
results.each do |result_file|
lines = File.readlines(result_file).map { |line| line.chomp }
if lines.length == 0
puts "Empty test result file: #{result_file}"
else
summary_line = -2
output = get_details(result_file, lines)
failure_output += output[:failures] if !output[:failures].empty?
ignore_output += output[:ignores] if !output[:ignores].empty?
tests,failures,ignored = parse_test_summary(lines[summary_line])
total_tests += tests
total_failures += failures
total_ignored += ignored
end
end
if total_ignored > 0
puts "\n"
puts "--------------------------\n"
puts "UNITY IGNORED TEST SUMMARY\n"
puts "--------------------------\n"
puts ignore_output
end
if total_failures > 0
puts "\n"
puts "--------------------------\n"
puts "UNITY FAILED TEST SUMMARY\n"
puts "--------------------------\n"
puts failure_output
end
puts "\n"
puts "--------------------------\n"
puts "OVERALL UNITY TEST SUMMARY\n"
puts "--------------------------\n"
puts "TOTAL TESTS: #{total_tests} TOTAL FAILURES: #{total_failures} IGNORED: #{total_ignored}\n"
puts "\n"
return total_failures
end
def usage(err_msg=nil)
puts err_msg if err_msg
puts "Usage: unity_test_summary.rb"
exit 1
end
def set_targets(target_array)
@targets = target_array
end
def set_root_path(path)
@root = path
puts "root_path = " + @root
end
protected
@@targets=nil
@@path=nil
@@root=nil
def get_details(result_file, lines)
fail_lines = [] # indices of lines with failures
ignore_lines = [] # indices of lines with ignores
lines.each_with_index do |line,i|
if (i < (lines.length - 2) && !(line =~ /PASS$/))
if line =~ /(^.*\.c):(\d+)/
if line =~ /IGNORED$/
ignore_lines << i
else
fail_lines << i
end
elsif line =~ /IGNORED$/
ignore_lines << i
end
end
end
failures = []
fail_lines.each do |fail_line|
if lines[fail_line] =~ /\w:/
src_file,src_line,test_name,msg = lines[fail_line].split(/:/)
src_file = "#{@root}#{src_file}" unless @root == nil || @root.length == 0
detail = "#{src_file}:#{src_line}:#{test_name}:: #{msg}"
failures << detail.gsub(/\//, "\\")
end
end
if failures.length == 0
failure_results = ""
else
failure_results = failures.join("\n") + "\n"
end
ignores = []
ignore_lines.each do |ignore_line|
if lines[ignore_line] =~ /\w:/
src_file,src_line,test_name,msg = lines[ignore_line].split(/:/)
src_file = "#{@root}#{src_file}" unless @root == nil || @root.length == 0
detail = "#{src_file}:#{src_line}:#{test_name}:: #{msg}"
ignores << detail.gsub(/\//, "\\")
end
end
if ignores.length == 0
ignore_results = ""
else
ignore_results = ignores.join("\n") + "\n"
end
results = {:failures => failure_results, :ignores => ignore_results}
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
def valid_file(fname)
raise "Can't find file #{fname}" unless File.exists?(fname)
fname
end
def valid_dir(dirname)
raise "Can't find dir #{dirname}" unless File.exists?(dirname)
dirname
end
def search_file_and_replace(file_name, pattern, replacement)
text = File.read(valid_file(file_name))
text.gsub!(pattern, replacement)
File.open(file_name, "w") do |f| f.write text end
end
def create_file_from_template(dest_file, template_file)
raise "#{dest_file} already exists; remove it first" if File.exists?(dest_file)
template_file = valid_file("#{here}/rscript_template.rb")
template = ERB.new(File.read(template_file))
File.open(dest_file,"w") do |f|
f.write template.result(binding)
end
end
def humanize(lower_case_and_underscored_word)
lower_case_and_underscored_word.to_s.gsub(/_id$/, "").gsub(/_/, " ").capitalize
end
def camelize(lower_case_and_underscored_word)
lower_case_and_underscored_word.to_s.gsub(/\/(.?)/) { "::" + $1.upcase }.gsub(/(^|_)(.)/) { $2.upcase }
end
def titleize(word)
humanize(underscore(word)).gsub(/\b([a-z])/) { $1.capitalize }
end
def underscore(camel_cased_word)
camel_cased_word.to_s.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').gsub(/([a-z\d])([A-Z])/,'\1_\2').downcase
end
end
if $0 == __FILE__
script = UnityTestSummary.new
begin
script.run
rescue Exception => e
script.usage e.message
end
end