aboutsummaryrefslogtreecommitdiffstats
path: root/tests/migrations
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-04-21 12:36:21 +0000
committerJustus Winter <[email protected]>2016-04-21 12:38:53 +0000
commit0c35e09278514f1e3377a4b0a9b1f44dd39b1bf4 (patch)
treedada85a21c41e032c96ee959c548dbc893bf5520 /tests/migrations
parentw32: Use --enable-gpg2-is-gpg by default. (diff)
downloadgnupg-0c35e09278514f1e3377a4b0a9b1f44dd39b1bf4.tar.gz
gnupg-0c35e09278514f1e3377a4b0a9b1f44dd39b1bf4.zip
tests: Make migration test more robust and silent.
* tests/migrations/from-classic.test: Fix in-tree build, silence test. Fixes-commit: defbc70b Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'tests/migrations')
-rwxr-xr-xtests/migrations/from-classic.test26
1 files changed, 18 insertions, 8 deletions
diff --git a/tests/migrations/from-classic.test b/tests/migrations/from-classic.test
index a61a5c36f..9b81d452b 100755
--- a/tests/migrations/from-classic.test
+++ b/tests/migrations/from-classic.test
@@ -13,6 +13,7 @@ if [ -z "$srcdir" ]; then
exit 1
fi
+unset GNUPGHOME
set -e
# (We may not use a relative name for gpg-agent.)
@@ -20,22 +21,28 @@ GPG_AGENT="$(cd ../../agent && /bin/pwd)/gpg-agent"
GPG="../../g10/gpg --no-permission-warning --no-greeting --no-secmem-warning
--batch --agent-program=${GPG_AGENT}|--debug-quick-random"
-export GNUPGHOME="from-classic.gpghome"
+TEST="from-classic"
setup_home()
{
- rm -rf -- "$GNUPGHOME"
- mkdir "$GNUPGHOME"
- for F in $srcdir/$GNUPGHOME/*.asc
- do
- $GPG --dearmor <"$F" >"$GNUPGHOME/`echo $F | sed -e 's/....$//'`"
+ XGNUPGHOME="`mktemp -d`"
+ rm -rf -- scratch
+ mkdir -p "$XGNUPGHOME"
+ for F in $srcdir/$TEST.gpghome/*.asc; do
+ $GPG --dearmor <"$F" >"$XGNUPGHOME/`basename $F .asc`"
done
- chmod go-rwx $GNUPGHOME/*
+ chmod go-rwx $XGNUPGHOME/*
+ export GNUPGHOME="$XGNUPGHOME"
+}
+
+cleanup_home()
+{
+ rm -rf -- "$XGNUPGHOME"
}
trigger_migration()
{
- $GPG --list-secret-keys >/dev/null
+ $GPG --list-secret-keys >/dev/null 2>&1
}
assert_migrated()
@@ -50,12 +57,14 @@ assert_migrated()
setup_home
trigger_migration
assert_migrated
+cleanup_home
# Test with an existing private-keys-v1.d.
setup_home
mkdir "$GNUPGHOME/private-keys-v1.d"
trigger_migration
assert_migrated
+cleanup_home
# Test with an existing private-keys-v1.d with weird permissions.
setup_home
@@ -63,5 +72,6 @@ mkdir "$GNUPGHOME/private-keys-v1.d"
chmod 0 "$GNUPGHOME/private-keys-v1.d"
trigger_migration
assert_migrated
+cleanup_home
# XXX Check a case where the migration fails.