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

7
File.expand_path(File.join(File.dirname(__FILE__), 'colour_prompt'))
M
Mark VanderVoord 已提交
8 9 10 11

class UnityTestRunnerGenerator
  def initialize(options = nil)
    @options = UnityTestRunnerGenerator.default_options
12
    case options
13 14 15
    when NilClass then @options
    when String   then @options.merge!(UnityTestRunnerGenerator.grab_config(options))
    when Hash     then @options.merge!(options)
16
    else raise 'If you specify arguments, it should be a filename or a hash of options'
M
Mark VanderVoord 已提交
17 18 19 20 21 22
    end
    require "#{File.expand_path(File.dirname(__FILE__))}/type_sanitizer"
  end

  def self.default_options
    {
23 24 25 26 27 28
      includes: [],
      defines: [],
      plugins: [],
      framework: :unity,
      test_prefix: 'test|spec|should',
      mock_prefix: 'Mock',
29
      mock_suffix: '',
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
    }
  end

  def self.grab_config(config_file)
40 41
    options = default_options
    unless config_file.nil? || config_file.empty?
M
Mark VanderVoord 已提交
42 43 44 45 46
      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
47
    options
M
Mark VanderVoord 已提交
48 49
  end

50
  def run(input_file, output_file, options = nil)
M
Mark VanderVoord 已提交
51 52
    @options.merge!(options) unless options.nil?

53
    # pull required data from source file
M
Mark VanderVoord 已提交
54
    source = File.read(input_file)
55
    source = source.force_encoding('ISO-8859-1').encode('utf-8', replace: nil)
M
Mark VanderVoord 已提交
56 57 58 59 60
    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)
61
    testfile_includes.delete_if { |inc| inc =~ /(unity|cmock)/ }
M
Mark VanderVoord 已提交
62

63
    # build runner file
M
Mark VanderVoord 已提交
64 65
    generate(input_file, output_file, tests, used_mocks, testfile_includes)

66
    # determine which files were used to return them
M
Mark VanderVoord 已提交
67
    all_files_used = [input_file, output_file]
68
    all_files_used += testfile_includes.map { |filename| filename + '.c' } unless testfile_includes.empty?
M
Mark VanderVoord 已提交
69
    all_files_used += @options[:includes] unless @options[:includes].empty?
70
    all_files_used += headers[:linkonly] unless headers[:linkonly].empty?
71
    all_files_used.uniq
M
Mark VanderVoord 已提交
72 73 74 75 76 77 78
  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)
79 80
      create_suite_setup(output)
      create_suite_teardown(output)
M
Mark VanderVoord 已提交
81 82 83 84
      create_reset(output, used_mocks)
      create_main(output, input_file, tests, used_mocks)
    end

85 86 87 88
    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 已提交
89 90 91 92 93 94
    end
  end

  def find_tests(source)
    tests_and_line_numbers = []

95
    source_scrubbed = source.clone
96
    source_scrubbed = source_scrubbed.gsub(/"[^"\n]*"/, '') # remove things in strings
97
    source_scrubbed = source_scrubbed.gsub(/\/\/.*$/, '')      # remove line comments
M
Mark VanderVoord 已提交
98 99 100 101
    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

102 103 104 105 106 107 108 109 110 111 112
    lines.each_with_index do |line, _index|
      # find tests
      next unless line =~ /^((?:\s*TEST_CASE\s*\(.*?\)\s*)*)\s*void\s+((?:#{@options[:test_prefix]}).*)\s*\(\s*(.*)\s*\)/
      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 已提交
113
      end
114
      tests_and_line_numbers << { test: name, args: args, call: call, params: params, line_number: 0 }
M
Mark VanderVoord 已提交
115
    end
116
    tests_and_line_numbers.uniq! { |v| v[:test] }
M
Mark VanderVoord 已提交
117

118
    # determine line numbers and create tests to run
M
Mark VanderVoord 已提交
119
    source_lines = source.split("\n")
120
    source_index = 0
M
Mark VanderVoord 已提交
121 122
    tests_and_line_numbers.size.times do |i|
      source_lines[source_index..-1].each_with_index do |line, index|
123
        next unless line =~ /\s+#{tests_and_line_numbers[i][:test]}(?:\s|\()/
124 125 126
        source_index += index
        tests_and_line_numbers[i][:line_number] = source_index + 1
        break
M
Mark VanderVoord 已提交
127 128 129
      end
    end

130
    tests_and_line_numbers
M
Mark VanderVoord 已提交
131 132 133
  end

  def find_includes(source)
134
    # remove comments (block and line, in three steps to ensure correct precedence)
M
Mark VanderVoord 已提交
135 136 137 138
    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)

139
    # parse out includes
M
Mark VanderVoord 已提交
140
    includes = {
141 142 143
      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 已提交
144
    }
145
    includes
M
Mark VanderVoord 已提交
146 147 148 149
  end

  def find_mocks(includes)
    mock_headers = []
150 151
    includes.each do |include_path|
      include_file = File.basename(include_path)
152
      mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}.*#{@options[:mock_suffix]}$/i
