Blame SOURCES/cryptsetup-2.5.0-Add-more-tests-for-test-passphrase-parameter.patch

ad3bb7
From f671febe64d8f40cdcb1677a08436a8907ccbb7e Mon Sep 17 00:00:00 2001
ad3bb7
From: Ondrej Kozina <okozina@redhat.com>
ad3bb7
Date: Wed, 23 Feb 2022 12:27:57 +0100
ad3bb7
Subject: [PATCH 2/3] Add more tests for --test-passphrase parameter.
ad3bb7
ad3bb7
---
ad3bb7
 tests/compat-test-args        |  4 ++++
ad3bb7
 tests/luks2-reencryption-test | 18 ++++++++++++++++++
ad3bb7
 2 files changed, 22 insertions(+)
ad3bb7
ad3bb7
diff --git a/tests/luks2-reencryption-test b/tests/luks2-reencryption-test
ad3bb7
index 6f156016..73818b5d 100755
ad3bb7
--- a/tests/luks2-reencryption-test
ad3bb7
+++ b/tests/luks2-reencryption-test
ad3bb7
@@ -1606,5 +1606,23 @@ if [ -n "$DM_SECTOR_SIZE" ]; then
ad3bb7
 	reencrypt_recover_online 4096 journal $HASH1
ad3bb7
 fi
ad3bb7
 
ad3bb7
+echo "[27] Verify test passphrase mode works with reencryption metadata"
ad3bb7
+echo $PWD1 | $CRYPTSETUP -S5 -q luksFormat --type luks2 $FAST_PBKDF_ARGON $DEV || fail
ad3bb7
+echo -e "$PWD1\n$PWD1" | $CRYPTSETUP luksAddKey --unbound -s80 -S0 $FAST_PBKDF_ARGON $DEV || fail
ad3bb7
+echo $PWD1 | $CRYPTSETUP reencrypt --init-only $DEV || fail
ad3bb7
+echo $PWD1 | $CRYPTSETUP open --test-passphrase $DEV || fail
ad3bb7
+
ad3bb7
+echo $PWD1 | $CRYPTSETUP -q luksFormat -S5 --header $IMG_HDR --type luks2 $FAST_PBKDF_ARGON $DEV || fail
ad3bb7
+echo -e "$PWD1\n$PWD1" | $CRYPTSETUP luksAddKey --unbound -s80 -S0 $FAST_PBKDF_ARGON $IMG_HDR || fail
ad3bb7
+echo $PWD1 | $CRYPTSETUP reencrypt --decrypt --init-only --header $IMG_HDR $DEV || fail
ad3bb7
+echo $PWD1 | $CRYPTSETUP open --test-passphrase $IMG_HDR || fail
ad3bb7
+
ad3bb7
+echo $PWD1 | $CRYPTSETUP reencrypt -q --encrypt --init-only --header $IMG_HDR $FAST_PBKDF_ARGON $DEV || fail
ad3bb7
+echo $PWD1 | $CRYPTSETUP open --test-passphrase $IMG_HDR || fail
ad3bb7
+
ad3bb7
+wipe_dev $DEV
ad3bb7
+echo $PWD1 | $CRYPTSETUP reencrypt --encrypt --init-only --reduce-device-size 8M $FAST_PBKDF_ARGON $DEV || fail
ad3bb7
+echo $PWD1 | $CRYPTSETUP open --test-passphrase $DEV || fail
ad3bb7
+
ad3bb7
 remove_mapping
ad3bb7
 exit 0
ad3bb7
-- 
ad3bb7
2.27.0
ad3bb7