[igt-dev] [PATCH i-g-t v3 13/14] scripts/test_list.py: add support to return a string instead of print

Kamil Konieczny kamil.konieczny at linux.intel.com
Thu Jul 13 12:09:03 UTC 2023


Hi Mauro,

On 2023-07-13 at 09:50:53 +0200, Mauro Carvalho Chehab wrote:
> From: Mauro Carvalho Chehab <mchehab at kernel.org>
> 
> Sometimes, we don't want to print a testlist, but instead to return
> it for post-processing. One such example is to add a Sphinx extension
> to parse it and place the results on some existing ReST file.
> 
> Add support for it.
> 
> A side effect is that we don't need to redirect capture anymore to
> to store the output on a file.
> 
> Signed-off-by: Mauro Carvalho Chehab <mchehab at kernel.org>

Reviewed-by: Kamil Konieczny <kamil.konieczny at linux.intel.com>

> ---
>  scripts/test_list.py | 79 ++++++++++++++++++++------------------------
>  1 file changed, 36 insertions(+), 43 deletions(-)
> 
> diff --git a/scripts/test_list.py b/scripts/test_list.py
> index 8e7ddef2bfb4..8c45a8f2aaeb 100644
> --- a/scripts/test_list.py
> +++ b/scripts/test_list.py
> @@ -616,20 +616,13 @@ class TestList:
>      # Output methods
>      #
>  
> -    def print_rest_flat(self, filename = None):
> +    def print_rest_flat(self, filename = None, return_string = False):
>  
>          """Print tests and subtests ordered by tests"""
>  
> -        handler = None
> -        if filename:
> -            original_stdout = sys.stdout
> -            handler = open(filename, "w", encoding='utf8') # pylint: disable=R1732
> -            sys.stdout = handler
> -
> -        print("=" * len(self.title))
> -        print(self.title)
> -        print("=" * len(self.title))
> -        print()
> +        out = "=" * len(self.title) + "\n"
> +        out += self.title + "\n"
> +        out += "=" * len(self.title) + "\n\n"
>  
>          for test in sorted(self.doc.keys()):
>              fname = self.doc[test]["File"]
> @@ -651,10 +644,9 @@ class TestList:
>              if not subtest_array:
>                  continue
>  
> -            print(len(name) * '=')
> -            print(name)
> -            print(len(name) * '=')
> -            print()
> +            out += len(name) * '=' + "\n"
> +            out += name + "\n"
> +            out += len(name) * '=' + "\n\n"
>  
>              for field in sorted(self.doc[test].keys()):
>                  if field == "subtest":
> @@ -666,29 +658,30 @@ class TestList:
>                  if field == "subtest_line":
>                      continue
>  
> -                print(f":{field}: {self.doc[test][field]}")
> +                out += f":{field}: {self.doc[test][field]}\n"
>  
>              for subtest in subtest_array:
>  
> -                print()
> -                print(subtest["_summary_"])
> -                print(len(subtest["_summary_"]) * '=')
> -                print("")
> +                out += "\n" + subtest["_summary_"] + "\n"
> +                out += len(subtest["_summary_"]) * '=' + "\n\n"
>  
>                  for field in sorted(subtest.keys()):
>                      if field in [ '_summary_', 'arg', 'subtest_line' ]:
>                          continue
>  
> -                    print(f":{field}:", subtest[field])
> +                    out += f":{field}:" + subtest[field] + "\n"
>  
> -                print()
> +                out += "\n"
>  
> -            print()
> -            print()
> +            out += "\n\n"
>  
> -        if handler:
> -            handler.close()
> -            sys.stdout = original_stdout
> +        if filename:
> +            with open(filename, "w", encoding='utf8') as handle:
> +                handle.write(out)
> +        elif not return_string:
> +            print(out)
> +        else:
> +            return out
>  
>      def get_spreadsheet(self):
>  
> @@ -732,7 +725,7 @@ class TestList:
>                      sheet[row].append('')
>          return sheet
>  
> -    def print_nested_rest(self, filename = None):
> +    def print_nested_rest(self, filename = None, return_string = False):
>  
>          """Print tests and subtests ordered by tests"""
>  
> @@ -742,10 +735,9 @@ class TestList:
>              handler = open(filename, "w", encoding='utf8') # pylint: disable=R1732
>              sys.stdout = handler
>  
> -        print("=" * len(self.title))
> -        print(self.title)
> -        print("=" * len(self.title))
> -        print()
> +        out = "=" * len(self.title) + "\n"
> +        out += self.title + "\n"
> +        out += "=" * len(self.title) + "\n\n"
>  
>          # Identify the sort order for the fields
>          fields_order = []
> @@ -789,14 +781,11 @@ class TestList:
>  
>                  title_str = fields_order[i] + ": " + fields[fields_order[i]]
>  
> -                print(title_str)
> -                print(level_markers[marker] * len(title_str))
> -                print()
> +                out += title_str + "\n"
> +                out += level_markers[marker] * len(title_str) + "\n\n"
>                  marker += 1
>  
> -            print()
> -            print("``" + subtest + "``")
> -            print()
> +            out += "\n``" + subtest + "``" + "\n\n"
>  
>              # print non-hierarchy fields
>              for field in fields_order:
> @@ -804,7 +793,7 @@ class TestList:
>                      continue
>  
>                  if field in fields:
> -                    print(f":{field}: {fields[field]}")
> +                    out += f":{field}: {fields[field]}" + "\n"
>  
>              # Store current values
>              for i in range(cur_level, len(fields_order)):
> @@ -816,11 +805,15 @@ class TestList:
>                  else:
>                      old_fields[i] = ''
>  
> -            print()
> +            out += "\n"
>  
> -        if handler:
> -            handler.close()
> -            sys.stdout = original_stdout
> +        if filename:
> +            with open(filename, "w", encoding='utf8') as handle:
> +                handle.write(out)
> +        elif not return_string:
> +            print(out)
> +        else:
> +            return out
>  
>      def print_json(self, out_fname):
>  
> -- 
> 2.40.1
> 


More information about the igt-dev mailing list