M
Mark VanderVoord 已提交
153
    end
154
    mock_headers
M
Mark VanderVoord 已提交
155 156
  end

157
  def create_header(output, mocks, testfile_includes = [])
M
Mark VanderVoord 已提交
158 159
    output.puts('/* AUTOGENERATED FILE. DO NOT EDIT. */')
    create_runtest(output, mocks)
160
    output.puts("\n/*=======Automagically Detected Files To Include=====*/")
161
    output.puts('#ifdef __WIN32__')
J
John Lindgren 已提交
162
    output.puts('#define UNITY_INCLUDE_SETUP_STUBS')
163
    output.puts('#endif')
J
John Lindgren 已提交
164
    output.puts("#include \"#{@options[:framework]}.h\"")
165
    output.puts('#include "cmock.h"') unless mocks.empty?
166
    output.puts('#ifndef UNITY_EXCLUDE_SETJMP_H')
M
Mark VanderVoord 已提交
167
    output.puts('#include <setjmp.h>')
168
    output.puts("#endif")
M
Mark VanderVoord 已提交
169
    output.puts('#include <stdio.h>')
170 171
    if @options[:defines] && !@options[:defines].empty?
      @options[:defines].each { |d| output.puts("#define #{d}") }
172
    end
173
    if @options[:header_file] && !@options[:header_file].empty?
M
Mark VanderVoord 已提交
174 175 176
      output.puts("#include \"#{File.basename(@options[:header_file])}\"")
    else
      @options[:includes].flatten.uniq.compact.each do |inc|
177
        output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
178 179
      end
      testfile_includes.each do |inc|
180
        output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
181 182 183
      end
    end
    mocks.each do |mock|
184
      output.puts("#include \"#{mock.gsub('.h', '')}.h\"")
M
Mark VanderVoord 已提交
185
    end
186
    output.puts('#include "CException.h"') if @options[:plugins].include?(:cexception)
187 188 189 190 191 192 193

    return unless @options[:enforce_strict_ordering]

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

196
  def create_externs(output, tests, _mocks)
197
    output.puts("\n/*=======External Functions This Runner Calls=====*/")
M
Mark VanderVoord 已提交
198 199 200 201 202 203 204 205
    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

206
  def create_mock_management(output, mock_headers)
207
    return if mock_headers.empty?
M
Mark VanderVoord 已提交
208

209 210 211
    output.puts("\n/*=======Mock Management=====*/")
    output.puts('static void CMock_Init(void)')
    output.puts('{')
M
Mark VanderVoord 已提交
212

213 214 215 216
    if @options[:enforce_strict_ordering]
      output.puts('  GlobalExpectCount = 0;')
      output.puts('  GlobalVerifyOrder = 0;')
      output.puts('  GlobalOrderError = NULL;')
M
Mark VanderVoord 已提交
217 218
    end

219 220 221 222
    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 已提交
223
    end
224 225 226 227 228 229 230
    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 已提交
231
    end
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
    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)
    output.puts("\n/*=======Suite Setup=====*/")
    output.puts('static void suite_setup(void)')
    output.puts('{')
