On Thu, Sep 19, 2024 at 04:13:01PM +0200, Simon Glass wrote:
> Hi Tom,
> 
> On Wed, 18 Sept 2024 at 00:19, Tom Rini <tr...@konsulko.com> wrote:
> >
> > On Tue, Sep 17, 2024 at 05:52:09AM +0200, Simon Glass wrote:
> > > Hi Tom,
> > >
> > > On Mon, 16 Sept 2024 at 18:34, Tom Rini <tr...@konsulko.com> wrote:
> > > >
> > > > On Mon, Sep 16, 2024 at 05:42:42PM +0200, Simon Glass wrote:
> > > > > Hi Heinrich,
> > > > >
> > > > > On Thu, 12 Sept 2024 at 09:09, Heinrich Schuchardt 
> > > > > <xypron.g...@gmx.de> wrote:
> > > > > >
> > > > > > On 02.09.24 03:18, Simon Glass wrote:
> > > > > > > Create a new disk for use with tests, which contains the new 
> > > > > > > 'testapp'
> > > > > > > EFI app specifically intended for testing the EFI loader.
> > > > > > >
> > > > > > > Attach it to the USB device, since most testing is currently done 
> > > > > > > with
> > > > > > > mmc.
> > > > > > >
> > > > > > > Initially this image will be used to test the EFI bootmeth.
> > > > > > >
> > > > > > > Fix a stale comment in prep_mmc_bootdev() while we are here.
> > > > > > >
> > > > > > > Signed-off-by: Simon Glass <s...@chromium.org>
> > > > > > > ---
> > > > > > >
> > > > > > > (no changes since v1)
> > > > > > >
> > > > > > >   arch/sandbox/dts/test.dts           |   2 +-
> > > > > > >   test/boot/bootdev.c                 |  18 +++++++++-
> > > > > > >   test/boot/bootflow.c                |   2 +-
> > > > > > >   test/py/tests/bootstd/flash1.img.xz | Bin 0 -> 5016 bytes
> > > > > > >   test/py/tests/test_ut.py            |  52 
> > > > > > > ++++++++++++++++++++++++----
> > > > > > >   5 files changed, 65 insertions(+), 9 deletions(-)
> > > > > > >   create mode 100644 test/py/tests/bootstd/flash1.img.xz
> > > > > > >
> > > > > > > diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
> > > > > > > index 5fb5eac862e..a99de6e62ce 100644
> > > > > > > --- a/arch/sandbox/dts/test.dts
> > > > > > > +++ b/arch/sandbox/dts/test.dts
> > > > > > > @@ -1507,7 +1507,7 @@
> > > > > > >                               flash-stick@1 {
> > > > > > >                                       reg = <1>;
> > > > > > >                                       compatible = 
> > > > > > > "sandbox,usb-flash";
> > > > > > > -                                     sandbox,filepath = 
> > > > > > > "testflash1.bin";
> > > > > > > +                                     sandbox,filepath = 
> > > > > > > "flash1.img";
> > > > > > >                               };
> > > > > > >
> > > > > > >                               flash-stick@2 {
> > > > > > > diff --git a/test/boot/bootdev.c b/test/boot/bootdev.c
> > > > > > > index c635d06ec25..269bcd693a6 100644
> > > > > > > --- a/test/boot/bootdev.c
> > > > > > > +++ b/test/boot/bootdev.c
> > > > > > > @@ -212,6 +212,10 @@ static int bootdev_test_order(struct 
> > > > > > > unit_test_state *uts)
> > > > > > >       /* Use the environment variable to override it */
> > > > > > >       ut_assertok(env_set("boot_targets", "mmc1 mmc2 usb"));
> > > > > > >       ut_assertok(bootflow_scan_first(NULL, NULL, &iter, 0, 
> > > > > > > &bflow));
> > > > > > > +
> > > > > > > +     /* get the usb device which has a backing file (flash1.img) 
> > > > > > > */
> > > > > > > +     ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
> > > > > > > +
> > > > > > >       ut_asserteq(-ENODEV, bootflow_scan_next(&iter, &bflow));
> > > > > > >       ut_asserteq(5, iter.num_devs);
> > > > > > >       ut_asserteq_str("mmc1.bootdev", iter.dev_used[0]->name);
> > > > > > > @@ -251,7 +255,11 @@ static int bootdev_test_order(struct 
> > > > > > > unit_test_state *uts)
> > > > > > >       ut_assertok(bootflow_scan_first(NULL, NULL, &iter, 0, 
> > > > > > > &bflow));
> > > > > > >       ut_asserteq(2, iter.num_devs);
> > > > > > >
> > > > > > > -     /* Now scan past mmc1 and make sure that the 3 USB devices 
> > > > > > > show up */
> > > > > > > +     /*
> > > > > > > +      * Now scan past mmc1 and make sure that the 3 USB devices 
> > > > > > > show up. The
> > > > > > > +      * first one has a backing file so returns success
> > > > > > > +      */
> > > > > > > +     ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
> > > > > > >       ut_asserteq(-ENODEV, bootflow_scan_next(&iter, &bflow));
> > > > > > >       ut_asserteq(6, iter.num_devs);
> > > > > > >       ut_asserteq_str("mmc2.bootdev", iter.dev_used[0]->name);
> > > > > > > @@ -313,6 +321,10 @@ static int bootdev_test_prio(struct 
> > > > > > > unit_test_state *uts)
> > > > > > >
> > > > > > >       /* 3 MMC and 3 USB bootdevs: MMC should come before USB */
> > > > > > >       ut_assertok(bootflow_scan_first(NULL, NULL, &iter, 0, 
> > > > > > > &bflow));
> > > > > > > +
> > > > > > > +     /* get the usb device which has a backing file (flash1.img) 
> > > > > > > */
> > > > > > > +     ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
> > > > > > > +
> > > > > > >       ut_asserteq(-ENODEV, bootflow_scan_next(&iter, &bflow));
> > > > > > >       ut_asserteq(6, iter.num_devs);
> > > > > > >       ut_asserteq_str("mmc2.bootdev", iter.dev_used[0]->name);
> > > > > > > @@ -330,6 +342,10 @@ static int bootdev_test_prio(struct 
> > > > > > > unit_test_state *uts)
> > > > > > >       bootflow_iter_uninit(&iter);
> > > > > > >       ut_assertok(bootflow_scan_first(NULL, NULL, &iter, 
> > > > > > > BOOTFLOWIF_HUNT,
> > > > > > >                                       &bflow));
> > > > > > > +
> > > > > > > +     /* get the usb device which has a backing file (flash1.img) 
> > > > > > > */
> > > > > > > +     ut_asserteq(0, bootflow_scan_next(&iter, &bflow));
> > > > > > > +
> > > > > > >       ut_asserteq(-ENODEV, bootflow_scan_next(&iter, &bflow));
> > > > > > >       ut_asserteq(7, iter.num_devs);
> > > > > > >       ut_asserteq_str("usb_mass_storage.lun0.bootdev",
> > > > > > > diff --git a/test/boot/bootflow.c b/test/boot/bootflow.c
> > > > > > > index da55d5cfe69..37884dbd441 100644
> > > > > > > --- a/test/boot/bootflow.c
> > > > > > > +++ b/test/boot/bootflow.c
> > > > > > > @@ -525,7 +525,7 @@ static int prep_mmc_bootdev(struct 
> > > > > > > unit_test_state *uts, const char *mmc_dev,
> > > > > > >
> > > > > > >       order[2] = mmc_dev;
> > > > > > >
> > > > > > > -     /* Enable the mmc4 node since we need a second bootflow */
> > > > > > > +     /* Enable the requested mmc node since we need a second 
> > > > > > > bootflow */
> > > > > > >       root = oftree_root(oftree_default());
> > > > > > >       node = ofnode_find_subnode(root, mmc_dev);
> > > > > > >       ut_assert(ofnode_valid(node));
> > > > > > > diff --git a/test/py/tests/bootstd/flash1.img.xz 
> > > > > > > b/test/py/tests/bootstd/flash1.img.xz
> > > > > > > new file mode 100644
> > > > > > > index 
> > > > > > > 0000000000000000000000000000000000000000..9148b91a20c1f0acb54449b124d1408961e92507
> > > > > > > GIT binary patch
> > > > > > > literal 5016
> > > > > > > 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
> > > > > > >
> > > > > > > literal 0
> > > > > > > HcmV?d00001
> > > > > >
> > > > > > This reminds me of the xy hack. We should not add binary files. 
> > > > > > Please,
> > > > > > create it on the fly.
> > > > >
> > > > > All the other tests work the same way.
> > > > >
> > > > > >
> > > > > > >
> > > > > > > diff --git a/test/py/tests/test_ut.py b/test/py/tests/test_ut.py
> > > > > > > index 39aa1035e34..f647e2f0af2 100644
> > > > > > > --- a/test/py/tests/test_ut.py
> > > > > > > +++ b/test/py/tests/test_ut.py
> > > > > > > @@ -28,21 +28,22 @@ def mkdir_cond(dirname):
> > > > > > >       if not os.path.exists(dirname):
> > > > > > >           os.mkdir(dirname)
> > > > > > >
> > > > > > > -def setup_image(cons, mmc_dev, part_type, second_part=False):
> > > > > > > +def setup_image(cons, devnum, part_type, second_part=False, 
> > > > > > > basename='mmc'):
> > > > > > >       """Create a 20MB disk image with a single partition
> > > > > > >
> > > > > > >       Args:
> > > > > > >           cons (ConsoleBase): Console to use
> > > > > > > -        mmc_dev (int): MMC device number to use, e.g. 1
> > > > > > > +        devnum (int): Device number to use, e.g. 1
> > > > > > >           part_type (int): Partition type, e.g. 0xc for FAT32
> > > > > > >           second_part (bool): True to contain a small second 
> > > > > > > partition
> > > > > > > +        basename (str): Base name to use in the filename, e.g. 
> > > > > > > 'mmc'
> > > > > > >
> > > > > > >       Returns:
> > > > > > >           tuple:
> > > > > > >               str: Filename of MMC image
> > > > > > >               str: Directory name of 'mnt' directory
> > > > > > >       """
> > > > > > > -    fname = os.path.join(cons.config.source_dir, 
> > > > > > > f'mmc{mmc_dev}.img')
> > > > > > > +    fname = os.path.join(cons.config.source_dir, 
> > > > > > > f'{basename}{devnum}.img')
> > > > > > >       mnt = os.path.join(cons.config.persistent_data_dir, 'mnt')
> > > > > > >       mkdir_cond(mnt)
> > > > > > >
> > > > > > > @@ -78,16 +79,17 @@ def mount_image(cons, fname, mnt, fstype):
> > > > > > >       u_boot_utils.run_and_log(cons, f'sudo chown 
> > > > > > > {getpass.getuser()} {mnt}')
> > > > > >
> > > > > > Please, do not use sudo in tests.
> > > > >
> > > > > All the other test setup uses sudo, as do the fs-tests
> > > >
> > > > We're actively removing the use of sudo in the fs-tests, as noted in
> > > > previous iterations of this series (I believe it was this series) and
> > > > asked that you rebase this part at least on top of that series or wait
> > > > for it to be merged.
> > >
> > > Well I don't believe there is actually an updated patch for this. So I
> > > don't believe it can be merged?
> > >
> > > If I missed it, please can you send the patchwork link?
> > >
> > > If and when it is merged, it is a trivial patch to update this to
> > > conform, as I noted before when this was raised.
> >
> > I've followed up, today. But on the other hand the problems were:
> > - Minor pylint problems
> > - Need one other change to go in first due to how terribly the try/catch
> >   stuff has left things.
> >
> > And would prefer (a) waiting or (b) you pick it up and finish the last
> > 5% and mark it as a pre-req to (c) we add yet another sudo based test
> > that isn't run as often as the others. Sorry.
> 
> How about as a compromise we bring this test in and I send a follow-up
> series to tidy up the no-sudo patch?

At this point, this series needs to be re-spun either way so, whichever
order you want to handle cleaning up the other series is fine, in the
end. Thanks.

-- 
Tom

Attachment: signature.asc
Description: PGP signature

Reply via email to