]> Git Repo - J-u-boot.git/blobdiff - test/boot/bootflow.c
Merge tag 'v2023.10-rc4' into next
[J-u-boot.git] / test / boot / bootflow.c
index ead71172e12fd6f3237db43da37c3f1e830f420e..f5b2059140acae8f5a9d463ebf99b9c3462e3106 100644 (file)
@@ -27,7 +27,8 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
-extern U_BOOT_DRIVER(bootmeth_script);
+extern U_BOOT_DRIVER(bootmeth_cros);
+extern U_BOOT_DRIVER(bootmeth_2script);
 
 static int inject_response(struct unit_test_state *uts)
 {
@@ -167,21 +168,22 @@ static int bootflow_cmd_scan_e(struct unit_test_state *uts)
        ut_assert_nextline("Seq  Method       State   Uclass    Part  Name                      Filename");
        ut_assert_nextlinen("---");
        ut_assert_nextline("Scanning bootdev 'mmc2.bootdev':");
-       ut_assert_nextline("  0  extlinux     media   mmc          0  mmc2.bootdev.whole        <NULL>");
+       ut_assert_nextline("  0  extlinux     media   mmc          0  mmc2.bootdev.whole        ");
        ut_assert_nextline("     ** No partition found, err=-93: Protocol not supported");
-       ut_assert_nextline("  1  efi          media   mmc          0  mmc2.bootdev.whole        <NULL>");
+       ut_assert_nextline("  1  efi          media   mmc          0  mmc2.bootdev.whole        ");
        ut_assert_nextline("     ** No partition found, err=-93: Protocol not supported");
 
        ut_assert_nextline("Scanning bootdev 'mmc1.bootdev':");
-       ut_assert_nextline("  2  extlinux     media   mmc          0  mmc1.bootdev.whole        <NULL>");
+       ut_assert_nextline("  2  extlinux     media   mmc          0  mmc1.bootdev.whole        ");
        ut_assert_nextline("     ** No partition found, err=-2: No such file or directory");
-       ut_assert_nextline("  3  efi          media   mmc          0  mmc1.bootdev.whole        <NULL>");
+       ut_assert_nextline("  3  efi          media   mmc          0  mmc1.bootdev.whole        ");
        ut_assert_nextline("     ** No partition found, err=-2: No such file or directory");
        ut_assert_nextline("  4  extlinux     ready   mmc          1  mmc1.bootdev.part_1       /extlinux/extlinux.conf");
        ut_assert_nextline("  5  efi          fs      mmc          1  mmc1.bootdev.part_1       efi/boot/bootsbox.efi");
 
        ut_assert_skip_to_line("Scanning bootdev 'mmc0.bootdev':");
-       ut_assert_skip_to_line(" 3f  efi          media   mmc          0  mmc0.bootdev.whole        <NULL>");
+       ut_assert_skip_to_line(
+               " 3f  efi          media   mmc          0  mmc0.bootdev.whole        ");
        ut_assert_nextline("     ** No partition found, err=-93: Protocol not supported");
        ut_assert_nextline("No more bootdevs");
        ut_assert_nextlinen("---");
@@ -192,10 +194,11 @@ static int bootflow_cmd_scan_e(struct unit_test_state *uts)
        ut_assert_nextline("Showing all bootflows");
        ut_assert_nextline("Seq  Method       State   Uclass    Part  Name                      Filename");
        ut_assert_nextlinen("---");
-       ut_assert_nextline("  0  extlinux     media   mmc          0  mmc2.bootdev.whole        <NULL>");
-       ut_assert_nextline("  1  efi          media   mmc          0  mmc2.bootdev.whole        <NULL>");
-       ut_assert_skip_to_line("  4  extlinux     ready   mmc          1  mmc1.bootdev.part_1       /extlinux/extlinux.conf");
-       ut_assert_skip_to_line(" 3f  efi          media   mmc          0  mmc0.bootdev.whole        <NULL>");
+       ut_assert_nextline("  0  extlinux     media   mmc          0  mmc2.bootdev.whole        ");
+       ut_assert_nextline("  1  efi          media   mmc          0  mmc2.bootdev.whole        ");
+       ut_assert_skip_to_line(
+               "  4  extlinux     ready   mmc          1  mmc1.bootdev.part_1       /extlinux/extlinux.conf");
+       ut_assert_skip_to_line(" 3f  efi          media   mmc          0  mmc0.bootdev.whole        ");
        ut_assert_nextlinen("---");
        ut_assert_nextline("(64 bootflows, 1 valid)");
        ut_assert_console_end();
@@ -384,7 +387,7 @@ static int bootflow_system(struct unit_test_state *uts)
        console_record_reset_enable();
        ut_assertok(run_command("bootflow scan -lH", 0));
        ut_assert_skip_to_line(
-               "  0  efi_mgr      ready   (none)       0  <NULL>                    <NULL>");
+               "  0  efi_mgr      ready   (none)       0  <NULL>                    ");
        ut_assert_skip_to_line("No more bootdevs");
        ut_assert_skip_to_line("(2 bootflows, 2 valid)");
        ut_assert_console_end();
