Skip to content

Commit

Permalink
fixup! WIP New scripts to run post-install tests in nested hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
ydirson committed Sep 13, 2024
1 parent 59bb140 commit a2ef674
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 9 deletions.
11 changes: 5 additions & 6 deletions scripts/runtests-postinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ set -e
# FIXME may depend on images
REFSHA="ff2a3238eae5abdb0effb092fadbcec2487119e4"

. $(dirname $0)/lib.sh

for conf in "${TESTCONFS[@]}"; do
IFS=- read fw version media sr < <(echo "$conf")
host1="install.test::Nested::boot_inst[$fw-$version-83nightly-host1-$media-$sr]-vm1-$REFSHA"
host2="install.test::Nested::boot_inst[$fw-$version-83nightly-host2-$media-$sr]-vm1-$REFSHA"
IFS=- read fw sr < <(echo "$conf")
host1="install.test::Nested::boot_inst[$fw-83nightly-host1-iso-$sr]-vm1-$REFSHA"
host2="install.test::Nested::boot_inst[$fw-83nightly-host2-iso-$sr]-vm1-$REFSHA"

# FIXME? --host-version=8.3.0
run_pytest \
--runner "./jobs.py run postinstall 'cache://${host1},cache://${host2}'" \
--runner "./jobs.py run postinstall cache://${host1},cache://${host2}" \
--log-file=test-postinstall-$conf.log \
"$@"
done
Expand Down
23 changes: 20 additions & 3 deletions scripts/runtests-postupgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,31 @@ REFSHA="ff2a3238eae5abdb0effb092fadbcec2487119e4"

for conf in "${REFCONFS[@]}"; do
IFS=- read fw version media sr < <(echo "$conf")
[ upgrade_should_work "$version" ] || continue
host1="install.test::Nested::boot_upg[$fw-$version-83nightly-host1-$media-$sr]-vm1-$REFSHA"
host2="install.test::Nested::boot_upg[$fw-$version-83nightly-host2-$media-$sr]-vm1-$REFSHA"

run_pytest \
--runner "./jobs.py run postinstall 'cache://${host1},cache://${host2}'" \
--log-file=test-postinstall-$conf.log \
"$@" \
;
--log-file=test-postupgrade-$conf.log \
"$@"

# FIXME postinstall-intrapool-migrate needs a 2-host pool

case "$version" in
83*) continue;; # TLS already tested
*) # go on and test with TLS

run_pytest \
--runner "./jobs.py run postinstall-with-tls 'cache://${host1},cache://${host2}'" \
--log-file=test-postupgrade-tls-$conf.log \
"$@"

# FIXME: needs to cache TLS-enabled machines

# FIXME postinstall-intrapool-migrate (with TLS) needs a 2-host pool
;;
esac
done

report_failures

0 comments on commit a2ef674

Please sign in to comment.