test/py: Automated conversion to Python 3
authorTom Rini <trini@konsulko.com>
Thu, 24 Oct 2019 15:59:20 +0000 (11:59 -0400)
committerTom Rini <trini@konsulko.com>
Wed, 30 Oct 2019 21:48:47 +0000 (17:48 -0400)
Use the 2to3 tool to perform numerous automatic conversions from Python
2 syntax to Python 3.  Also fix whitespace problems that Python 3
catches that Python 2 did not.

Reviewed-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Stephen Warren <swarren@nvidia.com>
Tested-by: Simon Glass <sjg@chromium.org> [on sandbox]
Signed-off-by: Tom Rini <trini@konsulko.com>
test/py/conftest.py
test/py/multiplexed_log.py
test/py/test.py
test/py/tests/test_fit.py
test/py/tests/test_fpga.py
test/py/tests/test_fs/conftest.py
test/py/tests/test_log.py
test/py/tests/test_mmc_wr.py

index 30c898b40a0d3af163b64eb30d0a22e751deb875..5c19af1d5034cf53a34df15933d77c4f6d2eaf55 100644 (file)
@@ -19,13 +19,10 @@ import os.path
 import pytest
 from _pytest.runner import runtestprotocol
 import re
-import StringIO
+import io
 import sys
 
-try:
-    import configparser
-except:
-    import ConfigParser as configparser
+import configparser
 
 # Globals: The HTML log file, and the connection to the U-Boot console.
 log = None
@@ -169,7 +166,7 @@ def pytest_configure(config):
 
         with open(dot_config, 'rt') as f:
             ini_str = '[root]\n' + f.read()
-            ini_sio = StringIO.StringIO(ini_str)
+            ini_sio = io.StringIO(ini_str)
             parser = configparser.RawConfigParser()
             parser.readfp(ini_sio)
             ubconfig.buildconfig.update(parser.items('root'))
index 637a3bd257ba3855604b446e94f5d571452accbc..de0aacc659b86d3f9b942408ab0ae37aea10f593 100644 (file)
@@ -5,8 +5,8 @@
 # Generate an HTML-formatted log file containing multiple streams of data,
 # each represented in a well-delineated/-structured fashion.
 
-import cgi
 import datetime
+import html
 import os.path
 import shutil
 import subprocess
