blob: 18591df0ce3d8b9a5dde64cb45ea95cc6ae6abdf [file] [log] [blame]
Tobin Ehlis35308dd2016-10-31 13:27:36 -06001#!/usr/bin/env python3
2# Copyright (c) 2015-2016 The Khronos Group Inc.
3# Copyright (c) 2015-2016 Valve Corporation
4# Copyright (c) 2015-2016 LunarG, Inc.
5# Copyright (c) 2015-2016 Google Inc.
6#
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',
53'swapchain.cpp'
Tobin Ehlis35308dd2016-10-31 13:27:36 -060054]
55header_file = 'vk_validation_error_messages.h'
56# TODO : Don't hardcode linux path format if we want this to run on windows
57test_file = '../tests/layer_validation_tests.cpp'
Tobin Ehlis225b59c2016-12-22 13:59:42 -070058# List of enums that are allowed to be used more than once so don't warn on their duplicates
59duplicate_exceptions = [
Tobin Ehlis1fd9eaf2016-12-22 14:31:01 -070060'VALIDATION_ERROR_00018', # This covers the broad case that all child objects must be destroyed at DestroyInstance time
61'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 -070062'VALIDATION_ERROR_00112', # Obj tracker check makes sure non-null framebuffer is valid & CV check makes sure it's compatible w/ renderpass framebuffer
63'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 -070064'VALIDATION_ERROR_00515', # Covers valid shader module handle for both Compute & Graphics pipelines
Tobin Ehlise664a2b2016-12-22 14:10:21 -070065'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 -070066'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.
67'VALIDATION_ERROR_00768', # This case covers two separate checks which are done independently
68'VALIDATION_ERROR_00769', # This case covers two separate checks which are done independently
69'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 -070070'VALIDATION_ERROR_00988', # Single error for mis-matched stageFlags of vkCmdPushConstants() that is flagged for no stage flags & mis-matched flags
71'VALIDATION_ERROR_01088', # Handles both depth/stencil & compressed image errors for vkCmdClearColorImage()
72'VALIDATION_ERROR_01223', # Used for the mipLevel check of both dst & src images on vkCmdCopyImage call
73'VALIDATION_ERROR_01224', # Used for the arraySize check of both dst & src images on vkCmdCopyImage call
74'VALIDATION_ERROR_01450', # Used for both x & y bounds of viewport
75'VALIDATION_ERROR_01489', # Used for both x & y value of scissors to make sure they're not negative
76'VALIDATION_ERROR_01926', # Surface of VkSwapchainCreateInfoKHR must be valid when creating both single or shared swapchains
Tobin Ehlis8ef54c92017-01-04 08:11:01 -070077'VALIDATION_ERROR_01935', # oldSwapchain of VkSwapchainCreateInfoKHR must be valid when creating both single or shared swapchains
Tobin Ehlis2cb8eb22017-01-03 14:09:57 -070078'VALIDATION_ERROR_02333', # Single error for both imageFormat & imageColorSpace requirements when creating swapchain
Tobin Ehlis1fd9eaf2016-12-22 14:31:01 -070079'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 -070080]
Tobin Ehlis35308dd2016-10-31 13:27:36 -060081
82class ValidationDatabase:
83 def __init__(self, filename=db_file):
84 self.db_file = filename
85 self.delimiter = '~^~'
86 self.db_dict = {} # complete dict of all db values per error enum
87 # specialized data structs with slices of complete dict
88 self.db_implemented_enums = [] # list of all error enums claiming to be implemented in database file
Tobin Ehlis2bedc242017-01-12 13:45:55 -070089 self.db_unimplemented_implicit = [] # list of all implicit checks that aren't marked implemented
Tobin Ehlis35308dd2016-10-31 13:27:36 -060090 self.db_enum_to_tests = {} # dict where enum is key to lookup list of tests implementing the enum
91 #self.src_implemented_enums
92 def read(self):
93 """Read a database file into internal data structures, format of each line is <enum><implemented Y|N?><testname><api><errormsg><notes>"""
94 #db_dict = {} # This is a simple db of just enum->errormsg, the same as is created from spec
95 #max_id = 0
96 with open(self.db_file, "r") as infile:
97 for line in infile:
98 line = line.strip()
99 if line.startswith('#') or '' == line:
100 continue
101 db_line = line.split(self.delimiter)
102 if len(db_line) != 6:
Tobin Ehlis027f3212016-12-09 12:15:26 -0700103 print("ERROR: Bad database line doesn't have 6 elements: %s" % (line))
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600104 error_enum = db_line[0]
105 implemented = db_line[1]
106 testname = db_line[2]
107 api = db_line[3]
108 error_str = db_line[4]
109 note = db_line[5]
110 # Read complete database contents into our class var for later use
111 self.db_dict[error_enum] = {}
112 self.db_dict[error_enum]['check_implemented'] = implemented
113 self.db_dict[error_enum]['testname'] = testname
114 self.db_dict[error_enum]['api'] = api
115 self.db_dict[error_enum]['error_string'] = error_str
116 self.db_dict[error_enum]['note'] = note
117 # Now build custom data structs
118 if 'Y' == implemented:
119 self.db_implemented_enums.append(error_enum)
Tobin Ehlis2bedc242017-01-12 13:45:55 -0700120 elif 'implicit' in note: # only make note of non-implemented implicit checks
121 self.db_unimplemented_implicit.append(error_enum)
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600122 if testname.lower() not in ['unknown', 'none']:
123 self.db_enum_to_tests[error_enum] = testname.split(',')
124 #if len(self.db_enum_to_tests[error_enum]) > 1:
125 # print "Found check %s that has multiple tests: %s" % (error_enum, self.db_enum_to_tests[error_enum])
126 #else:
127 # print "Check %s has single test: %s" % (error_enum, self.db_enum_to_tests[error_enum])
128 #unique_id = int(db_line[0].split('_')[-1])
129 #if unique_id > max_id:
130 # max_id = unique_id
131 #print "Found %d total enums in database" % (len(self.db_dict.keys()))
132 #print "Found %d enums claiming to be implemented in source" % (len(self.db_implemented_enums))
133 #print "Found %d enums claiming to have tests implemented" % (len(self.db_enum_to_tests.keys()))
134
135class ValidationHeader:
136 def __init__(self, filename=header_file):
137 self.filename = header_file
138 self.enums = []
139 def read(self):
140 """Read unique error enum header file into internal data structures"""
141 grab_enums = False
142 with open(self.filename, "r") as infile:
143 for line in infile:
144 line = line.strip()
145 if 'enum UNIQUE_VALIDATION_ERROR_CODE {' in line:
146 grab_enums = True
147 continue
148 if grab_enums:
149 if 'VALIDATION_ERROR_MAX_ENUM' in line:
150 grab_enums = False
151 break # done
Tobin Ehlisf53eac32016-12-09 14:10:47 -0700152 elif 'VALIDATION_ERROR_UNDEFINED' in line:
153 continue
154 elif 'VALIDATION_ERROR_' in line:
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600155 enum = line.split(' = ')[0]
156 self.enums.append(enum)
157 #print "Found %d error enums. First is %s and last is %s." % (len(self.enums), self.enums[0], self.enums[-1])
158
159class ValidationSource:
160 def __init__(self, source_file_list):
161 self.source_files = source_file_list
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700162 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 -0700163 # 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 -0700164 self.enum_count_dict['VALIDATION_ERROR_01790'] = {}
165 self.enum_count_dict['VALIDATION_ERROR_01790']['count'] = 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600166 def parse(self):
167 duplicate_checks = 0
168 for sf in self.source_files:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700169 line_num = 0
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600170 with open(sf) as f:
171 for line in f:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700172 line_num = line_num + 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600173 if True in [line.strip().startswith(comment) for comment in ['//', '/*']]:
174 continue
175 # Find enums
176 #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 -0700177 if ' VALIDATION_ERROR_' in line:
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600178 # Need to isolate the validation error enum
179 #print("Line has check:%s" % (line))
180 line_list = line.split()
Tobin Ehlis928742e2016-12-09 17:11:13 -0700181 enum_list = []
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600182 for str in line_list:
Tobin Ehlisf53eac32016-12-09 14:10:47 -0700183 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 -0700184 enum_list.append(str.strip(',);'))
185 #break
186 for enum in enum_list:
187 if enum != '':
188 if enum not in self.enum_count_dict:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700189 self.enum_count_dict[enum] = {}
190 self.enum_count_dict[enum]['count'] = 1
191 self.enum_count_dict[enum]['file_line'] = []
192 self.enum_count_dict[enum]['file_line'].append('%s,%d' % (sf, line_num))
Tobin Ehlis928742e2016-12-09 17:11:13 -0700193 #print "Found enum %s implemented for first time in file %s" % (enum, sf)
194 else:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700195 self.enum_count_dict[enum]['count'] = self.enum_count_dict[enum]['count'] + 1
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 %d time in file %s" % (enum, self.enum_count_dict[enum], sf)
198 duplicate_checks = duplicate_checks + 1
199 #else:
200 #print("Didn't find actual check in line:%s" % (line))
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600201 #print "Found %d unique implemented checks and %d are duplicated at least once" % (len(self.enum_count_dict.keys()), duplicate_checks)
202
203# Class to parse the validation layer test source and store testnames
204# TODO: Enhance class to detect use of unique error enums in the test
205class TestParser:
206 def __init__(self, test_file_list, test_group_name=['VkLayerTest', 'VkPositiveLayerTest', 'VkWsiEnabledLayerTest']):
207 self.test_files = test_file_list
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700208 self.test_to_errors = {} # Dict where testname maps to list of error enums found in that test
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600209 self.test_trigger_txt_list = []
210 for tg in test_group_name:
211 self.test_trigger_txt_list.append('TEST_F(%s' % tg)
212 #print('Test trigger test list: %s' % (self.test_trigger_txt_list))
213
214 # Parse test files into internal data struct
215 def parse(self):
216 # For each test file, parse test names into set
217 grab_next_line = False # handle testname on separate line than wildcard
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700218 testname = ''
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600219 for test_file in self.test_files:
220 with open(test_file) as tf:
221 for line in tf:
222 if True in [line.strip().startswith(comment) for comment in ['//', '/*']]:
223 continue
224
225 if True in [ttt in line for ttt in self.test_trigger_txt_list]:
226 #print('Test wildcard in line: %s' % (line))
227 testname = line.split(',')[-1]
228 testname = testname.strip().strip(' {)')
229 #print('Inserting test: "%s"' % (testname))
230 if ('' == testname):
231 grab_next_line = True
232 continue
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700233 self.test_to_errors[testname] = []
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600234 if grab_next_line: # test name on its own line
235 grab_next_line = False
236 testname = testname.strip().strip(' {)')
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700237 self.test_to_errors[testname] = []
238 if ' VALIDATION_ERROR_' in line:
239 line_list = line.split()
240 for str in line_list:
241 if 'VALIDATION_ERROR_' in str and True not in [ignore_str in str for ignore_str in ['VALIDATION_ERROR_UNDEFINED', 'UNIQUE_VALIDATION_ERROR_CODE', 'VALIDATION_ERROR_MAX_ENUM']]:
242 print("Trying to add enums for line: %s")
243 print("Adding enum %s to test %s" % (str.strip(',);'), testname))
244 self.test_to_errors[testname].append(str.strip(',);'))
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600245
246# Little helper class for coloring cmd line output
247class bcolors:
248
249 def __init__(self):
250 self.GREEN = '\033[0;32m'
251 self.RED = '\033[0;31m'
252 self.YELLOW = '\033[1;33m'
253 self.ENDC = '\033[0m'
254 if 'Linux' != platform.system():
255 self.GREEN = ''
256 self.RED = ''
257 self.YELLOW = ''
258 self.ENDC = ''
259
260 def green(self):
261 return self.GREEN
262
263 def red(self):
264 return self.RED
265
266 def yellow(self):
267 return self.YELLOW
268
269 def endc(self):
270 return self.ENDC
271
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600272def main(argv=None):
Tobin Ehlis20e32582016-12-05 14:50:03 -0700273 result = 0 # Non-zero result indicates an error case
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600274 # parse db
275 val_db = ValidationDatabase()
276 val_db.read()
277 # parse header
278 val_header = ValidationHeader()
279 val_header.read()
280 # Create parser for layer files
281 val_source = ValidationSource(layer_source_files)
282 val_source.parse()
283 # Parse test files
284 test_parser = TestParser([test_file, ])
285 test_parser.parse()
286
287 # Process stats - Just doing this inline in main, could make a fancy class to handle
288 # all the processing of data and then get results from that
289 txt_color = bcolors()
290 print("Validation Statistics")
291 # First give number of checks in db & header and report any discrepancies
292 db_enums = len(val_db.db_dict.keys())
293 hdr_enums = len(val_header.enums)
294 print(" Database file includes %d unique checks" % (db_enums))
295 print(" Header file declares %d unique checks" % (hdr_enums))
296 tmp_db_dict = val_db.db_dict
297 db_missing = []
298 for enum in val_header.enums:
299 if not tmp_db_dict.pop(enum, False):
300 db_missing.append(enum)
301 if db_enums == hdr_enums and len(db_missing) == 0 and len(tmp_db_dict.keys()) == 0:
302 print(txt_color.green() + " Database and Header match, GREAT!" + txt_color.endc())
303 else:
304 print(txt_color.red() + " Uh oh, Database doesn't match Header :(" + txt_color.endc())
Tobin Ehlis20e32582016-12-05 14:50:03 -0700305 result = 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600306 if len(db_missing) != 0:
307 print(txt_color.red() + " The following checks are in header but missing from database:" + txt_color.endc())
308 for missing_enum in db_missing:
309 print(txt_color.red() + " %s" % (missing_enum) + txt_color.endc())
310 if len(tmp_db_dict.keys()) != 0:
311 print(txt_color.red() + " The following checks are in database but haven't been declared in the header:" + txt_color.endc())
312 for extra_enum in tmp_db_dict:
313 print(txt_color.red() + " %s" % (extra_enum) + txt_color.endc())
314 # Report out claimed implemented checks vs. found actual implemented checks
315 imp_not_found = [] # Checks claimed to implemented in DB file but no source found
316 imp_not_claimed = [] # Checks found implemented but not claimed to be in DB
317 multiple_uses = False # Flag if any enums are used multiple times
318 for db_imp in val_db.db_implemented_enums:
319 if db_imp not in val_source.enum_count_dict:
320 imp_not_found.append(db_imp)
321 for src_enum in val_source.enum_count_dict:
Tobin Ehlis225b59c2016-12-22 13:59:42 -0700322 if val_source.enum_count_dict[src_enum]['count'] > 1 and src_enum not in duplicate_exceptions:
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600323 multiple_uses = True
324 if src_enum not in val_db.db_implemented_enums:
325 imp_not_claimed.append(src_enum)
326 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)))
Tobin Ehlis2bedc242017-01-12 13:45:55 -0700327 if len(val_db.db_unimplemented_implicit) > 0:
328 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)))
329 total_checks = len(val_db.db_implemented_enums) + len(val_db.db_unimplemented_implicit)
330 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 -0600331 if len(imp_not_found) == 0 and len(imp_not_claimed) == 0:
332 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())
333 else:
Tobin Ehlis20e32582016-12-05 14:50:03 -0700334 result = 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600335 print(txt_color.red() + " Uh oh, Database claimed implemented don't match Source :(" + txt_color.endc())
336 if len(imp_not_found) != 0:
Tobin Ehlis3f0b2772016-11-18 16:56:15 -0700337 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 -0600338 for not_imp_enum in imp_not_found:
339 print(txt_color.red() + " %s" % (not_imp_enum) + txt_color.endc())
340 if len(imp_not_claimed) != 0:
341 print(txt_color.red() + " The following checks are implemented in source, but not claimed to be in Database:" + txt_color.endc())
342 for imp_enum in imp_not_claimed:
343 print(txt_color.red() + " %s" % (imp_enum) + txt_color.endc())
344 if multiple_uses:
345 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())
346 print(txt_color.yellow() + " Here is a list of each check used multiple times with its number of uses:" + txt_color.endc())
347 for enum in val_source.enum_count_dict:
Tobin Ehlis225b59c2016-12-22 13:59:42 -0700348 if val_source.enum_count_dict[enum]['count'] > 1 and enum not in duplicate_exceptions:
Tobin Ehlis3d1f2bd2016-12-22 11:19:15 -0700349 print(txt_color.yellow() + " %s: %d uses in file,line:" % (enum, val_source.enum_count_dict[enum]['count']) + txt_color.endc())
350 for file_line in val_source.enum_count_dict[enum]['file_line']:
351 print(txt_color.yellow() + " \t%s" % (file_line) + txt_color.endc())
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600352 # Now check that tests claimed to be implemented are actual test names
353 bad_testnames = []
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700354 tests_missing_enum = {} # Report tests that don't use validation error enum to check for error case
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600355 for enum in val_db.db_enum_to_tests:
356 for testname in val_db.db_enum_to_tests[enum]:
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700357 if testname not in test_parser.test_to_errors:
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600358 bad_testnames.append(testname)
Tobin Ehlis9a68c982016-12-29 14:51:17 -0700359 else:
360 enum_found = False
361 for test_enum in test_parser.test_to_errors[testname]:
362 if test_enum == enum:
363 #print("Found test that correctly checks for enum: %s" % (enum))
364 enum_found = True
365 if not enum_found:
366 #print("Test %s is not using enum %s to check for error" % (testname, enum))
367 if testname not in tests_missing_enum:
368 tests_missing_enum[testname] = []
369 tests_missing_enum[testname].append(enum)
370 if tests_missing_enum:
371 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())
372 for testname in tests_missing_enum:
373 print(txt_color.yellow() + " Testname %s does not explicitly check for these ids:" % (testname) + txt_color.endc())
374 for enum in tests_missing_enum[testname]:
375 print(txt_color.yellow() + " %s" % (enum) + txt_color.endc())
376 # 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 -0600377 print(" Database file claims that %d checks have tests written." % len(val_db.db_enum_to_tests))
378 if len(bad_testnames) == 0:
379 print(txt_color.green() + " All claimed tests have valid names. That's good!" + txt_color.endc())
380 else:
381 print(txt_color.red() + " The following testnames in Database appear to be invalid:")
Tobin Ehlis20e32582016-12-05 14:50:03 -0700382 result = 1
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600383 for bt in bad_testnames:
Tobin Ehlisb04c2c62016-11-21 15:51:45 -0700384 print(txt_color.red() + " %s" % (bt) + txt_color.endc())
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600385
Tobin Ehlis20e32582016-12-05 14:50:03 -0700386 return result
Tobin Ehlis35308dd2016-10-31 13:27:36 -0600387
388if __name__ == "__main__":
389 sys.exit(main())
390