blob: acf73aece843d8c4990d1bf04027c1bc4a988fdd [file] [log] [blame]
Tobin Ehlis35308dd2016-10-31 13:27:36 -06001#!/usr/bin/env python3
Mike Weiblenfe186122017-02-03 12:44:53 -07002# Copyright (c) 2015-2017 The Khronos Group Inc.
3# Copyright (c) 2015-2017 Valve Corporation
4# Copyright (c) 2015-2017 LunarG, Inc.
5# Copyright (c) 2015-2017 Google Inc.
Tobin Ehlis35308dd2016-10-31 13:27:36 -06006#
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18#
19# Author: Tobin Ehlis <tobine@google.com>
20
21import argparse
22import os
23import sys
24import platform
25
26# vk_validation_stats.py overview
27# This script is intended to generate statistics on the state of validation code
28# based on information parsed from the source files and the database file
29# Here's what it currently does:
30# 1. Parse vk_validation_error_database.txt to store claimed state of validation checks
31# 2. Parse vk_validation_error_messages.h to verify the actual checks in header vs. the
32# claimed state of the checks
33# 3. Parse source files to identify which checks are implemented and verify that this
34# exactly matches the list of checks claimed to be implemented in the database
35# 4. Parse test file(s) and verify that reported tests exist
36# 5. Report out stats on number of checks, implemented checks, and duplicated checks
37#
Tobin Ehlis20e32582016-12-05 14:50:03 -070038# If a mis-match is found during steps 2, 3, or 4, then the script exits w/ a non-zero error code
39# otherwise, the script will exit(0)
40#
Tobin Ehlis35308dd2016-10-31 13:27:36 -060041# TODO:
42# 1. Would also like to report out number of existing checks that don't yet use new, unique enum
43# 2. Could use notes to store custom fields (like TODO) and print those out here
44# 3. Update test code to check if tests use new, unique enums to check for errors instead of strings
45
46db_file = 'vk_validation_error_database.txt'
47layer_source_files = [
48'core_validation.cpp',
49'descriptor_sets.cpp',
50'parameter_validation.cpp',
51'object_tracker.cpp',
Mike Weiblen6a27de52016-12-09 17:36:28 -070052'image.cpp',
Mark Lobodzinskibfab4a62017-01-27 15:34:37 -070053'buffer_validation.cpp',
Mike Weiblen6a27de52016-12-09 17:36:28 -070054'swapchain.cpp'
Tobin Ehlis35308dd2016-10-31 13:27:36 -060055]
56header_file = 'vk_validation_error_messages.h'
57# TODO : Don't hardcode linux path format if we want this to run on windows
58test_file = '../tests/layer_validation_tests.cpp'
Tobin Ehlis225b59c2016-12-22 13:59:42 -070059# List of enums that are allowed to be used more than once so don't warn on their duplicates
60duplicate_exceptions = [
Tobin Ehlis1fd9eaf2016-12-22 14:31:01 -070061'VALIDATION_ERROR_00018', # This covers the broad case that all child objects must be destroyed at DestroyInstance time
62'VALIDATION_ERROR_00049', # This covers the broad case that all child objects must be destroyed at DestroyDevice time
Tobin Ehlis8ef54c92017-01-04 08:11:01 -070063'VALIDATION_ERROR_00112', # Obj tracker check makes sure non-null framebuffer is valid & CV check makes sure it's compatible w/ renderpass framebuffer
64'VALIDATION_ERROR_00324', # This is an aliasing error that we report twice, for each of the two allocations that are aliasing
Tobin Ehlis2cb8eb22017-01-03 14:09:57 -070065'VALIDATION_ERROR_00515', # Covers valid shader module handle for both Compute & Graphics pipelines
Tobin Ehlise664a2b2016-12-22 14:10:21 -070066'VALIDATION_ERROR_00648', # This is a case for VkMappedMemoryRange struct that is used by both Flush & Invalidate MappedMemoryRange
Tobin Ehlis1fd9eaf2016-12-22 14:31:01 -070067'VALIDATION_ERROR_00741', # This is a blanket case for all invalid image aspect bit errors. The spec link has appropriate details for all separate cases.
68'VALIDATION_ERROR_00768', # This case covers two separate checks which are done independently
69'VALIDATION_ERROR_00769', # This case covers two separate checks which are done independently
70'VALIDATION_ERROR_00942', # This is a descriptor set write update error that we use for a couple copy cases as well
Tobin Ehlis2cb8eb22017-01-03 14:09:57 -070071'VALIDATION_ERROR_00988', # Single error for mis-matched stageFlags of vkCmdPushConstants() that is flagged for no stage flags & mis-matched flags
72'VALIDATION_ERROR_01088', # Handles both depth/stencil & compressed image errors for vkCmdClearColorImage()
73'VALIDATION_ERROR_01223', # Used for the mipLevel check of both dst & src images on vkCmdCopyImage call
74'VALIDATION_ERROR_01224', # Used for the arraySize check of both dst & src images on vkCmdCopyImage call
75'VALIDATION_ERROR_01450', # Used for both x & y bounds of viewport
76'VALIDATION_ERROR_01489', # Used for both x & y value of scissors to make sure they're not negative
77'VALIDATION_ERROR_01926', # Surface of VkSwapchainCreateInfoKHR must be valid when creating both single or shared swapchains
Tobin Ehlis8ef54c92017-01-04 08:11:01 -070078'VALIDATION_ERROR_01935', # oldSwapchain of VkSwapchainCreateInfoKHR must be valid when creating both single or shared swapchains
Tobin Ehlis2cb8eb22017-01-03 14:09:57 -070079'VALIDATION_ERROR_02333', # Single error for both imageFormat & imageColorSpace requirements when creating swapchain
Tobin Ehlis1fd9eaf2016-12-22 14:31:01 -070080'VALIDATION_ERROR_02525', # Used twice for the same error codepath as both a param & to set a variable, so not really a duplicate
Tobin Ehlis225b59c2016-12-22 13:59:42 -070081]
Tobin Ehlis35308dd2016-10-31 13:27:36 -060082
83class ValidationDatabase:
84 def __init__(self, filename=db_file):
85 self.db_file = filename
86 self.delimiter = '~^~'
87 self.db_dict = {} # complete dict of all db values per error enum
88 # specialized data structs with slices of complete dict
89 self.db_implemented_enums = [] # list of all error enums claiming to be implemented in database file
Tobin Ehlis2bedc242017-01-12 13:45:55 -070090 self.db_unimplemented_implicit = [] # list of all implicit checks that aren't marked implemented
Tobin Ehlis35308dd2016-10-31 13:27:36 -060091 self.db_enum_to_tests = {} # dict where enum is key to lookup list of tests implementing the enum
Mike Weiblenfe186122017-02-03 12:44:53 -070092 self.db_invalid_implemented = [] # list of checks with invalid check_implemented flags
Tobin Ehlis35308dd2016-10-31 13:27:36 -060093 #self.src_implemented_enums
94 def read(self):
95 """Read a database file into internal data structures, format of each line is <enum><implemented Y|N?><testname><api><errormsg><notes>"""
96 #db_dict = {} # This is a simple db of just enum->errormsg, the same as is created from spec
97 #max_id = 0
98 with open(self.db_file, "r") as infile:
99 for line in infile:
100 line = line.strip()
101 if line.startswith('#') or '' == line:
102 continue
103 db_line = line.split(self.delimiter)
104 if len(db_line) != 6:
Tobin Ehlis027f3212016-12-09 12:15:26 -0700105 print("ERROR: Bad database line doesn't have 6 elements: %s" % (line))
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600106 error_enum = db_line[0]
107 implemented = db_line[1]
108 testname = db_line[2]
109 api = db_line[3]
110 error_str = db_line[4]
111 note = db_line[5]
112 # Read complete database contents into our class var for later use
113 self.db_dict[error_enum] = {}
114 self.db_dict[error_enum]['check_implemented'] = implemented
115 self.db_dict[error_enum]['testname'] = testname
116 self.db_dict[error_enum]['api'] = api
117 self.db_dict[error_enum]['error_string'] = error_str
118 self.db_dict[error_enum]['note'] = note
119 # Now build custom data structs
120 if 'Y' == implemented:
121 self.db_implemented_enums.append(error_enum)
Tobin Ehlis2bedc242017-01-12 13:45:55 -0700122 elif 'implicit' in note: # only make note of non-implemented implicit checks
123 self.db_unimplemented_implicit.append(error_enum)
Mike Weiblenfe186122017-02-03 12:44:53 -0700124 if implemented not in ['Y', 'N']:
125 self.db_invalid_implemented.append(error_enum)
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600126 if testname.lower() not in ['unknown', 'none']:
127 self.db_enum_to_tests[error_enum] = testname.split(',')
128 #if len(self.db_enum_to_tests[error_enum]) > 1:
129 # print "Found check %s that has multiple tests: %s" % (error_enum, self.db_enum_to_tests[error_enum])
130 #else:
131 # print "Check %s has single test: %s" % (error_enum, self.db_enum_to_tests[error_enum])
132 #unique_id = int(db_line[0].split('_')[-1])
133 #if unique_id > max_id:
134 # max_id = unique_id
135 #print "Found %d total enums in database" % (len(self.db_dict.keys()))
136 #print "Found %d enums claiming to be implemented in source" % (len(self.db_implemented_enums))
137 #print "Found %d enums claiming to have tests implemented" % (len(self.db_enum_to_tests.keys()))
138
139class ValidationHeader:
140 def __init__(self, filename=header_file):
141 self.filename = header_file
142 self.enums = []
143 def read(self):
144 """Read unique error enum header file into internal data structures"""
145 grab_enums = False
146 with open(self.filename, "r") as infile:
147 for line in infile:
148 line = line.strip()
149 if 'enum UNIQUE_VALIDATION_ERROR_CODE {' in line:
150 grab_enums = True
151 continue
152 if grab_enums:
153 if 'VALIDATION_ERROR_MAX_ENUM' in line:
154 grab_enums = False
155 break # done
Tobin Ehlisf53eac32016-12-09 14:10:47 -0700156 elif 'VALIDATION_ERROR_UNDEFINED' in line:
157 continue
158 elif 'VALIDATION_ERROR_' in line:
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600159 enum = line.split(' = ')[0]
160 self.enums.append(enum)
161 #print "Found %d error enums. First is %s and last is %s." % (len(self.enums), self.enums[0], self.enums[-1])
162
163class ValidationSource:
164 def __init__(self, source_file_list):
165 self.source_files = source_file_list
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700166 self.enum_count_dict = {} # dict of enum values to the count of how much they're used, and location of where they're used
Tobin Ehlis3d9dd942016-11-23 13:08:01 -0700167 # 1790 is a special case that provides an exception when an extension is enabled. No specific error is flagged, but the exception is handled so add it here
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700168 self.enum_count_dict['VALIDATION_ERROR_01790'] = {}
169 self.enum_count_dict['VALIDATION_ERROR_01790']['count'] = 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600170 def parse(self):
171 duplicate_checks = 0
172 for sf in self.source_files:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700173 line_num = 0
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600174 with open(sf) as f:
175 for line in f:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700176 line_num = line_num + 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600177 if True in [line.strip().startswith(comment) for comment in ['//', '/*']]:
178 continue
179 # Find enums
180 #if 'VALIDATION_ERROR_' in line and True not in [ignore in line for ignore in ['[VALIDATION_ERROR_', 'UNIQUE_VALIDATION_ERROR_CODE']]:
Tobin Ehlisf53eac32016-12-09 14:10:47 -0700181 if ' VALIDATION_ERROR_' in line:
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600182 # Need to isolate the validation error enum
183 #print("Line has check:%s" % (line))
184 line_list = line.split()
Tobin Ehlis928742e2016-12-09 17:11:13 -0700185 enum_list = []
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600186 for str in line_list:
Tobin Ehlisf53eac32016-12-09 14:10:47 -0700187 if 'VALIDATION_ERROR_' in str and True not in [ignore_str in str for ignore_str in ['[VALIDATION_ERROR_', 'VALIDATION_ERROR_UNDEFINED', 'UNIQUE_VALIDATION_ERROR_CODE']]:
Tobin Ehlis928742e2016-12-09 17:11:13 -0700188 enum_list.append(str.strip(',);'))
189 #break
190 for enum in enum_list:
191 if enum != '':
192 if enum not in self.enum_count_dict:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700193 self.enum_count_dict[enum] = {}
194 self.enum_count_dict[enum]['count'] = 1
195 self.enum_count_dict[enum]['file_line'] = []
196 self.enum_count_dict[enum]['file_line'].append('%s,%d' % (sf, line_num))
Tobin Ehlis928742e2016-12-09 17:11:13 -0700197 #print "Found enum %s implemented for first time in file %s" % (enum, sf)
198 else:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700199 self.enum_count_dict[enum]['count'] = self.enum_count_dict[enum]['count'] + 1
200 self.enum_count_dict[enum]['file_line'].append('%s,%d' % (sf, line_num))
Tobin Ehlis928742e2016-12-09 17:11:13 -0700201 #print "Found enum %s implemented for %d time in file %s" % (enum, self.enum_count_dict[enum], sf)
202 duplicate_checks = duplicate_checks + 1
203 #else:
204 #print("Didn't find actual check in line:%s" % (line))
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600205 #print "Found %d unique implemented checks and %d are duplicated at least once" % (len(self.enum_count_dict.keys()), duplicate_checks)
206
207# Class to parse the validation layer test source and store testnames
208# TODO: Enhance class to detect use of unique error enums in the test
209class TestParser:
210 def __init__(self, test_file_list, test_group_name=['VkLayerTest', 'VkPositiveLayerTest', 'VkWsiEnabledLayerTest']):
211 self.test_files = test_file_list
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700212 self.test_to_errors = {} # Dict where testname maps to list of error enums found in that test
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600213 self.test_trigger_txt_list = []
214 for tg in test_group_name:
215 self.test_trigger_txt_list.append('TEST_F(%s' % tg)
216 #print('Test trigger test list: %s' % (self.test_trigger_txt_list))
217
218 # Parse test files into internal data struct
219 def parse(self):
220 # For each test file, parse test names into set
221 grab_next_line = False # handle testname on separate line than wildcard
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700222 testname = ''
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600223 for test_file in self.test_files:
224 with open(test_file) as tf:
225 for line in tf:
226 if True in [line.strip().startswith(comment) for comment in ['//', '/*']]:
227 continue
228
229 if True in [ttt in line for ttt in self.test_trigger_txt_list]:
230 #print('Test wildcard in line: %s' % (line))
231 testname = line.split(',')[-1]
232 testname = testname.strip().strip(' {)')
233 #print('Inserting test: "%s"' % (testname))
234 if ('' == testname):
235 grab_next_line = True
236 continue
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700237 self.test_to_errors[testname] = []
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600238 if grab_next_line: # test name on its own line
239 grab_next_line = False
240 testname = testname.strip().strip(' {)')
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700241 self.test_to_errors[testname] = []
242 if ' VALIDATION_ERROR_' in line:
243 line_list = line.split()
Tobin Ehlis71f38c12017-01-12 14:26:56 -0700244 for sub_str in line_list:
245 if 'VALIDATION_ERROR_' in sub_str and True not in [ignore_str in sub_str for ignore_str in ['VALIDATION_ERROR_UNDEFINED', 'UNIQUE_VALIDATION_ERROR_CODE', 'VALIDATION_ERROR_MAX_ENUM']]:
246 #print("Trying to add enums for line: %s" % ())
247 #print("Adding enum %s to test %s" % (sub_str.strip(',);'), testname))
248 self.test_to_errors[testname].append(sub_str.strip(',);'))
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600249
250# Little helper class for coloring cmd line output
251class bcolors:
252
253 def __init__(self):
254 self.GREEN = '\033[0;32m'
255 self.RED = '\033[0;31m'
256 self.YELLOW = '\033[1;33m'
257 self.ENDC = '\033[0m'
258 if 'Linux' != platform.system():
259 self.GREEN = ''
260 self.RED = ''
261 self.YELLOW = ''
262 self.ENDC = ''
263
264 def green(self):
265 return self.GREEN
266
267 def red(self):
268 return self.RED
269
270 def yellow(self):
271 return self.YELLOW
272
273 def endc(self):
274 return self.ENDC
275
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600276def main(argv=None):
Tobin Ehlis20e32582016-12-05 14:50:03 -0700277 result = 0 # Non-zero result indicates an error case
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600278 # parse db
279 val_db = ValidationDatabase()
280 val_db.read()
281 # parse header
282 val_header = ValidationHeader()
283 val_header.read()
284 # Create parser for layer files
285 val_source = ValidationSource(layer_source_files)
286 val_source.parse()
287 # Parse test files
288 test_parser = TestParser([test_file, ])
289 test_parser.parse()
290
291 # Process stats - Just doing this inline in main, could make a fancy class to handle
292 # all the processing of data and then get results from that
293 txt_color = bcolors()
Mike Weiblenfe186122017-02-03 12:44:53 -0700294
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600295 print("Validation Statistics")
296 # First give number of checks in db & header and report any discrepancies
297 db_enums = len(val_db.db_dict.keys())
298 hdr_enums = len(val_header.enums)
299 print(" Database file includes %d unique checks" % (db_enums))
300 print(" Header file declares %d unique checks" % (hdr_enums))
Mike Weiblenfe186122017-02-03 12:44:53 -0700301
302 # Report any checks that have an invalid check_implemented flag
303 if len(val_db.db_invalid_implemented) > 0:
304 result = 1
305 print(txt_color.red() + "The following checks have an invalid check_implemented flag (must be 'Y' or 'N'):" + txt_color.endc())
306 for invalid_imp_enum in val_db.db_invalid_implemented:
307 check_implemented = val_db.db_dict[invalid_imp_enum]['check_implemented']
308 print(txt_color.red() + " %s has check_implemented flag '%s'" % (invalid_imp_enum, check_implemented) + txt_color.endc())
309
310 # Report details about how well the Database and Header are synchronized.
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600311 tmp_db_dict = val_db.db_dict
312 db_missing = []
313 for enum in val_header.enums:
314 if not tmp_db_dict.pop(enum, False):
315 db_missing.append(enum)
316 if db_enums == hdr_enums and len(db_missing) == 0 and len(tmp_db_dict.keys()) == 0:
317 print(txt_color.green() + " Database and Header match, GREAT!" + txt_color.endc())
318 else:
319 print(txt_color.red() + " Uh oh, Database doesn't match Header :(" + txt_color.endc())
Tobin Ehlis20e32582016-12-05 14:50:03 -0700320 result = 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600321 if len(db_missing) != 0:
322 print(txt_color.red() + " The following checks are in header but missing from database:" + txt_color.endc())
323 for missing_enum in db_missing:
324 print(txt_color.red() + " %s" % (missing_enum) + txt_color.endc())
325 if len(tmp_db_dict.keys()) != 0:
326 print(txt_color.red() + " The following checks are in database but haven't been declared in the header:" + txt_color.endc())
327 for extra_enum in tmp_db_dict:
328 print(txt_color.red() + " %s" % (extra_enum) + txt_color.endc())
Mike Weiblenfe186122017-02-03 12:44:53 -0700329
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600330 # Report out claimed implemented checks vs. found actual implemented checks
331 imp_not_found = [] # Checks claimed to implemented in DB file but no source found
332 imp_not_claimed = [] # Checks found implemented but not claimed to be in DB
333 multiple_uses = False # Flag if any enums are used multiple times
334 for db_imp in val_db.db_implemented_enums:
335 if db_imp not in val_source.enum_count_dict:
336 imp_not_found.append(db_imp)
337 for src_enum in val_source.enum_count_dict:
Tobin Ehlis225b59c2016-12-22 13:59:42 -0700338 if val_source.enum_count_dict[src_enum]['count'] > 1 and src_enum not in duplicate_exceptions:
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600339 multiple_uses = True
340 if src_enum not in val_db.db_implemented_enums:
341 imp_not_claimed.append(src_enum)
342 print(" Database file claims that %d checks (%s) are implemented in source." % (len(val_db.db_implemented_enums), "{0:.0f}%".format(float(len(val_db.db_implemented_enums))/db_enums * 100)))
Mike Weiblenfe186122017-02-03 12:44:53 -0700343
Tobin Ehlis2bedc242017-01-12 13:45:55 -0700344 if len(val_db.db_unimplemented_implicit) > 0:
345 print(" Database file claims %d implicit checks (%s) that are not implemented." % (len(val_db.db_unimplemented_implicit), "{0:.0f}%".format(float(len(val_db.db_unimplemented_implicit))/db_enums * 100)))
346 total_checks = len(val_db.db_implemented_enums) + len(val_db.db_unimplemented_implicit)
347 print(" If all implicit checks are handled by parameter validation this is a total of %d (%s) checks covered." % (total_checks, "{0:.0f}%".format(float(total_checks)/db_enums * 100)))
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600348 if len(imp_not_found) == 0 and len(imp_not_claimed) == 0:
349 print(txt_color.green() + " All claimed Database implemented checks have been found in source, and no source checks aren't claimed in Database, GREAT!" + txt_color.endc())
350 else:
Tobin Ehlis20e32582016-12-05 14:50:03 -0700351 result = 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600352 print(txt_color.red() + " Uh oh, Database claimed implemented don't match Source :(" + txt_color.endc())
353 if len(imp_not_found) != 0:
Tobin Ehlis3f0b2772016-11-18 16:56:15 -0700354 print(txt_color.red() + " The following %d checks are claimed to be implemented in Database, but weren't found in source:" % (len(imp_not_found)) + txt_color.endc())
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600355 for not_imp_enum in imp_not_found:
356 print(txt_color.red() + " %s" % (not_imp_enum) + txt_color.endc())
357 if len(imp_not_claimed) != 0:
358 print(txt_color.red() + " The following checks are implemented in source, but not claimed to be in Database:" + txt_color.endc())
359 for imp_enum in imp_not_claimed:
360 print(txt_color.red() + " %s" % (imp_enum) + txt_color.endc())
Mike Weiblenfe186122017-02-03 12:44:53 -0700361
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600362 if multiple_uses:
363 print(txt_color.yellow() + " Note that some checks are used multiple times. These may be good candidates for new valid usage spec language." + txt_color.endc())
364 print(txt_color.yellow() + " Here is a list of each check used multiple times with its number of uses:" + txt_color.endc())
365 for enum in val_source.enum_count_dict:
Tobin Ehlis225b59c2016-12-22 13:59:42 -0700366 if val_source.enum_count_dict[enum]['count'] > 1 and enum not in duplicate_exceptions:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700367 print(txt_color.yellow() + " %s: %d uses in file,line:" % (enum, val_source.enum_count_dict[enum]['count']) + txt_color.endc())
368 for file_line in val_source.enum_count_dict[enum]['file_line']:
369 print(txt_color.yellow() + " \t%s" % (file_line) + txt_color.endc())
Mike Weiblenfe186122017-02-03 12:44:53 -0700370
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600371 # Now check that tests claimed to be implemented are actual test names
372 bad_testnames = []
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700373 tests_missing_enum = {} # Report tests that don't use validation error enum to check for error case
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600374 for enum in val_db.db_enum_to_tests:
375 for testname in val_db.db_enum_to_tests[enum]:
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700376 if testname not in test_parser.test_to_errors:
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600377 bad_testnames.append(testname)
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700378 else:
379 enum_found = False
380 for test_enum in test_parser.test_to_errors[testname]:
381 if test_enum == enum:
382 #print("Found test that correctly checks for enum: %s" % (enum))
383 enum_found = True
384 if not enum_found:
385 #print("Test %s is not using enum %s to check for error" % (testname, enum))
386 if testname not in tests_missing_enum:
387 tests_missing_enum[testname] = []
388 tests_missing_enum[testname].append(enum)
389 if tests_missing_enum:
390 print(txt_color.yellow() + " \nThe following tests do not use their reported enums to check for the validation error. You may want to update these to pass the expected enum to SetDesiredFailureMsg:" + txt_color.endc())
391 for testname in tests_missing_enum:
392 print(txt_color.yellow() + " Testname %s does not explicitly check for these ids:" % (testname) + txt_color.endc())
393 for enum in tests_missing_enum[testname]:
394 print(txt_color.yellow() + " %s" % (enum) + txt_color.endc())
Mike Weiblenfe186122017-02-03 12:44:53 -0700395
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700396 # TODO : Go through all enums found in the test file and make sure they're correctly documented in the database file
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600397 print(" Database file claims that %d checks have tests written." % len(val_db.db_enum_to_tests))
398 if len(bad_testnames) == 0:
399 print(txt_color.green() + " All claimed tests have valid names. That's good!" + txt_color.endc())
400 else:
401 print(txt_color.red() + " The following testnames in Database appear to be invalid:")
Tobin Ehlis20e32582016-12-05 14:50:03 -0700402 result = 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600403 for bt in bad_testnames:
Tobin Ehlisb04c2c62016-11-21 15:51:45 -0700404 print(txt_color.red() + " %s" % (bt) + txt_color.endc())
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600405
Tobin Ehlis20e32582016-12-05 14:50:03 -0700406 return result
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600407
408if __name__ == "__main__":
409 sys.exit(main())
410