@@ -506,29 +509,40 @@ static int bootflow_cmd_boot(struct unit_test_state *uts)
 BOOTSTD_TEST(bootflow_cmd_boot, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
 
 /**
- * prep_mmc4_bootdev() - Set up the mmc4 bootdev so we can access a fake Armbian
+ * prep_mmc_bootdev() - Set up an mmc bootdev so we can access other distros
  *
  * @uts: Unit test state
+ * @mmc_dev: MMC device to use, e.g. "mmc4"
  * Returns 0 on success, -ve on failure
  */
-static int prep_mmc4_bootdev(struct unit_test_state *uts)
+static int prep_mmc_bootdev(struct unit_test_state *uts, const char *mmc_dev,
+                           bool bind_cros)
 {
-       static const char *order[] = {"mmc2", "mmc1", "mmc4", NULL};
+       const char *order[] = {"mmc2", "mmc1", mmc_dev, NULL};
        struct udevice *dev, *bootstd;
        struct bootstd_priv *std;
        const char **old_order;
-       ofnode node;
+       ofnode root, node;
 
        /* Enable the mmc4 node since we need a second bootflow */
-       node = ofnode_path("/mmc4");
+       root = oftree_root(oftree_default());
+       node = ofnode_find_subnode(root, mmc_dev);
+       ut_assert(ofnode_valid(node));
        ut_assertok(lists_bind_fdt(gd->dm_root, node, &dev, NULL, false));
 
        /* Enable the script bootmeth too */
        ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
-       ut_assertok(device_bind(bootstd, DM_DRIVER_REF(bootmeth_script),
+       ut_assertok(device_bind(bootstd, DM_DRIVER_REF(bootmeth_2script),
                                "bootmeth_script", 0, ofnode_null(), &dev));
 
-       /* Change the order to include mmc4 */
+       /* Enable the cros bootmeth if needed */
+       if (bind_cros) {
+               ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
+               ut_assertok(device_bind(bootstd, DM_DRIVER_REF(bootmeth_cros),
+                                       "cros", 0, ofnode_null(), &dev));
+       }
+
+       /* Change the order to include the device */
        std = dev_get_priv(bootstd);
        old_order = std->bootdev_order;
        std->bootdev_order = order;
@@ -543,6 +557,19 @@ static int prep_mmc4_bootdev(struct unit_test_state *uts)
        return 0;
 }
 
+/**
+ * prep_mmc4_bootdev() - Set up the mmc4 bootdev so we can access a fake Armbian
+ *
+ * @uts: Unit test state
+ * Returns 0 on success, -ve on failure
+ */
+static int prep_mmc4_bootdev(struct unit_test_state *uts)
+{
+       ut_assertok(prep_mmc_bootdev(uts, "mmc4", false));
+
+       return 0;
+}
+
 /* Check 'bootflow menu' to select a bootflow */
 static int bootflow_cmd_menu(struct unit_test_state *uts)
 {
@@ -837,3 +864,132 @@ static int test_bootflow_cmdline_set(struct unit_test_state *uts)
        return 0;
 }
 BOOTSTD_TEST(test_bootflow_cmdline_set, 0);
+
+/* Test of bootflow_cmdline_set_arg() */
+static int bootflow_set_arg(struct unit_test_state *uts)
+{
+       struct bootflow s_bflow, *bflow = &s_bflow;
+       ulong mem_start;
+
+       ut_assertok(env_set("bootargs", NULL));
+
+       mem_start = ut_check_delta(0);
+
+       /* Do a simple sanity check. Rely on bootflow_cmdline() for the rest */
+       bflow->cmdline = NULL;
+       ut_assertok(bootflow_cmdline_set_arg(bflow, "fred", "123", false));
+       ut_asserteq_str(bflow->cmdline, "fred=123");
+
+       ut_assertok(bootflow_cmdline_set_arg(bflow, "mary", "and here", false));
+       ut_asserteq_str(bflow->cmdline, "fred=123 mary=\"and here\"");
+
+       ut_assertok(bootflow_cmdline_set_arg(bflow, "mary", NULL, false));
+       ut_asserteq_str(bflow->cmdline, "fred=123");
+       ut_assertok(bootflow_cmdline_set_arg(bflow, "fred", NULL, false));
+       ut_asserteq_ptr(bflow->cmdline, NULL);
+
+       ut_asserteq(0, ut_check_delta(mem_start));
+
+       ut_assertok(bootflow_cmdline_set_arg(bflow, "mary", "here", true));
+       ut_asserteq_str("mary=here", env_get("bootargs"));
+       ut_assertok(env_set("bootargs", NULL));
+
+       return 0;
+}
+BOOTSTD_TEST(bootflow_set_arg, 0);
+
+/* Test of bootflow_cmdline_get_arg() */
+static int bootflow_cmdline_get(struct unit_test_state *uts)
+{
+       int pos;
+
+       /* empty string */
+       ut_asserteq(-ENOENT, cmdline_get_arg("", "fred", &pos));
+
+       /* arg with empty value */
+       ut_asserteq(0, cmdline_get_arg("fred= mary", "fred", &pos));
+       ut_asserteq(5, pos);
+
+       /* arg with a value */
+       ut_asserteq(2, cmdline_get_arg("fred=23", "fred", &pos));
+       ut_asserteq(5, pos);
+
+       /* arg with a value */
+       ut_asserteq(3, cmdline_get_arg("mary=1 fred=234", "fred", &pos));
+       ut_asserteq(12, pos);
+
+       /* arg with a value, after quoted arg */
+       ut_asserteq(3, cmdline_get_arg("mary=\"1 2\" fred=234", "fred", &pos));
+       ut_asserteq(16, pos);
+
+       /* arg in the middle */
+       ut_asserteq(0, cmdline_get_arg("mary=\"1 2\" fred john=23", "fred",
+                                      &pos));
+       ut_asserteq(15, pos);
+
+       /* quoted arg */
+       ut_asserteq(3, cmdline_get_arg("mary=\"1 2\" fred=\"3 4\" john=23",
+                                      "fred", &pos));
+       ut_asserteq(17, pos);
+
+       /* args starting with the same prefix */
+       ut_asserteq(1, cmdline_get_arg("mary=abc johnathon=3 john=1", "john",
+                                      &pos));
+       ut_asserteq(26, pos);
+
+       return 0;
+}
+BOOTSTD_TEST(bootflow_cmdline_get, 0);
+
+static int bootflow_cmdline(struct unit_test_state *uts)
+{
+       ut_assertok(run_command("bootflow scan mmc", 0));
+       ut_assertok(run_command("bootflow sel 0", 0));
+       console_record_reset_enable();
+
+       ut_asserteq(1, run_command("bootflow cmdline get fred", 0));
+       ut_assert_nextline("Argument not found");
+       ut_assert_console_end();
+
+       ut_asserteq(0, run_command("bootflow cmdline set fred 123", 0));
+       ut_asserteq(0, run_command("bootflow cmdline get fred", 0));
+       ut_assert_nextline("123");
+
+       ut_asserteq(0, run_command("bootflow cmdline set mary abc", 0));
+       ut_asserteq(0, run_command("bootflow cmdline get mary", 0));
+       ut_assert_nextline("abc");
+
+       ut_asserteq(0, run_command("bootflow cmdline delete fred", 0));
+       ut_asserteq(1, run_command("bootflow cmdline get fred", 0));
+       ut_assert_nextline("Argument not found");
+
+       ut_asserteq(0, run_command("bootflow cmdline clear mary", 0));
+       ut_asserteq(0, run_command("bootflow cmdline get mary", 0));
+       ut_assert_nextline_empty();
+
+       ut_assert_console_end();
+
+       return 0;
+}
+BOOTSTD_TEST(bootflow_cmdline, 0);
+
+/* Test ChromiumOS bootmeth */
+static int bootflow_cros(struct unit_test_state *uts)
+{
+       ut_assertok(prep_mmc_bootdev(uts, "mmc5", true));
+       ut_assertok(run_command("bootflow list", 0));
+
+       ut_assert_nextlinen("Showing all");
+       ut_assert_nextlinen("Seq");
+       ut_assert_nextlinen("---");
+       ut_assert_nextlinen("  0  extlinux");
+       ut_assert_nextlinen("  1  cros         ready   mmc          2  mmc5.bootdev.part_2       ");
+       ut_assert_nextlinen("  2  cros         ready   mmc          4  mmc5.bootdev.part_4       ");
+       ut_assert_nextlinen("---");
+       ut_assert_skip_to_line("(3 bootflows, 3 valid)");
+
+       ut_assert_console_end();
+
+       return 0;
+}
+BOOTSTD_TEST(bootflow_cros, 0);
This page took 0.030409 seconds and 4 git commands to generate.