test/py: Shorten u_boot_console

This fixture name is quite long and results in lots of verbose code.
We know this is U-Boot so the 'u_boot_' part is not necessary.

But it is also a bit of a misnomer, since it provides access to all the
information available to tests. It is not just the console.

It would be too confusing to use con as it would be confused with
config and it is probably too short.

So shorten it to 'ubman'.

Signed-off-by: Simon Glass <sjg@chromium.org>
Link: https://lore.kernel.org/u-boot/CAFLszTgPa4aT_J9h9pqeTtLCVn4x2JvLWRcWRD8NaN3uoSAtyA@mail.gmail.com/
This commit is contained in:
Simon Glass
2025-02-09 09:07:14 -07:00
parent 00dfb7038e
commit 752c376987
105 changed files with 2676 additions and 2676 deletions

View File

@@ -22,8 +22,8 @@ env__mdio_util_test = {
}
"""
def get_mdio_test_env(u_boot_console):
f = u_boot_console.config.env.get("env__mdio_util_test", None)
def get_mdio_test_env(ubman):
f = ubman.config.env.get("env__mdio_util_test", None)
if not f or len(f) == 0:
pytest.skip("No PHY device to test!")
else:
@@ -31,9 +31,9 @@ def get_mdio_test_env(u_boot_console):
@pytest.mark.buildconfigspec("cmd_mii")
@pytest.mark.buildconfigspec("phylib")
def test_mdio_list(u_boot_console):
f = get_mdio_test_env(u_boot_console)
output = u_boot_console.run_command("mdio list")
def test_mdio_list(ubman):
f = get_mdio_test_env(ubman)
output = ubman.run_command("mdio list")
for dev, val in f.items():
phy_addr = val.get("phy_addr")
dev_name = val.get("device_name")
@@ -43,24 +43,24 @@ def test_mdio_list(u_boot_console):
@pytest.mark.buildconfigspec("cmd_mii")
@pytest.mark.buildconfigspec("phylib")
def test_mdio_read(u_boot_console):
f = get_mdio_test_env(u_boot_console)
output = u_boot_console.run_command("mdio list")
def test_mdio_read(ubman):
f = get_mdio_test_env(ubman)
output = ubman.run_command("mdio list")
for dev, val in f.items():
phy_addr = hex(val.get("phy_addr"))
dev_name = val.get("device_name")
reg = hex(val.get("reg"))
reg_val = hex(val.get("reg_val"))
output = u_boot_console.run_command(f"mdio read {phy_addr} {reg}")
output = ubman.run_command(f"mdio read {phy_addr} {reg}")
assert f"PHY at address {int(phy_addr, 16):x}:" in output
assert f"{int(reg, 16):x} - {reg_val}" in output
@pytest.mark.buildconfigspec("cmd_mii")
@pytest.mark.buildconfigspec("phylib")
def test_mdio_write(u_boot_console):
f = get_mdio_test_env(u_boot_console)
output = u_boot_console.run_command("mdio list")
def test_mdio_write(ubman):
f = get_mdio_test_env(ubman)
output = ubman.run_command("mdio list")
for dev, val in f.items():
phy_addr = hex(val.get("phy_addr"))
dev_name = val.get("device_name")
@@ -68,12 +68,12 @@ def test_mdio_write(u_boot_console):
reg_val = hex(val.get("reg_val"))
wr_val = hex(val.get("write_val"))
u_boot_console.run_command(f"mdio write {phy_addr} {reg} {wr_val}")
output = u_boot_console.run_command(f"mdio read {phy_addr} {reg}")
ubman.run_command(f"mdio write {phy_addr} {reg} {wr_val}")
output = ubman.run_command(f"mdio read {phy_addr} {reg}")
assert f"PHY at address {int(phy_addr, 16):x}:" in output
assert f"{int(reg, 16):x} - {wr_val}" in output
u_boot_console.run_command(f"mdio write {phy_addr} {reg} {reg_val}")
output = u_boot_console.run_command(f"mdio read {phy_addr} {reg}")
ubman.run_command(f"mdio write {phy_addr} {reg} {reg_val}")
output = ubman.run_command(f"mdio read {phy_addr} {reg}")
assert f"PHY at address {int(phy_addr, 16):x}:" in output
assert f"{int(reg, 16):x} - {reg_val}" in output