From 39be4f8c418e63bf67105b63b76daad4eee893bf Mon Sep 17 00:00:00 2001 From: Rafael Fonseca Date: Thu, 31 Oct 2019 11:06:32 +0100 Subject: [PATCH] tests/staged-deploy: test --keep-previous option Signed-off-by: Rafael Fonseca --- tests/kolainst/destructive/staged-deploy.sh | 42 ++++++++++++++++++++- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/tests/kolainst/destructive/staged-deploy.sh b/tests/kolainst/destructive/staged-deploy.sh index b5d0b31961..3f2f5d9233 100755 --- a/tests/kolainst/destructive/staged-deploy.sh +++ b/tests/kolainst/destructive/staged-deploy.sh @@ -26,7 +26,7 @@ case "${AUTOPKGTEST_REBOOT_MARK:-}" in cd /ostree/repo/tmp # https://github.com/ostreedev/ostree/issues/1569 ostree checkout -H ${commit} t - ostree commit --no-bindings --parent="${commit}" -b staged-deploy -I --consume t + ostree commit --no-bindings --parent="${commit}" -b staged-deploy -I --consume t --add-metadata-string=version=foobar newcommit=$(ostree rev-parse staged-deploy) orig_mtime=$(stat -c '%.Y' /sysroot/ostree/deploy) systemctl show -p SubState ostree-finalize-staged.path | grep -q waiting @@ -115,8 +115,46 @@ case "${AUTOPKGTEST_REBOOT_MARK:-}" in ostree admin undeploy 1 echo "ok staged retained" + # Deploy a new version + commit=${host_commit} + ostree checkout -H ${commit} t + ostree commit --no-bindings --parent="${commit}" -b same-version -I --consume t --add-metadata-string=version=foobaz + ostree admin deploy same-version --retain-previous-version + + # Cleanup refs + ostree refs --delete staged-deploy nonstaged-deploy same-version + echo "ok cleanup refs" + + /tmp/autopkgtest-reboot "3" + ;; + "3") + # Check currently deployed versions + rpm-ostree status + + # Make a new commit with the same version as the previous reboot + commit=$(rpmostree_query_json '.deployments[0].checksum') + cd /ostree/repo/tmp + ostree checkout -H ${commit} t + ostree commit --no-bindings --parent="${commit}" -b same-version-again -I --consume t --add-metadata-string=version=foobaz + ostree admin deploy same-version-again --retain-previous-version + + # Check that previous version was kept + ostree admin status > status.txt + test $(grep -Fce 'Version: ' status.txt) = 3 + echo "ok previous version retained" + + # Check also for the staging path + rpm-ostree cleanup -p + ostree admin deploy --stage same-version-again --retain-previous-version + ostree admin finalize-staged + + # Check that previous version was kept + ostree admin status > status.txt + test $(grep -Fce 'Version: ' status.txt) = 3 + echo "ok previous version retained during stage" + # Cleanup refs - ostree refs --delete staged-deploy nonstaged-deploy + ostree refs --delete same-version-again echo "ok cleanup refs" ;; *) fatal "Unexpected AUTOPKGTEST_REBOOT_MARK=${AUTOPKGTEST_REBOOT_MARK}" ;;