generate_test_runner.rb 20.0 KB
Newer Older
M
Mark VanderVoord 已提交
1 2 3 4 5 6 7 8 9
# ==========================================
#   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]
# ==========================================

class UnityTestRunnerGenerator
  def initialize(options = nil)
    @options = UnityTestRunnerGenerator.default_options
10
    case options
11 12 13 14 15 16 17 18 19 20 21 22 23
    when NilClass
      @options
    when String
      @options.merge!(UnityTestRunnerGenerator.grab_config(options))
    when Hash
      # Check if some of these have been specified
      @options[:has_setup] = !options[:setup_name].nil?
      @options[:has_teardown] = !options[:teardown_name].nil?
      @options[:has_suite_setup] = !options[:suite_setup].nil?
      @options[:has_suite_teardown] = !options[:suite_teardown].nil?
      @options.merge!(options)
    else
      raise 'If you specify arguments, it should be a filename or a hash of options'
M
Mark VanderVoord 已提交
24
    end
J
John Lindgren 已提交
25
    require_relative 'type_sanitizer'
M
Mark VanderVoord 已提交
26 27 28 29
  end

  def self.default_options
    {
30 31 32 33 34 35
      includes: [],
      defines: [],
      plugins: [],
      framework: :unity,
      test_prefix: 'test|spec|should',
      mock_prefix: 'Mock',
36
      mock_suffix: '',
37 38
      setup_name: 'setUp',
      teardown_name: 'tearDown',
39
      test_reset_name: 'resetTest',
40 41 42 43
      main_name: 'main', # set to :auto to automatically generate each time
      main_export_decl: '',
      cmdline_args: false,
      use_param_tests: false
M
Mark VanderVoord 已提交
44 45 46 47
    }
  end

  def self.grab_config(config_file)
48 49
    options = default_options
    unless config_file.nil? || config_file.empty?
M
Mark VanderVoord 已提交
50 51 52 53 54
      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
55
    options
M
Mark VanderVoord 已提交
56 57
  end

58
  def run(input_file, output_file, options = nil)
M
Mark VanderVoord 已提交
59 60
    @options.merge!(options) unless options.nil?

61
    # pull required data from source file
M
Mark VanderVoord 已提交
62
    source = File.read(input_file)
63
    source = source.force_encoding('ISO-8859-1').encode('utf-8', replace: nil)
M
Mark VanderVoord 已提交
64 65 66 67 68
    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)
69
    testfile_includes.delete_if { |inc| inc =~ /(unity|cmock)/ }
M
Mark VanderVoord 已提交
70
    find_setup_and_teardown(source)
M
Mark VanderVoord 已提交
71

72
    # build runner file
M
Mark VanderVoord 已提交
73 74
    generate(input_file, output_file, tests, used_mocks, testfile_includes)

75
    # determine which files were used to return them
M
Mark VanderVoord 已提交
76
    all_files_used = [input_file, output_file]
77
    all_files_used += testfile_includes.map { |filename| filename + '.c' } unless testfile_includes.empty?
M
Mark VanderVoord 已提交
78
    all_files_used += @options[:includes] unless @options[:includes].empty?
79
    all_files_used += headers[:linkonly] unless headers[:linkonly].empty?
80
    all_files_used.uniq
M
Mark VanderVoord 已提交
81 82 83 84 85 86 87
  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)
88 89
      create_suite_setup(output)
      create_suite_teardown(output)
M
Mark VanderVoord 已提交
90 91 92 93
      create_reset(output, used_mocks)
      create_main(output, input_file, tests, used_mocks)
    end

94 95 96 97
    return unless @options[:header_file] && !@options[:header_file].empty?

    File.open(@options[:header_file], 'w') do |output|
      create_h_file(output, @options[:header_file], tests, testfile_includes, used_mocks)
M
Mark VanderVoord 已提交
98 99 100 101 102 103
    end
  end

  def find_tests(source)
    tests_and_line_numbers = []

104 105 106 107 108 109 110 111 112
    # contains characters which will be substituted from within strings, doing
    # this prevents these characters from interferring with scrubbers
    # @ is not a valid C character, so there should be no clashes with files genuinely containing these markers
    substring_subs = { '{' => '@co@', '}' => '@cc@', ';' => '@ss@', '/' => '@fs@' }
    substring_re = Regexp.union(substring_subs.keys)
    substring_unsubs = substring_subs.invert                   # the inverse map will be used to fix the strings afterwords
    substring_unsubs['@quote@'] = '\\"'
    substring_unsubs['@apos@'] = '\\\''
    substring_unre = Regexp.union(substring_unsubs.keys)
