rakefile_helper.rb 6.5 KB
Newer Older
1 2 3 4 5 6 7 8
# ==========================================
#   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]
# ==========================================

require 'yaml'
require 'fileutils'
J
John Lindgren 已提交
9 10 11
require_relative '../../auto/unity_test_summary'
require_relative '../../auto/generate_test_runner'
require_relative '../../auto/colour_reporter'
12 13

module RakefileHelpers
14
  C_EXTENSION = '.c'.freeze
15 16

  def load_configuration(config_file)
17 18
    return if $configured

J
John Lindgren 已提交
19
    $cfg_file = "#{__dir__}/../../test/targets/#{config_file}" unless config_file =~ /[\\|\/]/
20 21 22
    $cfg = YAML.load(File.read($cfg_file))
    $colour_output = false unless $cfg['colour']
    $configured = true if config_file != DEFAULT_CONFIG_FILE
23 24 25 26 27 28
  end

  def configure_clean
    CLEAN.include($cfg['compiler']['build_path'] + '*.*') unless $cfg['compiler']['build_path'].nil?
  end

29
  def configure_toolchain(config_file = DEFAULT_CONFIG_FILE)
30 31 32 33 34 35 36
    config_file += '.yml' unless config_file =~ /\.yml$/
    config_file = config_file unless config_file =~ /[\\|\/]/
    load_configuration(config_file)
    configure_clean
  end

  def tackit(strings)
37 38 39 40 41 42
    result = if strings.is_a?(Array)
               "\"#{strings.join}\""
             else
               strings
             end
    result
43 44 45 46 47
  end

  def squash(prefix, items)
    result = ''
    items.each { |item| result += " #{prefix}#{tackit(item)}" }
48
    result
49 50 51
  end

  def build_compiler_fields
52
    command = tackit($cfg['compiler']['path'])
53 54 55
    defines = if $cfg['compiler']['defines']['items'].nil?
                ''
              else
56
                squash($cfg['compiler']['defines']['prefix'], $cfg['compiler']['defines']['items'] + ['UNITY_OUTPUT_CHAR=UnityOutputCharSpy_OutputChar'] + ['UNITY_OUTPUT_CHAR_HEADER_DECLARATION=UnityOutputCharSpy_OutputChar\(int\)'])
57
              end
58 59 60
    options  = squash('', $cfg['compiler']['options'])
    includes = squash($cfg['compiler']['includes']['prefix'], $cfg['compiler']['includes']['items'])
    includes = includes.gsub(/\\ /, ' ').gsub(/\\\"/, '"').gsub(/\\$/, '') # Remove trailing slashes (for IAR)
61

62
    { command: command, defines: defines, options: options, includes: includes }
63 64
  end

65
  def compile(file, _defines = [])
66
    compiler = build_compiler_fields
67 68 69 70
    unity_include = $cfg['compiler']['includes']['prefix'] + '../../src'
    cmd_str = "#{compiler[:command]}#{compiler[:defines]}#{compiler[:options]}#{compiler[:includes]} #{unity_include} #{file} " \
              "#{$cfg['compiler']['object_files']['prefix']}#{$cfg['compiler']['object_files']['destination']}" \
              "#{File.basename(file, C_EXTENSION)}#{$cfg['compiler']['object_files']['extension']}"
71

72 73 74 75
    execute(cmd_str)
  end

  def build_linker_fields
76 77 78 79 80 81
    command = tackit($cfg['linker']['path'])
    options = if $cfg['linker']['options'].nil?
                ''
              else
                squash('', $cfg['linker']['options'])
              end
82 83 84 85 86 87
    includes = if $cfg['linker']['includes'].nil? || $cfg['linker']['includes']['items'].nil?
                 ''
               else
                 squash($cfg['linker']['includes']['prefix'], $cfg['linker']['includes']['items'])
               end.gsub(/\\ /, ' ').gsub(/\\\"/, '"').gsub(/\\$/, '') # Remove trailing slashes (for IAR)

88
    { command: command, options: options, includes: includes }
89 90 91 92 93
  end

  def link_it(exe_name, obj_list)
    linker = build_linker_fields
    cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]} " +
94 95 96 97
              (obj_list.map { |obj| "#{$cfg['linker']['object_files']['path']}#{obj} " }).join +
              $cfg['linker']['bin_files']['prefix'] + ' ' +
              $cfg['linker']['bin_files']['destination'] +
              exe_name + $cfg['linker']['bin_files']['extension']
98 99 100 101 102
    execute(cmd_str)
  end

  def build_simulator_fields
    return nil if $cfg['simulator'].nil?
103 104 105 106 107 108 109 110 111 112
    command = if $cfg['simulator']['path'].nil?
                ''
              else
                (tackit($cfg['simulator']['path']) + ' ')
              end
    pre_support = if $cfg['simulator']['pre_support'].nil?
                    ''
                  else
                    squash('', $cfg['simulator']['pre_support'])
                  end
113 114 115 116 117
    post_support = if $cfg['simulator']['post_support'].nil?
                     ''
                   else
                     squash('', $cfg['simulator']['post_support'])
                   end
118
    { command: command, pre_support: pre_support, post_support: post_support }
119 120
  end

121
  def execute(command_string, verbose = true)
122 123
    report command_string
    output = `#{command_string}`.chomp
124
    report(output) if verbose && !output.nil? && !output.empty?
125
    raise "Command failed. (Returned #{$?.exitstatus})" if $?.exitstatus != 0
126
    output
127 128 129 130
  end

  def report_summary
    summary = UnityTestSummary.new
J
John Lindgren 已提交
131
    summary.root = __dir__
132
    results_glob = "#{$cfg['compiler']['build_path']}*.test*"
133
    results_glob.tr!('\\', '/')
134
    results = Dir[results_glob]
135
    summary.targets = results
136 137 138 139 140 141 142 143 144 145 146 147
    summary.run
  end

  def run_tests
    report 'Running Unity system tests...'

    # Tack on TEST define for compiling unit tests
    load_configuration($cfg_file)
    test_defines = ['TEST']
    $cfg['compiler']['defines']['items'] = [] if $cfg['compiler']['defines']['items'].nil?

    # Get a list of all source files needed
J
John Lindgren 已提交
148 149 150
    src_files  = Dir["#{__dir__}/src/*.c"]
    src_files += Dir["#{__dir__}/test/*.c"]
    src_files += Dir["#{__dir__}/test/main/*.c"]
151 152 153 154
    src_files << '../../src/unity.c'

    # Build object files
    src_files.each { |f| compile(f, test_defines) }
155
    obj_list = src_files.map { |f| File.basename(f.ext($cfg['compiler']['object_files']['extension'])) }
156 157

    # Link the test executable
158
    test_base = 'framework_test'
159 160 161 162 163
    link_it(test_base, obj_list)

    # Execute unit test and generate results file
    simulator = build_simulator_fields
    executable = $cfg['linker']['bin_files']['destination'] + test_base + $cfg['linker']['bin_files']['extension']
164 165 166 167 168
    cmd_str = if simulator.nil?
                executable + ' -v -r'
              else
                "#{simulator[:command]} #{simulator[:pre_support]} #{executable} #{simulator[:post_support]}"
              end
169 170
    output = execute(cmd_str)
    test_results = $cfg['compiler']['build_path'] + test_base
171 172 173 174 175
    test_results += if output.match(/OK$/m).nil?
                      '.testfail'
                    else
                      '.testpass'
                    end
176 177 178
    File.open(test_results, 'w') { |f| f.print output }
  end
end