[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/16: tests: Make sure 'guix home reconfigure' backs up files.
From: |
guix-commits |
Subject: |
11/16: tests: Make sure 'guix home reconfigure' backs up files. |
Date: |
Thu, 10 Mar 2022 05:43:54 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 7b7e32d5adc22582c0b0b23157432eb7ea0cc5da
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Feb 18 22:43:43 2022 +0100
tests: Make sure 'guix home reconfigure' backs up files.
* tests/guix-home.sh: Create ~/.bashrc and ~/.config/test.conf prior to
'reconfigure' and check whether they were backed up.
---
tests/guix-home.sh | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/tests/guix-home.sh b/tests/guix-home.sh
index e578559c97..ae3e52c9e1 100644
--- a/tests/guix-home.sh
+++ b/tests/guix-home.sh
@@ -1,7 +1,7 @@
-
# GNU Guix --- Functional package management for GNU
# Copyright © 2021 Andrew Tropin <andrew@trop.in>
# Copyright © 2021 Oleg Pykhalov <go.wigust@gmail.com>
+# Copyright © 2022 Ludovic Courtès <ludo@gnu.org>
#
# This file is part of GNU Guix.
#
@@ -54,7 +54,12 @@ trap 'chmod -Rf +w "$test_directory"; rm -rf
"$test_directory"' EXIT
# Test 'guix home reconfigure'.
#
- printf "# dot-bashrc test file for guix home" > "dot-bashrc"
+ echo "# This file will be overridden and backed up." > "$HOME/.bashrc"
+ mkdir "$HOME/.config"
+ echo "This file will be overridden too." > "$HOME/.config/test.conf"
+ echo "This file will stay around." > "$HOME/.config/random-file"
+
+ echo -n "# dot-bashrc test file for guix home" > "dot-bashrc"
cat > "home.scm" <<'EOF'
(use-modules (guix gexp)
@@ -100,6 +105,13 @@ EOF
# the content of bashrc-test-config.sh"
grep -q "the content of ~/.config/test.conf" "${HOME}/.config/test.conf"
+ # This one should still be here.
+ grep "stay around" "$HOME/.config/random-file"
+
+ # Make sure preexisting files were backed up.
+ grep "overridden" "$HOME"/*guix-home*backup/.bashrc
+ grep "overridden" "$HOME"/*guix-home*backup/.config/test.conf
+
#
# Test 'guix home describe'.
#
- 03/16: gnu: gnome-sudoku: Add missing dependency on Python., (continued)
- 03/16: gnu: gnome-sudoku: Add missing dependency on Python., guix-commits, 2022/03/10
- 04/16: gnu: gnome-sudoku: Remove input labels., guix-commits, 2022/03/10
- 05/16: home: symlink-manager: Clarify module imports., guix-commits, 2022/03/10
- 09/16: home: symlink-manager: Remove 'empty-directory?' and avoid TOCTTOU race., guix-commits, 2022/03/10
- 02/16: gnu: gnome-arcade: Update to 0.240., guix-commits, 2022/03/10
- 08/16: home: symlink-manager: Use 'file-is-directory?'., guix-commits, 2022/03/10
- 16/16: home: symlink-manager: Rename "path" to "file" where appropriate., guix-commits, 2022/03/10
- 07/16: home: symlink-manager: Use 'for-each' when used for effects., guix-commits, 2022/03/10
- 01/16: maint: 'assert-binaries-available' only checks ci.guix.gnu.org., guix-commits, 2022/03/10
- 06/16: home: symlink-manager: Move helper procedures as top-level defines., guix-commits, 2022/03/10
- 11/16: tests: Make sure 'guix home reconfigure' backs up files.,
guix-commits <=
- 13/16: tests: Check 'guix home reconfigure' for a second generation., guix-commits, 2022/03/10
- 12/16: tests: Simplify use of 'local-file' in 'tests/guix-home.sh'., guix-commits, 2022/03/10
- 14/16: home: symlink-manager: 'cleanup-symlinks' uses 'file-system-fold'., guix-commits, 2022/03/10
- 10/16: home: symlink-manager: Avoid extra 'lstat' call., guix-commits, 2022/03/10
- 15/16: home: symlink-manager: 'create-symlinks' uses 'file-system-fold'., guix-commits, 2022/03/10