forked from include-what-you-use/include-what-you-use
-
Notifications
You must be signed in to change notification settings - Fork 1
/
run_iwyu_tests.py
executable file
·268 lines (242 loc) · 11.1 KB
/
run_iwyu_tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#!/usr/bin/env python
##===--- run_iwyu_tests.py - include-what-you-use test framework driver ---===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
"""A test harness for IWYU testing."""
__author__ = '[email protected] (Dean Sturtevant)'
import glob
import os
import re
import sys
import unittest
import logging
logging.basicConfig(level=logging.INFO)
import posixpath
from fnmatch import fnmatch
import iwyu_test_util
def PosixPath(path):
"""Normalize Windows path separators to POSIX path separators."""
return path.replace('\\', '/')
def Partition(l, delimiter):
try:
delim_index = l.index(delimiter)
except ValueError:
return l, []
return l[:delim_index], l[delim_index+1:]
class OneIwyuTest(unittest.TestCase):
"""Superclass for tests. A subclass per test-file is created at runtime."""
def CheckAlsoExtension(self, extension):
"""Return a suitable iwyu flag for checking files with the given extension.
"""
return '--check_also="%s"' % posixpath.join(self.rootdir, '*' + extension)
def MappingFile(self, filename):
"""Return a suitable iwyu flag for adding the given mapping file."""
return '--mapping_file=%s' % posixpath.join(self.rootdir, filename)
def Include(self, filename):
"""Return a -include switch for clang to force include of file."""
return '-include %s' % posixpath.join(self.rootdir, filename)
def setUp(self):
# Iwyu flags for specific tests.
# Map from filename to flag list. If any test requires special
# iwyu flags to run properly, add an entry to the map with
# key=cc-filename (relative to self.rootdir), value=list of flags.
flags_map = {
'backwards_includes.cc': [self.CheckAlsoExtension('-d*.h')],
'badinc.cc': [self.MappingFile('badinc.imp')],
'check_also.cc': [self.CheckAlsoExtension('-d1.h')],
'implicit_ctor.cc': [self.CheckAlsoExtension('-d1.h')],
'iwyu_stricter_than_cpp.cc': [self.CheckAlsoExtension('-autocast.h'),
self.CheckAlsoExtension('-fnreturn.h'),
self.CheckAlsoExtension('-typedefs.h'),
self.CheckAlsoExtension('-d2.h')],
'keep_mapping.cc': [self.CheckAlsoExtension('-public.h'),
self.MappingFile('keep_mapping.imp')],
'macro_location.cc': [self.CheckAlsoExtension('-d2.h')],
'non_transitive_include.cc': [self.CheckAlsoExtension('-d*.h'),
'--transitive_includes_only'],
'no_h_includes_cc.cc': [self.CheckAlsoExtension('.c')],
'no_comments.cc': ['--no_comments'],
'no_fwd_decls.cc': ['--no_fwd_decls'],
'overloaded_class.cc': [self.CheckAlsoExtension('-i1.h')],
'pch_in_code.cc': ['--pch_in_code', '--prefix_header_includes=remove'],
'prefix_header_attribution.cc': ['--prefix_header_includes=remove'],
'prefix_header_includes_add.cc': ['--prefix_header_includes=add'],
'prefix_header_includes_keep.cc': ['--prefix_header_includes=keep'],
'prefix_header_includes_remove.cc': ['--prefix_header_includes=remove'],
'prefix_header_operator_new.cc': ['--prefix_header_includes=remove'],
}
prefix_headers = [self.Include('prefix_header_includes-d1.h'),
self.Include('prefix_header_includes-d2.h'),
self.Include('prefix_header_includes-d3.h'),
self.Include('prefix_header_includes-d4.h')]
clang_flags_map = {
'alias_template.cc': ['-std=c++11'],
'auto_type_within_template.cc': ['-std=c++11'],
# MSVC targets need to explicitly enable exceptions, so we do it for all.
'catch.cc': ['-fcxx-exceptions', '-fexceptions'],
'clmode.cc': ['--driver-mode=cl', '/GF', '/Os', '/W2'],
'conversion_ctor.cc': ['-std=c++11'],
'deleted_implicit.cc' : ['-std=c++11'],
'funcptrs.cc': ['-Wno-unused'],
'lambda_fwd_decl.cc': ['-std=c++11'],
'lateparsed_template.cc': ['-fdelayed-template-parsing'],
'macro_defined_by_includer.cc': [
'-std=c++11', '-DCOMMAND_LINE_TYPE=double',
self.Include('macro_defined_by_includer-prefix.h')],
'ms_inline_asm.cc': ['-fms-extensions'],
'prefix_header_attribution.cc': [self.Include('prefix_header_attribution-d1.h')],
'prefix_header_includes_add.cc': prefix_headers,
'prefix_header_includes_keep.cc': prefix_headers,
'prefix_header_includes_remove.cc': prefix_headers,
'range_for.cc': ['-std=c++11'],
'typedef_in_template.cc': ['-std=c++11'],
'inheriting_ctor.cc': ['-std=c++11'],
}
include_map = {
'alias_template.cc': ['.'],
'array.cc': ['.'],
'associated_h_file_heuristic.cc': ['.'],
'associated_include.cc': ['.'],
'backwards_includes.cc': ['.'],
'badinc.cc': ['.'],
'badinc-extradef.cc': ['.'],
'funcptrs.cc': ['.'],
'casts.cc': ['.'],
'catch.cc': ['.'],
'check_also.cc': ['.'],
'clmode.cc': ['.'],
'comment_pragmas.cc': ['.'],
'computed_include.cc': ['.'],
'conversion_ctor.cc': ['.'],
'cvr.cc': ['.'],
'default_template_arg_other_file.cc': ['.'],
'depopulated_h_file.cc': ['.'],
'derived_function_tpl_args.cc': ['.'],
'double_include.cc': ['.'],
'elaborated_struct.c': ['.'],
'elaborated_type.cc': ['.'],
'external_including_internal.cc': ['.'],
'forward_declare_in_macro.cc': ['.'],
'fullinfo_for_templates.cc': ['.'],
'fwd_decl_class_template.cc': ['.'],
'fwd_decl_static_member.cc': ['.'],
'fwd_decl_with_instantiation.cc': ['.'],
'header_in_subfolder.cc': ['.'],
'implicit_ctor.cc': ['.'],
'include_cycle.cc': ['.'],
'include_with_using.cc': ['.'],
'internal/internal_files.cc': ['.'],
'iwyu_stricter_than_cpp.cc': ['.'],
'keep_mapping.cc': ['.'],
'lateparsed_template.cc': ['.'],
'macro_defined_by_includer.cc': ['.'],
'macro_location.cc': ['.'],
'member_expr.cc': ['.'],
'multiple_include_paths.cc': ['.'],
'new_header_path_provided.cc': ['.'],
'no_comments.cc': ['.'],
'no_fwd_decl_nested_class.cc': ['.'],
'no_fwd_decls.cc': ['.'],
'no_h_includes_cc.cc': ['.'],
'non_transitive_include.cc': ['.'],
'overloaded_class.cc': ['.'],
'pch_in_code.cc': ['.'],
'pointer_arith.cc': ['.'],
'pragma_associated.cc': ['.'],
'precomputed_tpl_args.cc': ['.'],
'prefix_header_attribution.cc': ['.'],
'prefix_header_includes_add.cc': ['.'],
'prefix_header_includes_keep.cc': ['.'],
'prefix_header_includes_remove.cc': ['.'],
'range_for.cc': ['.'],
're_fwd_decl.cc': ['.'],
'redecls.cc': ['.'],
'remove_fwd_decl_when_including.cc': ['.'],
'self_include.cc': ['.'],
'sizeof_reference.cc': ['.'],
'specialization_needs_decl.cc': ['.'],
'system_namespaces.cc': ['.'],
'template_args.cc': ['.'],
'templated_constructor.cc': ['.'],
'template_specialization.cc': ['.'],
'typedef_chain_in_template.cc': ['.'],
'typedef_chain_no_follow.cc': ['.'],
'typedef_in_template.cc': ['.'],
'typedefs_and_resugaring.cc': ['.'],
'unused_class_template_ctor.cc': ['.'],
'uses_printf.cc': ['.'],
'using_aliased_symbol.cc': ['.'],
'using_aliased_symbol_unused.cc': ['.'],
'varargs_and_references.cc': ['.'],
'virtual_tpl_method.cc': ['.'],
}
# Internally, we like it when the paths start with rootdir.
self._iwyu_flags_map = dict((posixpath.join(self.rootdir, k), v)
for (k,v) in flags_map.items())
self._clang_flags_map = dict((posixpath.join(self.rootdir, k), v)
for (k,v) in clang_flags_map.items())
self._include_map = dict((posixpath.join(self.rootdir, k), ['-I ' + include for include in v])
for (k,v) in include_map.items())
def RunOneTest(self, filename):
logging.info('Testing iwyu on %s', filename)
# Split full/path/to/foo.cc into full/path/to/foo and .cc.
(all_but_extension, _) = os.path.splitext(filename)
(dirname, basename) = os.path.split(all_but_extension)
# Generate diagnostics on all foo-* files (well, not other
# foo-*.cc files, which is not kosher but is legal), in addition
# to foo.h (if present) and foo.cc.
all_files = (glob.glob('%s-*' % all_but_extension) +
glob.glob('%s/*/%s-*' % (dirname, basename)) +
glob.glob('%s.h' % all_but_extension) +
glob.glob('%s/*/%s.h' % (dirname, basename)))
files_to_check = [f for f in all_files if not fnmatch(f, self.pattern)]
files_to_check.append(filename)
# IWYU emits summaries with canonicalized filepaths, where all the
# directory separators are set to '/'. In order for the testsuite to
# correctly match up file summaries, we must canonicalize the filepaths
# in the same way here.
files_to_check = [PosixPath(f) for f in files_to_check]
iwyu_flags = self._iwyu_flags_map.get(filename, None)
clang_flags = self._clang_flags_map.get(filename, [])
clang_flags.extend(self._include_map.get(filename, []))
iwyu_test_util.TestIwyuOnRelativeFile(self, filename, files_to_check,
iwyu_flags, clang_flags, verbose=True)
def RegisterFilesForTesting(rootdir, pattern):
"""Create a test-class for every file in rootdir matching pattern."""
filenames = []
for (dirpath, dirs, files) in os.walk(rootdir):
dirpath = PosixPath(dirpath) # Normalize path separators.
filenames.extend(posixpath.join(dirpath, f) for f in files
if fnmatch(f, pattern))
if not filenames:
print('No tests found in %s!' % os.path.abspath(rootdir))
return
module = sys.modules[__name__]
for filename in filenames:
all_but_extension = os.path.splitext(filename)[0]
basename = os.path.basename(all_but_extension)
class_name = re.sub('[^0-9a-zA-Z_]', '_', basename) # python-clean
if class_name[0].isdigit(): # classes can't start with a number
class_name = '_' + class_name
while class_name in module.__dict__: # already have a class with that name
class_name += '2' # just append a suffix :-)
logging.info('Registering %s to test %s', class_name, filename)
test_class = type(class_name, # class name
(OneIwyuTest,), # superclass
# and attrs. f=filename is required for proper scoping
{'runTest': lambda self, f=filename: self.RunOneTest(f),
'rootdir': rootdir,
'pattern': pattern})
setattr(module, test_class.__name__, test_class)
if __name__ == '__main__':
unittest_args, additional_args = Partition(sys.argv, '--')
if additional_args:
iwyu_test_util.SetIwyuPath(additional_args[0])
RegisterFilesForTesting('tests/cxx', '*.cc')
RegisterFilesForTesting('tests/c', '*.c')
unittest.main(argv=unittest_args)