You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.4 KiB
87 lines
2.4 KiB
5 years ago
|
# ==========================================
|
||
|
# CMock Project - Automatic Mock Generation for C
|
||
|
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
||
|
# [Released under MIT License. Please refer to license.txt for details]
|
||
|
# ==========================================
|
||
|
|
||
|
[ "../config/production_environment",
|
||
|
"cmock_header_parser",
|
||
|
"cmock_generator",
|
||
|
"cmock_file_writer",
|
||
|
"cmock_config",
|
||
|
"cmock_plugin_manager",
|
||
|
"cmock_generator_utils",
|
||
|
"cmock_unityhelper_parser"].each {|req| require "#{File.expand_path(File.dirname(__FILE__))}/#{req}"}
|
||
|
|
||
|
class CMock
|
||
|
|
||
|
def initialize(options=nil)
|
||
|
cm_config = CMockConfig.new(options)
|
||
|
cm_unityhelper = CMockUnityHelperParser.new(cm_config)
|
||
|
cm_writer = CMockFileWriter.new(cm_config)
|
||
|
cm_gen_utils = CMockGeneratorUtils.new(cm_config, {:unity_helper => cm_unityhelper})
|
||
|
cm_gen_plugins = CMockPluginManager.new(cm_config, cm_gen_utils)
|
||
|
@cm_parser = CMockHeaderParser.new(cm_config)
|
||
|
@cm_generator = CMockGenerator.new(cm_config, cm_writer, cm_gen_utils, cm_gen_plugins)
|
||
|
@silent = (cm_config.verbosity < 2)
|
||
|
end
|
||
|
|
||
|
def setup_mocks(files)
|
||
|
[files].flatten.each do |src|
|
||
|
generate_mock src
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private ###############################
|
||
|
|
||
|
def generate_mock(src)
|
||
|
name = File.basename(src, '.h')
|
||
|
puts "Creating mock for #{name}..." unless @silent
|
||
|
@cm_generator.create_mock(name, @cm_parser.parse(name, File.read(src)))
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def option_maker(options, key, val)
|
||
|
options = options || {}
|
||
|
options[key.to_sym] =
|
||
|
if val.chr == ":"
|
||
|
val[1..-1].to_sym
|
||
|
elsif val.include? ";"
|
||
|
val.split(';')
|
||
|
elsif val == 'true'
|
||
|
true
|
||
|
elsif val == 'false'
|
||
|
false
|
||
|
elsif val =~ /^\d+$/
|
||
|
val.to_i
|
||
|
else
|
||
|
val
|
||
|
end
|
||
|
options
|
||
|
end
|
||
|
|
||
|
# Command Line Support ###############################
|
||
|
|
||
|
if ($0 == __FILE__)
|
||
|
usage = "usage: ruby #{__FILE__} (-oOptionsFile) File(s)ToMock"
|
||
|
|
||
|
if (!ARGV[0])
|
||
|
puts usage
|
||
|
exit 1
|
||
|
end
|
||
|
|
||
|
options = {}
|
||
|
filelist = []
|
||
|
ARGV.each do |arg|
|
||
|
if (arg =~ /^-o\"?([a-zA-Z0-9._\\\/:\s]+)\"?/)
|
||
|
options.merge! CMockConfig.load_config_file_from_yaml( arg.gsub(/^-o/,'') )
|
||
|
elsif (arg =~ /^--([a-zA-Z0-9._\\\/:\s]+)=\"?([a-zA-Z0-9._\-\\\/:\s\;]+)\"?/)
|
||
|
options = option_maker(options, $1, $2)
|
||
|
else
|
||
|
filelist << arg
|
||
|
end
|
||
|
end
|
||
|
|
||
|
CMock.new(options).setup_mocks(filelist)
|
||
|
end
|