247 248 249 250 251 252 253 254 255
    if @options[:suite_setup].nil?
      # New style, call suiteSetUp() if we can use weak symbols
      output.puts('#if defined(UNITY_WEAK_ATTRIBUTE) || defined(UNITY_WEAK_PRAGMA)')
      output.puts('  suiteSetUp();')
      output.puts('#endif')
    else
      # Old style, C code embedded in the :suite_setup option
      output.puts(@options[:suite_setup])
    end
256 257 258 259 260 261 262
    output.puts('}')
  end

  def create_suite_teardown(output)
    output.puts("\n/*=======Suite Teardown=====*/")
    output.puts('static int suite_teardown(int num_failures)')
    output.puts('{')
263 264 265 266 267 268 269 270 271 272 273
    if @options[:suite_teardown].nil?
      # New style, call suiteTearDown() if we can use weak symbols
      output.puts('#if defined(UNITY_WEAK_ATTRIBUTE) || defined(UNITY_WEAK_PRAGMA)')
      output.puts('  return suiteTearDown(num_failures);')
      output.puts('#else')
      output.puts('  return num_failures;')
      output.puts('#endif')
    else
      # Old style, C code embedded in the :suite_teardown option
      output.puts(@options[:suite_teardown])
    end
274
    output.puts('}')
M
Mark VanderVoord 已提交
275 276 277 278 279 280
  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__' : ''
281
    output.puts("\n/*=======Test Runner Used To Run Each Test Below=====*/")
282
    output.puts('#define RUN_TEST_NO_ARGS') if @options[:use_param_tests]
M
Mark VanderVoord 已提交
283
    output.puts("#define RUN_TEST(TestFunc, TestLineNum#{va_args1}) \\")
284
    output.puts('{ \\')
M
Mark VanderVoord 已提交
285
    output.puts("  Unity.CurrentTestName = #TestFunc#{va_args2.empty? ? '' : " \"(\" ##{va_args2} \")\""}; \\")
286 287 288 289 290 291 292 293 294
    output.puts('  Unity.CurrentTestLineNumber = TestLineNum; \\')
    output.puts('  if (UnityTestMatches()) { \\') if @options[:cmdline_args]
    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
M
Mark VanderVoord 已提交
295 296
    output.puts("      #{@options[:setup_name]}(); \\")
    output.puts("      TestFunc(#{va_args2}); \\")
297 298 299 300
    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('  { \\')
M
Mark VanderVoord 已提交
301
    output.puts("    #{@options[:teardown_name]}(); \\")
302 303 304 305 306
    output.puts('    CMock_Verify(); \\') unless used_mocks.empty?
    output.puts('  } \\')
    output.puts('  CMock_Destroy(); \\') unless used_mocks.empty?
    output.puts('  UnityConcludeTest(); \\')
    output.puts('  } \\') if @options[:cmdline_args]
M
Mark VanderVoord 已提交
307 308 309 310
    output.puts("}\n")
  end

  def create_reset(output, used_mocks)
311
    output.puts("\n/*=======Test Reset Option=====*/")
312 313 314 315 316
    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?
M
Mark VanderVoord 已提交
317
    output.puts("  #{@options[:teardown_name]}();")
318
    output.puts('  CMock_Init();') unless used_mocks.empty?
M
Mark VanderVoord 已提交
319
    output.puts("  #{@options[:setup_name]}();")
320
    output.puts('}')
M
Mark VanderVoord 已提交
321 322 323
  end

  def create_main(output, filename, tests, used_mocks)
324
    output.puts("\n\n/*=======MAIN=====*/")
325 326 327
    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'
328 329
        output.puts("#{@options[:main_export_decl]} int #{main_name}(int argc, char** argv);")
      end
330
      output.puts("#{@options[:main_export_decl]} int #{main_name}(int argc, char** argv)")
331 332 333 334 335 336 337 338 339
      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]
340
        tests.each do |test|
341
          if test[:args].nil? || test[:args].empty?
342
            output.puts("      UnityPrint(\"  #{test[:test]}(RUN_TEST_NO_ARGS)\");")
343
            output.puts('      UNITY_PRINT_EOL();')
344 345 346
          else
            test[:args].each do |args|
              output.puts("      UnityPrint(\"  #{test[:test]}(#{args})\");")
347
              output.puts('      UNITY_PRINT_EOL();')
