public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top
Subject: Re: [PATCH v4 1/3] test: Extend test scripts to allow running exeter tests.
Date: Wed, 20 Aug 2025 12:55:58 +1000	[thread overview]
Message-ID: <aKU5PpSNGU9_kmYw@zatzit> (raw)
In-Reply-To: <20250819162738.36d35d52@elisabeth>

[-- Attachment #1: Type: text/plain, Size: 7344 bytes --]

On Tue, Aug 19, 2025 at 04:27:38PM +0200, Stefano Brivio wrote:
> On Thu,  7 Aug 2025 21:32:35 +1000
> David Gibson <david@gibson.dropbear.id.au> wrote:
> 
> > Introduce some trivial testcases based on the exeter library.  These run
> > passt and pasta with --help and --version options.  Extend our test
> > scripts to run these tests.
> > 
> > Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> > ---
> >  test/.gitignore     |  1 +
> >  test/Makefile       |  5 ++++-
> >  test/lib/exeter     | 46 +++++++++++++++++++++++++++++++++++++++++++++
> >  test/run            |  9 ++++++++-
> >  test/smoke/smoke.sh | 27 ++++++++++++++++++++++++++
> >  5 files changed, 86 insertions(+), 2 deletions(-)
> >  create mode 100644 test/lib/exeter
> >  create mode 100755 test/smoke/smoke.sh
> > 
> > diff --git a/test/.gitignore b/test/.gitignore
> > index 3573444f..cf48b885 100644
> > --- a/test/.gitignore
> > +++ b/test/.gitignore
> > @@ -11,3 +11,4 @@ nstool
> >  rampstream
> >  guest-key
> >  guest-key.pub
> > +/exeter/
> > diff --git a/test/Makefile b/test/Makefile
> > index bf63db87..332f3f3e 100644
> > --- a/test/Makefile
> > +++ b/test/Makefile
> > @@ -50,7 +50,7 @@ UBUNTU_NEW_IMGS = xenial-server-cloudimg-powerpc-disk1.img \
> >  	jammy-server-cloudimg-s390x.img
> >  UBUNTU_IMGS = $(UBUNTU_OLD_IMGS) $(UBUNTU_NEW_IMGS)
> >  
> > -DOWNLOAD_ASSETS = mbuto podman \
> > +DOWNLOAD_ASSETS = exeter mbuto podman \
> >  	$(DEBIAN_IMGS) $(FEDORA_IMGS) $(OPENSUSE_IMGS) $(UBUNTU_IMGS)
> 
> Pre-existing, but this broke a while after you switched the image
> preparation to Makefile targets, so you can't really expect people to
> issue 'make' at the moment.

Sorry, I'm not quite sure what the problem is you're getting at.

> I ran 'make exeter' to get further. It would be nice to update
> test/README.md (or fix the Makefile... or both).

Hrm.. "make check" already depends on "make assets" which should (now)
include exeter.  I'm not sure why that's not working for you.

> >  TESTDATA_ASSETS = small.bin big.bin medium.bin \
> >  	rampstream
> > @@ -70,6 +70,9 @@ assets: $(ASSETS)
> >  pull-%: %
> >  	git -C $* pull
> >  
> > +exeter:
> > +	git clone https://gitlab.com/dgibson/exeter.git
> > +
> >  mbuto:
> >  	git clone git://mbuto.sh/mbuto
> >  
> > diff --git a/test/lib/exeter b/test/lib/exeter
> > new file mode 100644
> > index 00000000..4f7bcff9
> > --- /dev/null
> > +++ b/test/lib/exeter
> > @@ -0,0 +1,46 @@
> > +#!/bin/sh
> > +#
> > +# SPDX-License-Identifier: GPL-2.0-or-later
> > +#
> > +# PASST - Plug A Simple Socket Transport
> > +#  for qemu/UNIX domain socket mode
> > +#
> > +# PASTA - Pack A Subtle Tap Abstraction
> > +#  for network namespace/tap device mode
> > +#
> > +# test/lib/exeter - Run exeter tests within the rest of passt's tests
> > +#
> > +# Copyright Red Hat
> > +# Author: David Gibson <david@gibson.dropbear.id.au>
> > +
> > +exeter() {
> 
> It would be nice to have the usual arguments / function description
> here.

Good point, added.

> > +	STATESETUP="${STATEBASE}/$1"
> > +	mkdir -p "${STATESETUP}"
> > +
> > +	context_setup_host host
> > +        layout_host
> 
> Indentation here was done with tabs, this adds spaces instead.

Oops.  For some reason I'd added emacs configuration to explicitly
*disable* tab indent mode for shell mode in the passt tree.  Weird,
and now reversed.

> > +
> > +        cd test
> > +
> > +        __ntests=$("$@" --list | wc -l)
> > +        if [ $? != 0 ]; then
> > +                info "Failed to get exeter manifest for $@"
> > +	        pause_continue \
> > +		        "Press any key to pause test session"		\
> > +		        "Resuming in "					\
> > +		        "Paused, press any key to continue"		\
> > +		        5
> > +                return
> > +        fi
> > +
> > +        status_file_start "Exeter tests: $*" ${__ntests}
> > +
> > +        for __testid in $("$@" --list); do
> > +	        status_test_start "${__testid}"
> > +                context_run host "$@" "${__testid}" && status_test_ok || status_test_fail
> > +        done
> > +
> > +        cd ..
> > +
> > +	teardown_context_watch ${PANE_HOST} host
> > +}
> > diff --git a/test/run b/test/run
> > index f73c3119..9e183682 100755
> > --- a/test/run
> > +++ b/test/run
> > @@ -53,6 +53,7 @@ COMMIT="$(git log --oneline --no-decorate -1)"
> >  . lib/layout_ugly
> >  . lib/test
> >  . lib/video
> > +. lib/exeter
> >  
> >  # cleanup() - Remove temporary files
> >  cleanup() {
> > @@ -67,6 +68,8 @@ run() {
> >  	perf_init
> >  	[ ${CI} -eq 1 ]   && video_start ci
> >  
> > +	exeter smoke/smoke.sh
> > +
> >  	setup build
> >  	test build/all
> >  	test build/cppcheck
> > @@ -223,6 +226,10 @@ run_selected() {
> >  
> >  	__setup=
> >  	for __test; do
> > +                if "test/${__test}" --list; then
> > +                        exeter "${__test}"
> > +                        continue
> > +                fi
> >  		# HACK: the migrate tests need the setup repeated for
> >  		#       each test
> >  		if [ "${__test%%/*}" != "${__setup}" -o		\
> > @@ -234,7 +241,7 @@ run_selected() {
> >  
> >  		test "${__test}"
> >  	done
> > -	teardown "${__setup}"
> > +	[ -n "${__setup}" ] && teardown "${__setup}"
> >  
> >  	log "PASS: ${STATUS_PASS}, FAIL: ${STATUS_FAIL}, SKIPPED: ${STATUS_SKIPPED}"
> >  
> > diff --git a/test/smoke/smoke.sh b/test/smoke/smoke.sh
> > new file mode 100755
> > index 00000000..26a98d31
> > --- /dev/null
> > +++ b/test/smoke/smoke.sh
> > @@ -0,0 +1,27 @@
> > +#! /bin/sh
> 
> ...this is desirable, I think (and, for consistency, I'd use "#!/bin/sh")
> as Bash is not universally available, but:

So.. I believe "#! " (with the space) is actually the traditional /
correct version.  I did once encounter a situation where it mattered,
although to be fair, that might have been with 25 year old SunOS or
something equally obscure.  Nonetheless I've habitually included the
space ever since (see find-arm64-firmware.sh, prepare-distro-img.sh
and rapstream-check.sh).

> > +#
> > +# SPDX-License-Identifier: GPL-2.0-or-later
> > +#
> > +# PASST - Plug A Simple Socket Transport
> > +#  for qemu/UNIX domain socket mode
> > +#
> > +# PASTA - Pack A Subtle Tap Abstraction
> > +#  for network namespace/tap device mode
> > +#
> > +# test/smoke/smoke.sh - Basic snoke tests
> 
> smoke

Lol, oops.

> > +#
> > +# Copyright Red Hat
> > +# Author: David Gibson <david@gibson.dropbear.id.au>
> > +
> > +source $(dirname $0)/../exeter/sh/exeter.sh
> 
> this is specific to Bash, so what I get with dash is:
> 
> smoke/smoke.sh: 16: source: not found
> smoke/smoke.sh: 21: exeter_register: not found
> smoke/smoke.sh: 22: exeter_register: not found
> smoke/smoke.sh: 24: exeter_register: not found
> smoke/smoke.sh: 25: exeter_register: not found
> smoke/smoke.sh: 27: exeter_main: not found
> ...

Drat.  I'm pretty sure I found that before, but I must have
accidentally discarded with some fat-fingered gitting.

Ok, fixed now.

-- 
David Gibson (he or they)	| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you, not the other way
				| around.
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2025-08-20  3:10 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-07 11:32 [PATCH v4 0/3] RFC: New proof-of-concept based exeter tests David Gibson
2025-08-07 11:32 ` [PATCH v4 1/3] test: Extend test scripts to allow running " David Gibson
2025-08-19 14:27   ` Stefano Brivio
2025-08-20  2:55     ` David Gibson [this message]
2025-08-20  9:52       ` Stefano Brivio
2025-08-20 11:10         ` David Gibson
2025-08-20 11:44           ` Stefano Brivio
2025-08-20 23:31             ` David Gibson
2025-08-21 21:26               ` Stefano Brivio
2025-08-22  3:19                 ` David Gibson
2025-08-07 11:32 ` [PATCH v4 2/3] test: Run static checkers as " David Gibson
2025-08-07 11:32 ` [PATCH v4 3/3] test: Convert build tests to exeter David Gibson
2025-08-19 14:27   ` Stefano Brivio
2025-08-20  3:10     ` David Gibson
2025-08-20 10:40       ` Stefano Brivio
2025-08-20 11:19         ` David Gibson
2025-08-20 12:13           ` Stefano Brivio
2025-08-21  0:41             ` David Gibson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aKU5PpSNGU9_kmYw@zatzit \
    --to=david@gibson.dropbear.id.au \
    --cc=passt-dev@passt.top \
    --cc=sbrivio@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).