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

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