@@ -334,7 +334,7 @@ $(document).ready(function () {
         data = data.replace(chr(13), '')
         data = ''.join((ord(c) in self._nonprint) and ('%%%02x' % ord(c)) or
                        c for c in data)
-        data = cgi.escape(data)
+        data = html.escape(data)
         return data
 
     def _terminate_stream(self):
index a5140945d4b95107de3c118f9dac339fec82101b..0ce1838833f6f1a38810ee8cf530ae9749068e17 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python3
 # SPDX-License-Identifier: GPL-2.0
 
 # Copyright (c) 2015 Stephen Warren
@@ -7,8 +7,6 @@
 # Wrapper script to invoke pytest with the directory name that contains the
 # U-Boot tests.
 
-from __future__ import print_function
-
 import os
 import os.path
 import sys
index e3210ed43fa4c4e37b5485738d4ff1bec239fb50..4922b9dcc6645b6080c5f2620cebd8af0b08ad14 100755 (executable)
@@ -3,8 +3,6 @@
 #
 # Sanity check of the FIT handling in U-Boot
 
-from __future__ import print_function
-
 import os
 import pytest
 import struct
index e3bb7b41c749f7522b9d91e37c23fd78a561d16e..ca7ef8ea40d66a747950ee91b36dfd3d3bff4a0f 100644 (file)
@@ -175,29 +175,29 @@ def test_fpga_load_fail(u_boot_console):
     f, dev, addr, bit, bit_size = load_file_from_var(u_boot_console, 'bitstream_load')
 
     for cmd in ['dump', 'load', 'loadb']:
-       # missing dev parameter
-       expected = 'fpga: incorrect parameters passed'
-       output = u_boot_console.run_command('fpga %s %x $filesize' % (cmd, addr))
-       #assert expected in output
-       assert expected_usage in output
-
-       # more parameters - 0 at the end
-       expected = 'fpga: more parameters passed'
-       output = u_boot_console.run_command('fpga %s %x %x $filesize 0' % (cmd, dev, addr))
-       #assert expected in output
-       assert expected_usage in output
-
-       # 0 address
-       expected = 'fpga: zero fpga_data address'
-       output = u_boot_console.run_command('fpga %s %x 0 $filesize' % (cmd, dev))
-       #assert expected in output
-       assert expected_usage in output
-
-       # 0 filesize
-       expected = 'fpga: zero size'
-       output = u_boot_console.run_command('fpga %s %x %x 0' % (cmd, dev, addr))
-       #assert expected in output
-       assert expected_usage in output
+        # missing dev parameter
+        expected = 'fpga: incorrect parameters passed'
+        output = u_boot_console.run_command('fpga %s %x $filesize' % (cmd, addr))
+        #assert expected in output
+        assert expected_usage in output
+
+        # more parameters - 0 at the end
+        expected = 'fpga: more parameters passed'
+        output = u_boot_console.run_command('fpga %s %x %x $filesize 0' % (cmd, dev, addr))
+        #assert expected in output
+        assert expected_usage in output
+
+        # 0 address
+        expected = 'fpga: zero fpga_data address'
+        output = u_boot_console.run_command('fpga %s %x 0 $filesize' % (cmd, dev))
+        #assert expected in output
+        assert expected_usage in output
+
+        # 0 filesize
+        expected = 'fpga: zero size'
+        output = u_boot_console.run_command('fpga %s %x %x 0' % (cmd, dev, addr))
+        #assert expected in output
+        assert expected_usage in output
 
 @pytest.mark.buildconfigspec('cmd_fpga')
 @pytest.mark.buildconfigspec('cmd_echo')
index 9324657d216085fe847cecaf789961ee3c08d3a4..354d17672fe47c01156377737b202fc695cef4e9 100644 (file)
@@ -508,8 +508,8 @@ def fs_obj_unlink(request, u_boot_config):
 
         # Test Case 2
         check_call('mkdir %s/dir2' % mount_dir, shell=True)
-       for i in range(0, 20):
-           check_call('mkdir %s/dir2/0123456789abcdef%02x'
+        for i in range(0, 20):
+            check_call('mkdir %s/dir2/0123456789abcdef%02x'
                                     % (mount_dir, i), shell=True)
 
         # Test Case 4
index cb183444c6fc2343c5e78f986263dab3c3d21f22..75325fad61ad5ebd99801172f2a74b23217ae560 100644 (file)
@@ -27,9 +27,9 @@ def test_log(u_boot_console):
         """
         for i in range(max_level):
             if mask & 1:
-                assert 'log_run() log %d' % i == lines.next()
+                assert 'log_run() log %d' % i == next(lines)
             if mask & 3:
-                assert 'func() _log %d' % i == lines.next()
+                assert 'func() _log %d' % i == next(lines)
 
     def run_test(testnum):
         """Run a particular test number (the 'log test' command)
@@ -43,7 +43,7 @@ def test_log(u_boot_console):
            output = u_boot_console.run_command('log test %d' % testnum)
         split = output.replace('\r', '').splitlines()
         lines = iter(split)
-        assert 'test %d' % testnum == lines.next()
+        assert 'test %d' % testnum == next(lines)
         return lines
 
     def test0():
@@ -88,7 +88,7 @@ def test_log(u_boot_console):
     def test10():
         lines = run_test(10)
         for i in range(7):
-            assert 'log_test() level %d' % i == lines.next()
+            assert 'log_test() level %d' % i == next(lines)
 
     # TODO(sjg@chromium.org): Consider structuring this as separate tests
     cons = u_boot_console
index ab4c57974421655a24d2a08c9900f555f92c38c1..05e5c1ee85dadf5f313d5efa2411c6a55a5543f4 100644 (file)
@@ -67,41 +67,39 @@ def test_mmc_wr(u_boot_console, env__mmc_wr_config):
 
 
     for i in range(test_iterations):
-       # Generate random data
-       cmd = 'random %s %x' % (src_addr, count_bytes)
-       response = u_boot_console.run_command(cmd)
-       good_response = '%d bytes filled with random data' % (count_bytes)
-       assert good_response in response
-
-       # Select MMC device
-       cmd = 'mmc dev %d' % devid
-       if is_emmc:
-               cmd += ' %d' % partid
-       response = u_boot_console.run_command(cmd)
-       assert 'no card present' not in response
-       if is_emmc:
-               partid_response = "(part %d)" % partid
-       else:
-               partid_response = ""
-       good_response = 'mmc%d%s is current device' % (devid, partid_response)
-       assert good_response in response
-
-       # Write data
-       cmd = 'mmc write %s %x %x' % (src_addr, sector, count_sectors)
-       response = u_boot_console.run_command(cmd)
-       good_response = 'MMC write: dev # %d, block # %d, count %d ... %d blocks written: OK' % (
-               devid, sector, count_sectors, count_sectors)
-       assert good_response in response
-
-       # Read data
-       cmd = 'mmc read %s %x %x' % (dst_addr, sector, count_sectors)
-       response = u_boot_console.run_command(cmd)
-       good_response = 'MMC read: dev # %d, block # %d, count %d ... %d blocks read: OK' % (
-               devid, sector, count_sectors, count_sectors)
-       assert good_response in response
-
-       # Compare src and dst data
-       cmd = 'cmp.b %s %s %x' % (src_addr, dst_addr, count_bytes)
-       response = u_boot_console.run_command(cmd)
-       good_response = 'Total of %d byte(s) were the same' % (count_bytes)
-       assert good_response in response
+        # Generate random data
+        cmd = 'random %s %x' % (src_addr, count_bytes)
+        response = u_boot_console.run_command(cmd)
+        good_response = '%d bytes filled with random data' % (count_bytes)
+        assert good_response in response
+
+        # Select MMC device
+        cmd = 'mmc dev %d' % devid
+        if is_emmc:
+            cmd += ' %d' % partid
+        response = u_boot_console.run_command(cmd)
+        assert 'no card present' not in response
+        if is_emmc:
+            partid_response = "(part %d)" % partid
+        else:
+            partid_response = ""
+        good_response = 'mmc%d%s is current device' % (devid, partid_response)
+        assert good_response in response
+
+        # Write data
+        cmd = 'mmc write %s %x %x' % (src_addr, sector, count_sectors)
+        response = u_boot_console.run_command(cmd)
+        good_response = 'MMC write: dev # %d, block # %d, count %d ... %d blocks written: OK' % (devid, sector, count_sectors, count_sectors)
+        assert good_response in response
+
+        # Read data
+        cmd = 'mmc read %s %x %x' % (dst_addr, sector, count_sectors)
+        response = u_boot_console.run_command(cmd)
+        good_response = 'MMC read: dev # %d, block # %d, count %d ... %d blocks read: OK' % (devid, sector, count_sectors, count_sectors)
+        assert good_response in response
+
+        # Compare src and dst data
+        cmd = 'cmp.b %s %s %x' % (src_addr, dst_addr, count_bytes)
+        response = u_boot_console.run_command(cmd)
+        good_response = 'Total of %d byte(s) were the same' % (count_bytes)
+        assert good_response in response