home: services: configuration: Support file-like objects.
[jackhill/guix/guix.git] / tests / guix-home.sh
1
2 # GNU Guix --- Functional package management for GNU
3 # Copyright © 2021 Andrew Tropin <andrew@trop.in>
4 # Copyright © 2021 Oleg Pykhalov <go.wigust@gmail.com>
5 #
6 # This file is part of GNU Guix.
7 #
8 # GNU Guix is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or (at
11 # your option) any later version.
12 #
13 # GNU Guix is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21 #
22 # Test the 'guix home' using the external store, if any.
23 #
24
25 set -e
26
27 guix home --version
28
29 NIX_STORE_DIR="$(guile -c '(use-modules (guix config))(display %storedir)')"
30 localstatedir="$(guile -c '(use-modules (guix config))(display %localstatedir)')"
31 GUIX_DAEMON_SOCKET="$localstatedir/guix/daemon-socket/socket"
32 export NIX_STORE_DIR GUIX_DAEMON_SOCKET
33
34 # Run tests only when a "real" daemon is available.
35 if ! guile -c '(use-modules (guix)) (exit (false-if-exception (open-connection)))'
36 then
37 exit 77
38 fi
39
40 STORE_PARENT="$(dirname "$NIX_STORE_DIR")"
41 export STORE_PARENT
42 if test "$STORE_PARENT" = "/"; then exit 77; fi
43
44 test_directory="$(mktemp -d)"
45 trap 'chmod -Rf +w "$test_directory"; rm -rf "$test_directory"' EXIT
46
47 (
48 cd "$test_directory" || exit 77
49
50 HOME="$test_directory"
51 export HOME
52
53 #
54 # Test 'guix home reconfigure'.
55 #
56
57 printf "# dot-bashrc test file for guix home" > "dot-bashrc"
58
59 cat > "home.scm" <<'EOF'
60 (use-modules (guix gexp)
61 (gnu home)
62 (gnu home services)
63 (gnu home services shells)
64 (gnu services))
65
66 (home-environment
67 (services
68 (list
69 (simple-service 'test-config
70 home-files-service-type
71 (list `("config/test.conf"
72 ,(plain-file
73 "tmp-file.txt"
74 "the content of ~/.config/test.conf"))))
75
76 (service home-bash-service-type
77 (home-bash-configuration
78 (guix-defaults? #t)
79 (bashrc
80 (list
81 (local-file (string-append (dirname (current-filename))
82 "/dot-bashrc"))))))
83
84 (simple-service 'home-bash-service-extension-test
85 home-bash-service-type
86 (home-bash-extension
87 (bashrc
88 (list
89 (plain-file
90 "bashrc-test-config.sh"
91 "# the content of bashrc-test-config.sh"))))))))
92 EOF
93
94 guix home reconfigure "${test_directory}/home.scm"
95 test -d "${HOME}/.guix-home"
96 test -h "${HOME}/.bash_profile"
97 test -h "${HOME}/.bashrc"
98 test "$(tail -n 2 "${HOME}/.bashrc")" == "\
99 # dot-bashrc test file for guix home
100 # the content of bashrc-test-config.sh"
101 grep -q "the content of ~/.config/test.conf" "${HOME}/.config/test.conf"
102
103 #
104 # Test 'guix home describe'.
105 #
106
107 configuration_file()
108 {
109 guix home describe \
110 | grep 'configuration file:' \
111 | cut -d : -f 2 \
112 | xargs echo
113 }
114 test "$(cat "$(configuration_file)")" == "$(cat home.scm)"
115
116 canonical_file_name()
117 {
118 guix home describe \
119 | grep 'canonical file name:' \
120 | cut -d : -f 2 \
121 | xargs echo
122 }
123 test "$(canonical_file_name)" == "$(readlink "${HOME}/.guix-home")"
124
125 #
126 # Test 'guix home search'.
127 #
128
129 guix home search mcron | grep "^name: home-mcron"
130 guix home search job manager | grep "^name: home-mcron"
131 )