Commit 56de7cc8 authored by Abseil Team's avatar Abseil Team Committed by Mark Barolak
Browse files

Googletest export

Fix gmock_gen to use MOCK_METHOD instead of old style macros.

PiperOrigin-RevId: 294360947
parent 360f5f70
...@@ -35,11 +35,11 @@ from cpp import utils ...@@ -35,11 +35,11 @@ from cpp import utils
# Preserve compatibility with Python 2.3. # Preserve compatibility with Python 2.3.
try: try:
_dummy = set _dummy = set
except NameError: except NameError:
import sets import sets
set = sets.Set set = sets.Set
_VERSION = (1, 0, 1) # The version of this script. _VERSION = (1, 0, 1) # The version of this script.
# How many spaces to indent. Can set me with the INDENT environment variable. # How many spaces to indent. Can set me with the INDENT environment variable.
...@@ -47,182 +47,202 @@ _INDENT = 2 ...@@ -47,182 +47,202 @@ _INDENT = 2
def _RenderType(ast_type): def _RenderType(ast_type):
"""Renders the potentially recursively templated type into a string. """Renders the potentially recursively templated type into a string.
Args: Args:
ast_type: The AST of the type. ast_type: The AST of the type.
Returns: Returns:
Rendered string of the type Rendered string and a boolean to indicate whether we have multiple args
(which is not handled correctly).
""" """
# Add modifiers like 'const'. has_multiarg_error = False
modifiers = '' # Add modifiers like 'const'.
if ast_type.modifiers: modifiers = ''
modifiers = ' '.join(ast_type.modifiers) + ' ' if ast_type.modifiers:
return_type = modifiers + ast_type.name modifiers = ' '.join(ast_type.modifiers) + ' '
if ast_type.templated_types: return_type = modifiers + ast_type.name
# Collect template args. if ast_type.templated_types:
template_args = [] # Collect template args.
for arg in ast_type.templated_types: template_args = []
rendered_arg = _RenderType(arg) for arg in ast_type.templated_types:
template_args.append(rendered_arg) rendered_arg, e = _RenderType(arg)
return_type += '<' + ', '.join(template_args) + '>' if e: has_multiarg_error = True
if ast_type.pointer: template_args.append(rendered_arg)
return_type += '*' return_type += '<' + ', '.join(template_args) + '>'
if ast_type.reference: # We are actually not handling multi-template-args correctly. So mark it.
return_type += '&' if len(template_args) > 1:
return return_type has_multiarg_error = True
if ast_type.pointer:
return_type += '*'
if ast_type.reference:
return_type += '&'
return return_type, has_multiarg_error
def _GetNumParameters(parameters, source):
num_parameters = len(parameters)
if num_parameters == 1:
first_param = parameters[0]
if source[first_param.start:first_param.end].strip() == 'void':
# We must treat T(void) as a function with no parameters.
return 0
return num_parameters
def _GenerateMethods(output_lines, source, class_node): def _GenerateMethods(output_lines, source, class_node):
function_type = ( function_type = (ast.FUNCTION_VIRTUAL | ast.FUNCTION_PURE_VIRTUAL |
ast.FUNCTION_VIRTUAL | ast.FUNCTION_PURE_VIRTUAL | ast.FUNCTION_OVERRIDE) ast.FUNCTION_OVERRIDE)
ctor_or_dtor = ast.FUNCTION_CTOR | ast.FUNCTION_DTOR ctor_or_dtor = ast.FUNCTION_CTOR | ast.FUNCTION_DTOR
indent = ' ' * _INDENT indent = ' ' * _INDENT
for node in class_node.body: for node in class_node.body:
# We only care about virtual functions. # We only care about virtual functions.
if (isinstance(node, ast.Function) and node.modifiers & function_type and if (isinstance(node, ast.Function) and
not node.modifiers & ctor_or_dtor): node.modifiers & function_type and
# Pick out all the elements we need from the original function. not node.modifiers & ctor_or_dtor):
modifiers = 'override' # Pick out all the elements we need from the original function.
if node.modifiers & ast.FUNCTION_CONST: const = ''
modifiers = 'const, ' + modifiers if node.modifiers & ast.FUNCTION_CONST:
const = 'CONST_'
return_type = 'void' num_parameters = _GetNumParameters(node.parameters, source)
if node.return_type: return_type = 'void'
return_type = _RenderType(node.return_type) if node.return_type:
# commas mess with macros, so nest it in parens if it has one return_type, has_multiarg_error = _RenderType(node.return_type)
if ',' in return_type: if has_multiarg_error:
return_type = '(' + return_type + ')' for line in [
'// The following line won\'t really compile, as the return',
args = '' '// type has multiple template arguments. To fix it, use a',
if node.parameters: '// typedef for the return type.']:
# Get the full text of the parameters from the start output_lines.append(indent + line)
# of the first parameter to the end of the last parameter. tmpl = ''
start = node.parameters[0].start if class_node.templated_types:
end = node.parameters[-1].end tmpl = '_T'
# Remove // comments. mock_method_macro = 'MOCK_%sMETHOD%d%s' % (const, num_parameters, tmpl)
args_strings = re.sub(r'//.*', '', source[start:end])
# Remove /* comments */. args = ''
args_strings = re.sub(r'/\*.*\*/', '', args_strings) if node.parameters:
# Remove default arguments. # Get the full text of the parameters from the start
args_strings = re.sub(r'=.*,', ',', args_strings) # of the first parameter to the end of the last parameter.
args_strings = re.sub(r'=.*', '', args_strings) start = node.parameters[0].start
# Condense multiple spaces and eliminate newlines putting the end = node.parameters[-1].end
# parameters together on a single line. Ensure there is a # Remove // comments.
# space in an argument which is split by a newline without args_strings = re.sub(r'//.*', '', source[start:end])
# intervening whitespace, e.g.: int\nBar # Remove /* comments */.
args_strings = re.sub(' +', ' ', args_strings.replace('\n', ' ')) args_strings = re.sub(r'/\*.*\*/', '', args_strings)
# Remove spaces from the begining, end, and before commas # Remove default arguments.
args = re.sub(' ,', ',', args_strings).strip() args_strings = re.sub(r'=.*,', ',', args_strings)
args_strings = re.sub(r'=.*', '', args_strings)
# Create the mock method definition. # Condense multiple spaces and eliminate newlines putting the
output_lines.extend([ # parameters together on a single line. Ensure there is a
'%sMOCK_METHOD(%s, %s, (%s), (%s));' % # space in an argument which is split by a newline without
(indent, return_type, node.name, args, modifiers) # intervening whitespace, e.g.: int\nBar
]) args = re.sub(' +', ' ', args_strings.replace('\n', ' '))
# Create the mock method definition.
output_lines.extend(['%s%s(%s,' % (indent, mock_method_macro, node.name),
'%s%s(%s));' % (indent * 3, return_type, args)])
def _GenerateMocks(filename, source, ast_list, desired_class_names): def _GenerateMocks(filename, source, ast_list, desired_class_names):
processed_class_names = set() processed_class_names = set()
lines = [] lines = []
for node in ast_list: for node in ast_list:
if (isinstance(node, ast.Class) and node.body and if (isinstance(node, ast.Class) and node.body and
# desired_class_names being None means that all classes are selected. # desired_class_names being None means that all classes are selected.
(not desired_class_names or node.name in desired_class_names)): (not desired_class_names or node.name in desired_class_names)):
class_name = node.name class_name = node.name
parent_name = class_name parent_name = class_name
processed_class_names.add(class_name) processed_class_names.add(class_name)
class_node = node class_node = node
# Add namespace before the class. # Add namespace before the class.
if class_node.namespace: if class_node.namespace:
lines.extend(['namespace %s {' % n for n in class_node.namespace]) # } lines.extend(['namespace %s {' % n for n in class_node.namespace]) # }
lines.append('') lines.append('')
# Add template args for templated classes. # Add template args for templated classes.
if class_node.templated_types: if class_node.templated_types:
# TODO(paulchang): The AST doesn't preserve template argument order, # TODO(paulchang): The AST doesn't preserve template argument order,
# so we have to make up names here. # so we have to make up names here.
# TODO(paulchang): Handle non-type template arguments (e.g. # TODO(paulchang): Handle non-type template arguments (e.g.
# template<typename T, int N>). # template<typename T, int N>).
template_arg_count = len(class_node.templated_types.keys()) template_arg_count = len(class_node.templated_types.keys())
template_args = ['T%d' % n for n in range(template_arg_count)] template_args = ['T%d' % n for n in range(template_arg_count)]
template_decls = ['typename ' + arg for arg in template_args] template_decls = ['typename ' + arg for arg in template_args]
lines.append('template <' + ', '.join(template_decls) + '>') lines.append('template <' + ', '.join(template_decls) + '>')
parent_name += '<' + ', '.join(template_args) + '>' parent_name += '<' + ', '.join(template_args) + '>'
# Add the class prolog. # Add the class prolog.
lines.append('class Mock%s : public %s {' # } lines.append('class Mock%s : public %s {' # }
% (class_name, parent_name)) % (class_name, parent_name))
lines.append('%spublic:' % (' ' * (_INDENT // 2))) lines.append('%spublic:' % (' ' * (_INDENT // 2)))
# Add all the methods. # Add all the methods.
_GenerateMethods(lines, source, class_node) _GenerateMethods(lines, source, class_node)
# Close the class. # Close the class.
if lines: if lines:
# If there are no virtual methods, no need for a public label. # If there are no virtual methods, no need for a public label.
if len(lines) == 2: if len(lines) == 2:
del lines[-1] del lines[-1]
# Only close the class if there really is a class. # Only close the class if there really is a class.
lines.append('};') lines.append('};')
lines.append('') # Add an extra newline. lines.append('') # Add an extra newline.
# Close the namespace. # Close the namespace.
if class_node.namespace: if class_node.namespace:
for i in range(len(class_node.namespace) - 1, -1, -1): for i in range(len(class_node.namespace) - 1, -1, -1):
lines.append('} // namespace %s' % class_node.namespace[i]) lines.append('} // namespace %s' % class_node.namespace[i])
lines.append('') # Add an extra newline. lines.append('') # Add an extra newline.
if desired_class_names: if desired_class_names:
missing_class_name_list = list(desired_class_names - processed_class_names) missing_class_name_list = list(desired_class_names - processed_class_names)
if missing_class_name_list: if missing_class_name_list:
missing_class_name_list.sort() missing_class_name_list.sort()
sys.stderr.write('Class(es) not found in %s: %s\n' % sys.stderr.write('Class(es) not found in %s: %s\n' %
(filename, ', '.join(missing_class_name_list))) (filename, ', '.join(missing_class_name_list)))
elif not processed_class_names: elif not processed_class_names:
sys.stderr.write('No class found in %s\n' % filename) sys.stderr.write('No class found in %s\n' % filename)
return lines return lines
def main(argv=sys.argv): def main(argv=sys.argv):
if len(argv) < 2: if len(argv) < 2:
sys.stderr.write('Google Mock Class Generator v%s\n\n' % sys.stderr.write('Google Mock Class Generator v%s\n\n' %
'.'.join(map(str, _VERSION))) '.'.join(map(str, _VERSION)))
sys.stderr.write(__doc__) sys.stderr.write(__doc__)
return 1 return 1
global _INDENT global _INDENT
try: try:
_INDENT = int(os.environ['INDENT']) _INDENT = int(os.environ['INDENT'])
except KeyError: except KeyError:
pass pass
except: except:
sys.stderr.write('Unable to use indent of %s\n' % os.environ.get('INDENT')) sys.stderr.write('Unable to use indent of %s\n' % os.environ.get('INDENT'))
filename = argv[1] filename = argv[1]
desired_class_names = None # None means all classes in the source file. desired_class_names = None # None means all classes in the source file.
if len(argv) >= 3: if len(argv) >= 3:
desired_class_names = set(argv[2:]) desired_class_names = set(argv[2:])
source = utils.ReadFile(filename) source = utils.ReadFile(filename)
if source is None: if source is None:
return 1 return 1
builder = ast.BuilderFromSource(source, filename) builder = ast.BuilderFromSource(source, filename)
try: try:
entire_ast = filter(None, builder.Generate()) entire_ast = filter(None, builder.Generate())
except KeyboardInterrupt: except KeyboardInterrupt:
return return
except: except:
# An error message was already printed since we couldn't parse. # An error message was already printed since we couldn't parse.
sys.exit(1) sys.exit(1)
else: else:
lines = _GenerateMocks(filename, source, entire_ast, desired_class_names) lines = _GenerateMocks(filename, source, entire_ast, desired_class_names)
sys.stdout.write('\n'.join(lines)) sys.stdout.write('\n'.join(lines))
if __name__ == '__main__': if __name__ == '__main__':
main(sys.argv) main(sys.argv)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment