generate_test_runner.rb 17.4 KB
Newer Older
M
Mark VanderVoord 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
# ==========================================
#   Unity Project - A Test Framework for C
#   Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
#   [Released under MIT License. Please refer to license.txt for details]
# ==========================================

File.expand_path(File.join(File.dirname(__FILE__),'colour_prompt'))

class UnityTestRunnerGenerator

  def initialize(options = nil)
    @options = UnityTestRunnerGenerator.default_options
    case(options)
      when NilClass then @options
      when String   then @options.merge!(UnityTestRunnerGenerator.grab_config(options))
      when Hash     then @options.merge!(options)
      else          raise "If you specify arguments, it should be a filename or a hash of options"
    end
    require "#{File.expand_path(File.dirname(__FILE__))}/type_sanitizer"
  end

  def self.default_options
    {
24
      :includes         => [],
25
      :defines          => [],
26 27 28
      :plugins          => [],
      :framework        => :unity,
      :test_prefix      => "test|spec|should",
29
      :mock_prefix      => "Mock",
30 31 32 33 34 35
      :setup_name       => "setUp",
      :teardown_name    => "tearDown",
      :main_name        => "main", #set to :auto to automatically generate each time
      :main_export_decl => "",
      :cmdline_args     => false,
      :use_param_tests  => false,
M
Mark VanderVoord 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    }
  end

  def self.grab_config(config_file)
    options = self.default_options
    unless (config_file.nil? or config_file.empty?)
      require 'yaml'
      yaml_guts = YAML.load_file(config_file)
      options.merge!(yaml_guts[:unity] || yaml_guts[:cmock])
      raise "No :unity or :cmock section found in #{config_file}" unless options
    end
    return(options)
  end

  def run(input_file, output_file, options=nil)
    tests = []
    testfile_includes = []
    used_mocks = []

    @options.merge!(options) unless options.nil?
    module_name = File.basename(input_file)

    #pull required data from source file
    source = File.read(input_file)
60
    source = source.force_encoding("ISO-8859-1").encode("utf-8", :replace => nil)
M
Mark VanderVoord 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74
    tests               = find_tests(source)
    headers             = find_includes(source)
    testfile_includes   = (headers[:local] + headers[:system])
    used_mocks          = find_mocks(testfile_includes)
    testfile_includes   = (testfile_includes - used_mocks)
    testfile_includes.delete_if{|inc| inc =~ /(unity|cmock)/}

    #build runner file
    generate(input_file, output_file, tests, used_mocks, testfile_includes)

    #determine which files were used to return them
    all_files_used = [input_file, output_file]
    all_files_used += testfile_includes.map {|filename| filename + '.c'} unless testfile_includes.empty?
    all_files_used += @options[:includes] unless @options[:includes].empty?
75
    all_files_used += headers[:linkonly] unless headers[:linkonly].empty?
M
Mark VanderVoord 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    return all_files_used.uniq
  end

  def generate(input_file, output_file, tests, used_mocks, testfile_includes)
    File.open(output_file, 'w') do |output|
      create_header(output, used_mocks, testfile_includes)
      create_externs(output, tests, used_mocks)
      create_mock_management(output, used_mocks)
      create_suite_setup_and_teardown(output)
      create_reset(output, used_mocks)
      create_main(output, input_file, tests, used_mocks)
    end

    if (@options[:header_file] && !@options[:header_file].empty?)
      File.open(@options[:header_file], 'w') do |output|
P
Peter Mendham 已提交
91
        create_h_file(output, @options[:header_file], tests, testfile_includes, used_mocks)
M
Mark VanderVoord 已提交
92 93 94 95 96 97 98
      end
    end
  end

  def find_tests(source)
    tests_and_line_numbers = []

99
    source_scrubbed = source.clone
L
L.J. Hill 已提交
100
    source_scrubbed = source_scrubbed.gsub(/"[^"\n]*"/, '')      # remove things in strings
101
    source_scrubbed = source_scrubbed.gsub(/\/\/.*$/, '')      # remove line comments
