gnu: icedove: Update to 91.8 [fixes CVE-2022-1197].
[jackhill/guix/guix.git] / tests / guix-shell-export-manifest.sh
CommitLineData
c42b7baf
LC
1# GNU Guix --- Functional package management for GNU
2# Copyright © 2022 Ludovic Courtès <ludo@gnu.org>
3#
4# This file is part of GNU Guix.
5#
6# GNU Guix is free software; you can redistribute it and/or modify it
7# under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 3 of the License, or (at
9# your option) any later version.
10#
11# GNU Guix is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19#
20# Test 'guix shell --export-manifest'.
21#
22
23guix shell --version
24
25tmpdir="t-guix-manifest-$$"
26trap 'rm -r "$tmpdir"' EXIT
27mkdir "$tmpdir"
28
29manifest="$tmpdir/manifest.scm"
30
31# Basics.
32guix shell --export-manifest guile-bootstrap > "$manifest"
33test "$(guix build -m "$manifest")" = "$(guix build guile-bootstrap)"
34
35guix shell -m "$manifest" --bootstrap -- \
36 "$SHELL" -c 'guix package --export-manifest -p "$GUIX_ENVIRONMENT"' > \
37 "$manifest.second"
38for m in "$manifest" "$manifest.second"
39do
40 grep -v '^;' < "$m" > "$m.new" # filter out comments
41 mv "$m.new" "$m"
42done
43
44cat "$manifest"
45cat "$manifest.second"
46
47cmp "$manifest" "$manifest.second"
48
49# Combining manifests.
50guix shell --export-manifest -m "$manifest" gash gash-utils \
51 > "$manifest.second"
52guix build -m "$manifest.second" -d | \
53 grep "$(guix build guile-bootstrap -d)"
54guix build -m "$manifest.second" -d | \
55 grep "$(guix build gash -d)"
56
57# Package transformation option.
58guix shell --export-manifest guile guix --with-latest=guile-json > "$manifest"
59grep 'options->transformation' "$manifest"
60grep '(with-latest . "guile-json")' "$manifest"
61
62# Development manifest.
63guix shell --export-manifest -D guile git > "$manifest"
64grep 'package->development-manifest' "$manifest"
65grep '"guile"' "$manifest"
66guix build -m "$manifest" -d | \
67 grep "$(guix build -e '(@@ (gnu packages commencement) gcc-final)' -d)"
68guix build -m "$manifest" -d | \
69 grep "$(guix build git -d)"
70
71# Test various combinations to make sure generated code uses interfaces
72# correctly.
73for options in \
74 "coreutils grep sed" \
75 "gsl openblas gcc-toolchain --tune" \
76 "guile -m $manifest.previous" \
77 "git:send-email gdb guile:debug" \
78 "git -D coreutils"
79do
80 guix shell --export-manifest $options > "$manifest"
81 cat "$manifest"
82 guix shell -m "$manifest" -n
83 mv "$manifest" "$manifest.previous"
84done