113
    source_scrubbed = source.clone
114 115
    source_scrubbed = source_scrubbed.gsub(/\\"/, '@quote@')   # hide escaped quotes to allow capture of the full string/char
    source_scrubbed = source_scrubbed.gsub(/\\'/, '@apos@')    # hide escaped apostrophes to allow capture of the full string/char
116
    source_scrubbed = source_scrubbed.gsub(/("[^"\n]*")|('[^'\n]*')/) { |s| s.gsub(substring_re, substring_subs) } # temporarily hide problematic characters within strings
117 118 119 120
    source_scrubbed = source_scrubbed.gsub(/\/\/(?:.+\/\*|\*(?:$|[^\/])).*$/, '')  # remove line comments that comment out the start of blocks
    source_scrubbed = source_scrubbed.gsub(/\/\*.*?\*\//m, '')                     # remove block comments
    source_scrubbed = source_scrubbed.gsub(/\/\/.*$/, '')                          # remove line comments (all that remain)
    lines = source_scrubbed.split(/(^\s*\#.*$) | (;|\{|\}) /x)                     # Treat preprocessor directives as a logical line. Match ;, {, and } as end of lines
121
                           .map { |line| line.gsub(substring_unre, substring_unsubs) } # unhide the problematic characters previously removed
M
Mark VanderVoord 已提交
122

123 124
    lines.each_with_index do |line, _index|
      # find tests
125
      next unless line =~ /^((?:\s*TEST_CASE\s*\(.*?\)\s*)*)\s*void\s+((?:#{@options[:test_prefix]}).*)\s*\(\s*(.*)\s*\)/m
126 127 128 129 130 131 132 133
      arguments = Regexp.last_match(1)
      name = Regexp.last_match(2)
      call = Regexp.last_match(3)
      params = Regexp.last_match(4)
      args = nil
      if @options[:use_param_tests] && !arguments.empty?
        args = []
        arguments.scan(/\s*TEST_CASE\s*\((.*)\)\s*$/) { |a| args << a[0] }
M
Mark VanderVoord 已提交
134
      end
135
      tests_and_line_numbers << { test: name, args: args, call: call, params: params, line_number: 0 }
M
Mark VanderVoord 已提交
136
    end
137
    tests_and_line_numbers.uniq! { |v| v[:test] }
M
Mark VanderVoord 已提交
138

139
    # determine line numbers and create tests to run
M
Mark VanderVoord 已提交
140
    source_lines = source.split("\n")
141
    source_index = 0
M
Mark VanderVoord 已提交
142 143
    tests_and_line_numbers.size.times do |i|
      source_lines[source_index..-1].each_with_index do |line, index|
144
        next unless line =~ /\s+#{tests_and_line_numbers[i][:test]}(?:\s|\()/
145 146 147
        source_index += index
        tests_and_line_numbers[i][:line_number] = source_index + 1
        break
M
Mark VanderVoord 已提交
148 149 150
      end
    end

151
    tests_and_line_numbers
M
Mark VanderVoord 已提交
152 153 154
  end

  def find_includes(source)
155
    # remove comments (block and line, in three steps to ensure correct precedence)
M
Mark VanderVoord 已提交
156 157 158 159
    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)

160
    # parse out includes
M
Mark VanderVoord 已提交
161
    includes = {
162 163 164
      local: source.scan(/^\s*#include\s+\"\s*(.+)\.[hH]\s*\"/).flatten,
      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 已提交
165
    }
166
    includes
M
Mark VanderVoord 已提交
167 168 169 170
  end

  def find_mocks(includes)
    mock_headers = []
171 172
    includes.each do |include_path|
      include_file = File.basename(include_path)
173
      mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}.*#{@options[:mock_suffix]}$/i
M
Mark VanderVoord 已提交
174
    end
175
    mock_headers
M
Mark VanderVoord 已提交
176 177
  end

178
  def find_setup_and_teardown(source)
179 180 181 182
    @options[:has_setup] = source =~ /void\s+#{@options[:setup_name]}\s*\(/
    @options[:has_teardown] = source =~ /void\s+#{@options[:teardown_name]}\s*\(/
    @options[:has_suite_setup] ||= (source =~ /void\s+suiteSetUp\s*\(/)
    @options[:has_suite_teardown] ||= (source =~ /void\s+suiteTearDown\s*\(/)
183 184
  end

185
  def create_header(output, mocks, testfile_includes = [])
M
Mark VanderVoord 已提交
186 187
    output.puts('/* AUTOGENERATED FILE. DO NOT EDIT. */')
    create_runtest(output, mocks)
188
    output.puts("\n/*=======Automagically Detected Files To Include=====*/")
J
John Lindgren 已提交
189
    output.puts("#include \"#{@options[:framework]}.h\"")
190
    output.puts('#include "cmock.h"') unless mocks.empty?
191
    output.puts('#ifndef UNITY_EXCLUDE_SETJMP_H')
M
Mark VanderVoord 已提交
192
    output.puts('#include <setjmp.h>')
J
John Lindgren 已提交
193
    output.puts('#endif')
M
Mark VanderVoord 已提交
194
    output.puts('#include <stdio.h>')
195
    if @options[:defines] && !@options[:defines].empty?
196
      @options[:defines].each { |d| output.puts("#ifndef #{d}\n#define #{d}\n#endif /* #{d} */") }
197
    end
198
    if @options[:header_file] && !@options[:header_file].empty?
M
Mark VanderVoord 已提交
199 200 201
      output.puts("#include \"#{File.basename(@options[:header_file])}\"")
    else
      @options[:includes].flatten.uniq.compact.each do |inc|
202
        output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
203 204
      end
      testfile_includes.each do |inc|
205
        output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
206 207 208
      end
    end
    mocks.each do |mock|
209
      output.puts("#include \"#{mock.gsub('.h', '')}.h\"")
M
Mark VanderVoord 已提交
210
    end
211
    output.puts('#include "CException.h"') if @options[:plugins].include?(:cexception)
212 213 214 215 216 217 218

    return unless @options[:enforce_strict_ordering]

    output.puts('')
    output.puts('int GlobalExpectCount;')
    output.puts('int GlobalVerifyOrder;')
    output.puts('char* GlobalOrderError;')
M
Mark VanderVoord 已提交
219 220
  end

221
  def create_externs(output, tests, _mocks)
222
    output.puts("\n/*=======External Functions This Runner Calls=====*/")
223 224
    output.puts("extern void #{@options[:setup_name]}(void);") if @options[:has_setup]
    output.puts("extern void #{@options[:teardown_name]}(void);") if @options[:has_teardown]
225
    output.puts("\n#ifdef __cplusplus\nextern \"C\"\n{\n#endif") if @options[:externc]
M
Mark VanderVoord 已提交
226 227 228
    tests.each do |test|
      output.puts("extern void #{test[:test]}(#{test[:call] || 'void'});")
    end
229
    output.puts("#ifdef __cplusplus\n}\n#endif") if @options[:externc]
M
Mark VanderVoord 已提交
230 231 232
    output.puts('')
  end

233
  def create_mock_management(output, mock_headers)
234
    return if mock_headers.empty?
M
Mark VanderVoord 已提交
235

236 237 238
    output.puts("\n/*=======Mock Management=====*/")
    output.puts('static void CMock_Init(void)')
    output.puts('{')
M
Mark VanderVoord 已提交
239

240 241 242 243
    if @options[:enforce_strict_ordering]
      output.puts('  GlobalExpectCount = 0;')
      output.puts('  GlobalVerifyOrder = 0;')
      output.puts('  GlobalOrderError = NULL;')
M
Mark VanderVoord 已提交
244 245
    end

246 247 248 249
    mocks = mock_headers.map { |mock| File.basename(mock) }
    mocks.each do |mock|
      mock_clean = TypeSanitizer.sanitize_c_identifier(mock)
      output.puts("  #{mock_clean}_Init();")
M
Mark VanderVoord 已提交
250
    end
251 252 253 254 255 256 257
    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();")
M
Mark VanderVoord 已提交
258
    end
259 260 261 262 263 264 265 266 267 268 269 270
    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

  def create_suite_setup(output)
271
    if @options[:has_suite_setup]
M
Mark VanderVoord 已提交
272
      if !@options[:suite_setup].nil?
273
        output.puts("\n/*=======Suite Setup=====*/")
274
        output.puts('void suiteSetUp(void)')
275 276 277 278 279 280
        output.puts('{')
        output.puts(@options[:suite_setup])
        output.puts('}')
      else
        output.puts('extern void suiteSetUp(void);')
      end
281
    end
282 283 284
  end

  def create_suite_teardown(output)
285
    if @options[:has_suite_teardown]
M
Mark VanderVoord 已提交
286
      if !@options[:suite_teardown].nil?
287
        output.puts("\n/*=======Suite Teardown=====*/")
M
Mark VanderVoord 已提交
288
        output.puts('int suiteTearDown(int num_failures)')
289 290 291 292
        output.puts('{')
        output.puts(@options[:suite_teardown])
        output.puts('}')
      else
M
Mark VanderVoord 已提交
293
        output.puts('extern int suiteTearDown(int num_failures);')
294
      end
295
    end
M
Mark VanderVoord 已提交
296 297 298 299 300 301
  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__' : ''
302
    output.puts("\n/*=======Test Runner Used To Run Each Test Below=====*/")
303
    output.puts('#define RUN_TEST_NO_ARGS') if @options[:use_param_tests]
M
Mark VanderVoord 已提交
304
    output.puts("#define RUN_TEST(TestFunc, TestLineNum#{va_args1}) \\")
305
    output.puts('{ \\')
M
Mark VanderVoord 已提交
306
    output.puts("  Unity.CurrentTestName = #TestFunc#{va_args2.empty? ? '' : " \"(\" ##{va_args2} \")\""}; \\")
307 308 309
    output.puts('  Unity.CurrentTestLineNumber = TestLineNum; \\')
    output.puts('  if (UnityTestMatches()) { \\') if @options[:cmdline_args]
    output.puts('  Unity.NumberOfTests++; \\')
310
    output.puts('  UNITY_EXEC_TIME_START(); \\')
311 312 313 314 315 316
    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
317
    output.puts("      #{@options[:setup_name]}(); \\") if @options[:has_setup]
M
Mark VanderVoord 已提交
318
    output.puts("      TestFunc(#{va_args2}); \\")
319 320 321 322
    output.puts('    } Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \\') if cexception
    output.puts('  } \\')
    output.puts('  if (TEST_PROTECT()) \\')
    output.puts('  { \\')
323
    output.puts("    #{@options[:teardown_name]}(); \\") if @options[:has_teardown]
324 325 326
    output.puts('    CMock_Verify(); \\') unless used_mocks.empty?
    output.puts('  } \\')
    output.puts('  CMock_Destroy(); \\') unless used_mocks.empty?
327
    output.puts('  UNITY_EXEC_TIME_STOP(); \\')
328 329
    output.puts('  UnityConcludeTest(); \\')
    output.puts('  } \\') if @options[:cmdline_args]
M
Mark VanderVoord 已提交
330 331 332 333
    output.puts("}\n")
  end

  def create_reset(output, used_mocks)
334
    output.puts("\n/*=======Test Reset Option=====*/")
335 336
    output.puts("void #{@options[:test_reset_name]}(void);")
    output.puts("void #{@options[:test_reset_name]}(void)")
337 338 339
    output.puts('{')
    output.puts('  CMock_Verify();') unless used_mocks.empty?
    output.puts('  CMock_Destroy();') unless used_mocks.empty?
340
    output.puts("  #{@options[:teardown_name]}();") if @options[:has_teardown]
341
    output.puts('  CMock_Init();') unless used_mocks.empty?
342
    output.puts("  #{@options[:setup_name]}();") if @options[:has_setup]
343
    output.puts('}')
M
Mark VanderVoord 已提交
344 345 346
  end

  def create_main(output, filename, tests, used_mocks)
347
    output.puts("\n\n/*=======MAIN=====*/")
348 349 350
    main_name = @options[:main_name].to_sym == :auto ? "main_#{filename.gsub('.c', '')}" : (@options[:main_name]).to_s
    if @options[:cmdline_args]
      if main_name != 'main'
351 352
        output.puts("#{@options[:main_export_decl]} int #{main_name}(int argc, char** argv);")
      end
353
      output.puts("#{@options[:main_export_decl]} int #{main_name}(int argc, char** argv)")
354 355 356 357 358 359 360 361 362
      output.puts('{')
      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]
363
        tests.each do |test|
364
          if test[:args].nil? || test[:args].empty?
365
            output.puts("      UnityPrint(\"  #{test[:test]}(RUN_TEST_NO_ARGS)\");")
366
            output.puts('      UNITY_PRINT_EOL();')
367 368 369
          else
            test[:args].each do |args|
              output.puts("      UnityPrint(\"  #{test[:test]}(#{args})\");")
370
              output.puts('      UNITY_PRINT_EOL();')
371 372 373 374
            end
          end
        end
      else
375
        tests.each { |test| output.puts("      UnityPrint(\"  #{test[:test]}\");\n    UNITY_PRINT_EOL();") }
376
      end
377 378 379 380
      output.puts('    return 0;')
      output.puts('    }')
      output.puts('  return parse_status;')
      output.puts('  }')
381
    else
382
      if main_name != 'main'
383 384
        output.puts("#{@options[:main_export_decl]} int #{main_name}(void);")
      end
385
      output.puts("int #{main_name}(void)")
386
      output.puts('{')
387
    end
388
    output.puts('  suiteSetUp();') if @options[:has_suite_setup]
389 390
    output.puts("  UnityBegin(\"#{filename.gsub(/\\/, '\\\\\\')}\");")
    if @options[:use_param_tests]
M
Mark VanderVoord 已提交
391
      tests.each do |test|
392
        if test[:args].nil? || test[:args].empty?
M
Mark VanderVoord 已提交
393 394
          output.puts("  RUN_TEST(#{test[:test]}, #{test[:line_number]}, RUN_TEST_NO_ARGS);")
        else
395
          test[:args].each { |args| output.puts("  RUN_TEST(#{test[:test]}, #{test[:line_number]}, #{args});") }
M
Mark VanderVoord 已提交
396 397 398
        end
      end
    else
399
      tests.each { |test| output.puts("  RUN_TEST(#{test[:test]}, #{test[:line_number]});") }
M
Mark VanderVoord 已提交
400
    end
401 402
    output.puts
    output.puts('  CMock_Guts_MemFreeFinal();') unless used_mocks.empty?
403
    if @options[:has_suite_teardown]
404 405 406 407
      output.puts('  return suiteTearDown(UnityEnd());')
    else
      output.puts('  return UnityEnd();')
    end
408
    output.puts('}')
M
Mark VanderVoord 已提交
409 410
  end

P
Peter Mendham 已提交
411
  def create_h_file(output, filename, tests, testfile_includes, used_mocks)
412 413
    filename = File.basename(filename).gsub(/[-\/\\\.\,\s]/, '_').upcase
    output.puts('/* AUTOGENERATED FILE. DO NOT EDIT. */')
M
Mark VanderVoord 已提交
414 415
    output.puts("#ifndef _#{filename}")
    output.puts("#define _#{filename}\n\n")
416 417
    output.puts("#include \"#{@options[:framework]}.h\"")
    output.puts('#include "cmock.h"') unless used_mocks.empty?
M
Mark VanderVoord 已提交
418
    @options[:includes].flatten.uniq.compact.each do |inc|
419
      output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
420 421
    end
    testfile_includes.each do |inc|
422
      output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
423 424
    end
    output.puts "\n"
425
    tests.each do |test|
426
      if test[:params].nil? || test[:params].empty?
P
Peter Mendham 已提交
427 428 429 430 431
        output.puts("void #{test[:test]}(void);")
      else
        output.puts("void #{test[:test]}(#{test[:params]});")
      end
    end
M
Mark VanderVoord 已提交
432 433 434 435
    output.puts("#endif\n\n")
  end
end

436
if $0 == __FILE__
437
  options = { includes: [] }
M
Mark VanderVoord 已提交
438

439
  # parse out all the options first (these will all be removed as we go)
M
Mark VanderVoord 已提交
440
  ARGV.reject! do |arg|
441
    case arg
442
    when '-cexception'
443 444
      options[:plugins] = [:cexception]
      true
445
    when /\.*\.ya?ml/
446 447
      options = UnityTestRunnerGenerator.grab_config(arg)
      true
448
    when /--(\w+)=\"?(.*)\"?/
449 450
      options[Regexp.last_match(1).to_sym] = Regexp.last_match(2)
      true
451
    when /\.*\.h/
452 453 454
      options[:includes] << arg
      true
    else false
M
Mark VanderVoord 已提交
455 456 457
    end
  end

458 459
  # make sure there is at least one parameter left (the input file)
  unless ARGV[0]
M
Mark VanderVoord 已提交
460
    puts ["\nusage: ruby #{__FILE__} (files) (options) input_test_file (output)",
461 462 463 464 465 466 467 468
          "\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',
469
          '    -externc              - add extern "C" for cpp support',
470 471 472 473
          '    --setup_name=""       - redefine setUp func name to something else',
          '    --teardown_name=""    - redefine tearDown func name to something else',
          '    --main_name=""        - redefine main func name to something else',
          '    --test_prefix=""      - redefine test prefix from default test|spec|should',
474
          '    --test_reset_name=""  - redefine resetTest func name to something else',
475 476 477 478
          '    --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")
M
Mark VanderVoord 已提交
479 480 481
    exit 1
  end

482 483
  # create the default test runner name if not specified
  ARGV[1] = ARGV[0].gsub('.c', '_Runner.c') unless ARGV[1]
M
Mark VanderVoord 已提交
484

485
  UnityTestRunnerGenerator.new(options).run(ARGV[0], ARGV[1])
486
end