348 349 350 351
            end
          end
        end
      else
352
        tests.each { |test| output.puts("      UnityPrint(\"  #{test[:test]}\");\n    UNITY_PRINT_EOL();") }
353
      end
354 355 356 357
      output.puts('    return 0;')
      output.puts('    }')
      output.puts('  return parse_status;')
      output.puts('  }')
358
    else
359
      if main_name != 'main'
360 361
        output.puts("#{@options[:main_export_decl]} int #{main_name}(void);")
      end
362
      output.puts("int #{main_name}(void)")
363
      output.puts('{')
364
    end
365
    output.puts('  suite_setup();')
366 367
    output.puts("  UnityBegin(\"#{filename.gsub(/\\/, '\\\\\\')}\");")
    if @options[:use_param_tests]
M
Mark VanderVoord 已提交
368
      tests.each do |test|
369
        if test[:args].nil? || test[:args].empty?
M
Mark VanderVoord 已提交
370 371
          output.puts("  RUN_TEST(#{test[:test]}, #{test[:line_number]}, RUN_TEST_NO_ARGS);")
        else
372
          test[:args].each { |args| output.puts("  RUN_TEST(#{test[:test]}, #{test[:line_number]}, #{args});") }
M
Mark VanderVoord 已提交
373 374 375
        end
      end
    else
376
      tests.each { |test| output.puts("  RUN_TEST(#{test[:test]}, #{test[:line_number]});") }
M
Mark VanderVoord 已提交
377
    end
378 379
    output.puts
    output.puts('  CMock_Guts_MemFreeFinal();') unless used_mocks.empty?
380
    output.puts("  return suite_teardown(UnityEnd());")
381
    output.puts('}')
M
Mark VanderVoord 已提交
382 383
  end

P
Peter Mendham 已提交
384
  def create_h_file(output, filename, tests, testfile_includes, used_mocks)
385 386
    filename = File.basename(filename).gsub(/[-\/\\\.\,\s]/, '_').upcase
    output.puts('/* AUTOGENERATED FILE. DO NOT EDIT. */')
M
Mark VanderVoord 已提交
387 388
    output.puts("#ifndef _#{filename}")
    output.puts("#define _#{filename}\n\n")
389 390
    output.puts("#include \"#{@options[:framework]}.h\"")
    output.puts('#include "cmock.h"') unless used_mocks.empty?
M
Mark VanderVoord 已提交
391
    @options[:includes].flatten.uniq.compact.each do |inc|
392
      output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
393 394
    end
    testfile_includes.each do |inc|
395
      output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
396 397
    end
    output.puts "\n"
398
    tests.each do |test|
399
      if test[:params].nil? || test[:params].empty?
P
Peter Mendham 已提交
400 401 402 403 404
        output.puts("void #{test[:test]}(void);")
      else
        output.puts("void #{test[:test]}(#{test[:params]});")
      end
    end
M
Mark VanderVoord 已提交
405 406 407 408
    output.puts("#endif\n\n")
  end
end

409
if $0 == __FILE__
410
  options = { includes: [] }
M
Mark VanderVoord 已提交
411

412
  # parse out all the options first (these will all be removed as we go)
M
Mark VanderVoord 已提交
413
  ARGV.reject! do |arg|
414
    case arg
415
    when '-cexception'
416 417
      options[:plugins] = [:cexception]
      true
418
    when /\.*\.ya?ml/
419 420
      options = UnityTestRunnerGenerator.grab_config(arg)
      true
421
    when /--(\w+)=\"?(.*)\"?/
422 423
      options[Regexp.last_match(1).to_sym] = Regexp.last_match(2)
      true
424
    when /\.*\.h/
425 426 427
      options[:includes] << arg
      true
    else false
M
Mark VanderVoord 已提交
428 429 430
    end
  end

431 432
  # make sure there is at least one parameter left (the input file)
  unless ARGV[0]
M
Mark VanderVoord 已提交
433
    puts ["\nusage: ruby #{__FILE__} (files) (options) input_test_file (output)",
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
          "\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',
          '    --main_name=""        - redefine main func name to something else',
          '    --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")
M
Mark VanderVoord 已提交
450 451 452
    exit 1
  end

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

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