M
Mark VanderVoord 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
    source_scrubbed = source_scrubbed.gsub(/\/\*.*?\*\//m, '') # remove block comments
    lines = source_scrubbed.split(/(^\s*\#.*$)                 # Treat preprocessor directives as a logical line
                              | (;|\{|\}) /x)                  # Match ;, {, and } as end of lines

    lines.each_with_index do |line, index|
      #find tests
      if line =~ /^((?:\s*TEST_CASE\s*\(.*?\)\s*)*)\s*void\s+((?:#{@options[:test_prefix]}).*)\s*\(\s*(.*)\s*\)/
        arguments = $1
        name = $2
        call = $3
        params = $4
        args = nil
        if (@options[:use_param_tests] and !arguments.empty?)
          args = []
          arguments.scan(/\s*TEST_CASE\s*\((.*)\)\s*$/) {|a| args << a[0]}
        end
        tests_and_line_numbers << { :test => name, :args => args, :call => call, :params => params, :line_number => 0 }
      end
    end
    tests_and_line_numbers.uniq! {|v| v[:test] }

    #determine line numbers and create tests to run
    source_lines = source.split("\n")
    source_index = 0;
    tests_and_line_numbers.size.times do |i|
      source_lines[source_index..-1].each_with_index do |line, index|
        if (line =~ /#{tests_and_line_numbers[i][:test]}/)
          source_index += index
          tests_and_line_numbers[i][:line_number] = source_index + 1
          break
        end
      end
    end

    return tests_and_line_numbers
  end

  def find_includes(source)

    #remove comments (block and line, in three steps to ensure correct precedence)
    source.gsub!(/\/\/(?:.+\/\*|\*(?:$|[^\/])).*$/, '')  # remove line comments that comment out the start of blocks
    source.gsub!(/\/\*.*?\*\//m, '')                     # remove block comments
    source.gsub!(/\/\/.*$/, '')                          # remove line comments (all that remain)

    #parse out includes
    includes = {
      :local => source.scan(/^\s*#include\s+\"\s*(.+)\.[hH]\s*\"/).flatten,
149 150
      :system => source.scan(/^\s*#include\s+<\s*(.+)\s*>/).flatten.map { |inc| "<#{inc}>" },
      :linkonly => source.scan(/^TEST_FILE\(\s*\"\s*(.+)\.[cC]\w*\s*\"/).flatten
M
Mark VanderVoord 已提交
151 152 153 154 155 156
    }
    return includes
  end

  def find_mocks(includes)
    mock_headers = []
157 158
    includes.each do |include_path|
      include_file = File.basename(include_path)
159
      mock_headers << include_path if (include_file =~ /^#{@options[:mock_prefix]}/i)
M
Mark VanderVoord 已提交
160 161 162 163 164 165 166
    end
    return mock_headers
  end

  def create_header(output, mocks, testfile_includes=[])
    output.puts('/* AUTOGENERATED FILE. DO NOT EDIT. */')
    create_runtest(output, mocks)
167
    output.puts("\n/*=======Automagically Detected Files To Include=====*/")
M
Mark VanderVoord 已提交
168 169 170 171
    output.puts("#include \"#{@options[:framework].to_s}.h\"")
    output.puts('#include "cmock.h"') unless (mocks.empty?)
    output.puts('#include <setjmp.h>')
    output.puts('#include <stdio.h>')
172 173 174
    if (@options[:defines] && !@options[:defines].empty?)
      @options[:defines].each {|d| output.puts("#define #{d}")}
    end
M
Mark VanderVoord 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187
    if (@options[:header_file] && !@options[:header_file].empty?)
      output.puts("#include \"#{File.basename(@options[:header_file])}\"")
    else
      @options[:includes].flatten.uniq.compact.each do |inc|
        output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h','')}.h\""}")
      end
      testfile_includes.each do |inc|
        output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h','')}.h\""}")
      end
    end
    mocks.each do |mock|
      output.puts("#include \"#{mock.gsub('.h','')}.h\"")
    end
188
    output.puts('#include "CException.h"') if @options[:plugins].include?(:cexception)
M
Mark VanderVoord 已提交
189 190 191 192 193 194 195 196 197
    if @options[:enforce_strict_ordering]
      output.puts('')
      output.puts('int GlobalExpectCount;')
      output.puts('int GlobalVerifyOrder;')
      output.puts('char* GlobalOrderError;')
    end
  end

  def create_externs(output, tests, mocks)
198
    output.puts("\n/*=======External Functions This Runner Calls=====*/")
M
Mark VanderVoord 已提交
199 200 201 202 203 204 205 206
    output.puts("extern void #{@options[:setup_name]}(void);")
    output.puts("extern void #{@options[:teardown_name]}(void);")
    tests.each do |test|
      output.puts("extern void #{test[:test]}(#{test[:call] || 'void'});")
    end
    output.puts('')
  end

207 208
  def create_mock_management(output, mock_headers)
    unless (mock_headers.empty?)
209
      output.puts("\n/*=======Mock Management=====*/")
M
Mark VanderVoord 已提交
210 211 212 213 214 215 216
      output.puts("static void CMock_Init(void)")
      output.puts("{")
      if @options[:enforce_strict_ordering]
        output.puts("  GlobalExpectCount = 0;")
        output.puts("  GlobalVerifyOrder = 0;")
        output.puts("  GlobalOrderError = NULL;")
      end
217
      mocks = mock_headers.map {|mock| File.basename(mock)}
M
Mark VanderVoord 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
      mocks.each do |mock|
        mock_clean = TypeSanitizer.sanitize_c_identifier(mock)
        output.puts("  #{mock_clean}_Init();")
      end
      output.puts("}\n")

      output.puts("static void CMock_Verify(void)")
      output.puts("{")
      mocks.each do |mock|
        mock_clean = TypeSanitizer.sanitize_c_identifier(mock)
        output.puts("  #{mock_clean}_Verify();")
      end
      output.puts("}\n")

      output.puts("static void CMock_Destroy(void)")
      output.puts("{")
      mocks.each do |mock|
        mock_clean = TypeSanitizer.sanitize_c_identifier(mock)
        output.puts("  #{mock_clean}_Destroy();")
      end
      output.puts("}\n")
    end
  end

  def create_suite_setup_and_teardown(output)
    unless (@options[:suite_setup].nil?)
244
      output.puts("\n/*=======Suite Setup=====*/")
245
      output.puts("static void suite_setup(void)")
M
Mark VanderVoord 已提交
246 247 248 249 250
      output.puts("{")
      output.puts(@options[:suite_setup])
      output.puts("}")
    end
    unless (@options[:suite_teardown].nil?)
251
      output.puts("\n/*=======Suite Teardown=====*/")
M
Mark VanderVoord 已提交
252 253 254 255 256 257 258 259 260 261 262
      output.puts("static int suite_teardown(int num_failures)")
      output.puts("{")
      output.puts(@options[:suite_teardown])
      output.puts("}")
    end
  end

  def create_runtest(output, used_mocks)
    cexception = @options[:plugins].include? :cexception
    va_args1   = @options[:use_param_tests] ? ', ...' : ''
    va_args2   = @options[:use_param_tests] ? '__VA_ARGS__' : ''
263
    output.puts("\n/*=======Test Runner Used To Run Each Test Below=====*/")
M
Mark VanderVoord 已提交
264 265 266 267 268
    output.puts("#define RUN_TEST_NO_ARGS") if @options[:use_param_tests]
    output.puts("#define RUN_TEST(TestFunc, TestLineNum#{va_args1}) \\")
    output.puts("{ \\")
    output.puts("  Unity.CurrentTestName = #TestFunc#{va_args2.empty? ? '' : " \"(\" ##{va_args2} \")\""}; \\")
    output.puts("  Unity.CurrentTestLineNumber = TestLineNum; \\")
269
    output.puts("  if (UnityTestMatches()) { \\") if (@options[:cmdline_args])
M
Mark VanderVoord 已提交
270 271 272 273 274 275 276 277 278 279 280
    output.puts("  Unity.NumberOfTests++; \\")
    output.puts("  CMock_Init(); \\") unless (used_mocks.empty?)
    output.puts("  UNITY_CLR_DETAILS(); \\") unless (used_mocks.empty?)
    output.puts("  if (TEST_PROTECT()) \\")
    output.puts("  { \\")
    output.puts("    CEXCEPTION_T e; \\") if cexception
    output.puts("    Try { \\") if cexception
    output.puts("      #{@options[:setup_name]}(); \\")
    output.puts("      TestFunc(#{va_args2}); \\")
    output.puts("    } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, \"Unhandled Exception!\"); } \\") if cexception
    output.puts("  } \\")
281
    output.puts("  if (TEST_PROTECT()) \\")
M
Mark VanderVoord 已提交
282 283 284 285 286 287
    output.puts("  { \\")
    output.puts("    #{@options[:teardown_name]}(); \\")
    output.puts("    CMock_Verify(); \\") unless (used_mocks.empty?)
    output.puts("  } \\")
    output.puts("  CMock_Destroy(); \\") unless (used_mocks.empty?)
    output.puts("  UnityConcludeTest(); \\")
288
    output.puts("  } \\")  if (@options[:cmdline_args])
M
Mark VanderVoord 已提交
289 290 291 292
    output.puts("}\n")
  end

  def create_reset(output, used_mocks)
293
    output.puts("\n/*=======Test Reset Option=====*/")
M
Mark VanderVoord 已提交
294 295 296 297 298 299 300 301 302 303 304 305
    output.puts("void resetTest(void);")
    output.puts("void resetTest(void)")
    output.puts("{")
    output.puts("  CMock_Verify();") unless (used_mocks.empty?)
    output.puts("  CMock_Destroy();") unless (used_mocks.empty?)
    output.puts("  #{@options[:teardown_name]}();")
    output.puts("  CMock_Init();") unless (used_mocks.empty?)
    output.puts("  #{@options[:setup_name]}();")
    output.puts("}")
  end

  def create_main(output, filename, tests, used_mocks)
306
    output.puts("\n\n/*=======MAIN=====*/")
307
    main_name = (@options[:main_name].to_sym == :auto) ? "main_#{filename.gsub('.c','')}" : "#{@options[:main_name]}"
308
    if (@options[:cmdline_args])
309 310 311
      if (main_name != "main")
        output.puts("#{@options[:main_export_decl]} int #{main_name}(int argc, char** argv);")
      end
312
      output.puts("#{@options[:main_export_decl]} int #{main_name}(int argc, char** argv)")
313
      output.puts("{")
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
      output.puts("  int parse_status = UnityParseOptions(argc, argv);")
      output.puts("  if (parse_status != 0)")
      output.puts("  {")
      output.puts("    if (parse_status < 0)")
      output.puts("    {")
      output.puts("      UnityPrint(\"#{filename.gsub('.c','')}.\");")
      output.puts("      UNITY_PRINT_EOL();")
      if (@options[:use_param_tests])
        tests.each do |test|
          if ((test[:args].nil?) or (test[:args].empty?))
            output.puts("      UnityPrint(\"  #{test[:test]}(RUN_TEST_NO_ARGS)\");")
            output.puts("      UNITY_PRINT_EOL();")
          else
            test[:args].each do |args|
              output.puts("      UnityPrint(\"  #{test[:test]}(#{args})\");")
              output.puts("      UNITY_PRINT_EOL();")
            end
          end
        end
      else
        tests.each { |test| output.puts("      UnityPrint(\"  #{test[:test]}\");\n    UNITY_PRINT_EOL();")}
      end
336
      output.puts("    return 0;")
337
      output.puts("    }")
338
      output.puts("  return parse_status;")
339
      output.puts("  }")
340
    else
341 342 343
      if (main_name != "main")
        output.puts("#{@options[:main_export_decl]} int #{main_name}(void);")
      end
344 345
      output.puts("int #{main_name}(void)")
      output.puts("{")
346
    end
M
Mark VanderVoord 已提交
347
    output.puts("  suite_setup();") unless @options[:suite_setup].nil?
348
    output.puts("  UnityBegin(\"#{filename.gsub(/\\/,'\\\\\\')}\");")
M
Mark VanderVoord 已提交
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
    if (@options[:use_param_tests])
      tests.each do |test|
        if ((test[:args].nil?) or (test[:args].empty?))
          output.puts("  RUN_TEST(#{test[:test]}, #{test[:line_number]}, RUN_TEST_NO_ARGS);")
        else
          test[:args].each {|args| output.puts("  RUN_TEST(#{test[:test]}, #{test[:line_number]}, #{args});")}
        end
      end
    else
        tests.each { |test| output.puts("  RUN_TEST(#{test[:test]}, #{test[:line_number]});") }
    end
    output.puts()
    output.puts("  CMock_Guts_MemFreeFinal();") unless used_mocks.empty?
    output.puts("  return #{@options[:suite_teardown].nil? ? "" : "suite_teardown"}(UnityEnd());")
    output.puts("}")
  end

P
Peter Mendham 已提交
366 367
  def create_h_file(output, filename, tests, testfile_includes, used_mocks)
    filename = File.basename(filename).gsub(/[-\/\\\.\,\s]/, "_").upcase
M
Mark VanderVoord 已提交
368 369 370
    output.puts("/* AUTOGENERATED FILE. DO NOT EDIT. */")
    output.puts("#ifndef _#{filename}")
    output.puts("#define _#{filename}\n\n")
P
Peter Mendham 已提交
371 372
    output.puts("#include \"#{@options[:framework].to_s}.h\"")
    output.puts('#include "cmock.h"') unless (used_mocks.empty?)
M
Mark VanderVoord 已提交
373 374 375 376 377 378 379
    @options[:includes].flatten.uniq.compact.each do |inc|
      output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h','')}.h\""}")
    end
    testfile_includes.each do |inc|
      output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h','')}.h\""}")
    end
    output.puts "\n"
380
    tests.each do |test|
P
Peter Mendham 已提交
381 382 383 384 385 386
      if ((test[:params].nil?) or (test[:params].empty?))
        output.puts("void #{test[:test]}(void);")
      else
        output.puts("void #{test[:test]}(#{test[:params]});")
      end
    end
M
Mark VanderVoord 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
    output.puts("#endif\n\n")
  end
end

if ($0 == __FILE__)
  options = { :includes => [] }
  yaml_file = nil

  #parse out all the options first (these will all be removed as we go)
  ARGV.reject! do |arg|
    case(arg)
      when '-cexception'
        options[:plugins] = [:cexception]; true
      when /\.*\.ya?ml/
        options = UnityTestRunnerGenerator.grab_config(arg); true
      when /--(\w+)=\"?(.*)\"?/
        options[$1.to_sym] = $2; true
P
Peter Mendham 已提交
404 405
      when /\.*\.h/
        options[:includes] << arg; true
M
Mark VanderVoord 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
      else false
    end
  end

  #make sure there is at least one parameter left (the input file)
  if !ARGV[0]
    puts ["\nusage: ruby #{__FILE__} (files) (options) input_test_file (output)",
           "\n  input_test_file         - this is the C file you want to create a runner for",
           "  output                  - this is the name of the runner file to generate",
           "                            defaults to (input_test_file)_Runner",
           "  files:",
           "    *.yml / *.yaml        - loads configuration from here in :unity or :cmock",
           "    *.h                   - header files are added as #includes in runner",
           "  options:",
           "    -cexception           - include cexception support",
           "    --setup_name=\"\"       - redefine setUp func name to something else",
           "    --teardown_name=\"\"    - redefine tearDown func name to something else",
423
           "    --main_name=\"\"        - redefine main func name to something else",
M
Mark VanderVoord 已提交
424 425 426 427 428 429 430 431 432 433 434 435
           "    --test_prefix=\"\"      - redefine test prefix from default test|spec|should",
           "    --suite_setup=\"\"      - code to execute for setup of entire suite",
           "    --suite_teardown=\"\"   - code to execute for teardown of entire suite",
           "    --use_param_tests=1   - enable parameterized tests (disabled by default)",
           "    --header_file=\"\"      - path/name of test header file to generate too"
          ].join("\n")
    exit 1
  end

  #create the default test runner name if not specified
  ARGV[1] = ARGV[0].gsub(".c","_Runner.c") if (!ARGV[1])

436
  UnityTestRunnerGenerator.new(options).run(ARGV[0], ARGV[1])
M
Mark VanderVoord 已提交
437
end