proc: test /proc/thread-self symlink
[linux/fpc-iii.git] / tools / testing / selftests / tc-testing / tdc_helper.py
blob9f35c96c88a04ddac1f2c1ebd44b99fc5c5cfe82
1 """
2 # SPDX-License-Identifier: GPL-2.0
3 tdc_helper.py - tdc helper functions
5 Copyright (C) 2017 Lucas Bates <lucasb@mojatatu.com>
6 """
8 def get_categorized_testlist(alltests, ucat):
9 """ Sort the master test list into categories. """
10 testcases = dict()
12 for category in ucat:
13 testcases[category] = list(filter(lambda x: category in x['category'], alltests))
15 return(testcases)
18 def get_unique_item(lst):
19 """ For a list, return a list of the unique items in the list. """
20 return list(set(lst))
23 def get_test_categories(alltests):
24 """ Discover all unique test categories present in the test case file. """
25 ucat = []
26 for t in alltests:
27 ucat.extend(get_unique_item(t['category']))
28 ucat = get_unique_item(ucat)
29 return ucat
31 def list_test_cases(testlist):
32 """ Print IDs and names of all test cases. """
33 for curcase in testlist:
34 print(curcase['id'] + ': (' + ', '.join(curcase['category']) + ") " + curcase['name'])
37 def list_categories(testlist):
38 """ Show all categories that are present in a test case file. """
39 categories = set(map(lambda x: x['category'], testlist))
40 print("Available categories:")
41 print(", ".join(str(s) for s in categories))
42 print("")
45 def print_list(cmdlist):
46 """ Print a list of strings prepended with a tab. """
47 for l in cmdlist:
48 if (type(l) == list):
49 print("\t" + str(l[0]))
50 else:
51 print("\t" + str(l))
54 def print_sll(items):
55 print("\n".join(str(s) for s in items))
58 def print_test_case(tcase):
59 """ Pretty-printing of a given test case. """
60 print('\n==============\nTest {}\t{}\n'.format(tcase['id'], tcase['name']))
61 for k in tcase.keys():
62 if (isinstance(tcase[k], list)):
63 print(k + ":")
64 print_list(tcase[k])
65 else:
66 if not ((k == 'id') or (k == 'name')):
67 print(k + ": " + str(tcase[k]))