2 # SPDX-License-Identifier: GPL-2.0
3 tdc_helper.py - tdc helper functions
5 Copyright (C) 2017 Lucas Bates <lucasb@mojatatu.com>
8 def get_categorized_testlist(alltests
, ucat
):
9 """ Sort the master test list into categories. """
13 testcases
[category
] = list(filter(lambda x
: category
in x
['category'], alltests
))
18 def get_unique_item(lst
):
19 """ For a list, return a list of the unique items in the list. """
26 def get_test_categories(alltests
):
27 """ Discover all unique test categories present in the test case file. """
30 ucat
.extend(get_unique_item(t
['category']))
31 ucat
= get_unique_item(ucat
)
34 def list_test_cases(testlist
):
35 """ Print IDs and names of all test cases. """
36 for curcase
in testlist
:
37 print(curcase
['id'] + ': (' + ', '.join(curcase
['category']) + ") " + curcase
['name'])
40 def list_categories(testlist
):
41 """ Show all categories that are present in a test case file. """
42 categories
= set(map(lambda x
: x
['category'], testlist
))
43 print("Available categories:")
44 print(", ".join(str(s
) for s
in categories
))
48 def print_list(cmdlist
):
49 """ Print a list of strings prepended with a tab. """
52 print("\t" + str(l
[0]))
58 print("\n".join(str(s
) for s
in items
))
61 def print_test_case(tcase
):
62 """ Pretty-printing of a given test case. """
63 print('\n==============\nTest {}\t{}\n'.format(tcase
['id'], tcase
['name']))
64 for k
in tcase
.keys():
65 if (isinstance(tcase
[k
], list)):
69 if not ((k
== 'id') or (k
== 'name')):
70 print(k
+ ": " + str(tcase
[k
]))