2015-08-26 18:36:41 -04:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
2022-01-16 17:33:58 -05:00
|
|
|
# Copyright © 2015-2016, 2019-2020, 2022 Ludovic Courtès <ludo@gnu.org>
|
2020-01-16 09:16:02 -05:00
|
|
|
# Copyright © 2019 Simon Tournier <zimon.toutoune@gmail.com>
|
2015-08-26 18:36:41 -04:00
|
|
|
#
|
|
|
|
# This file is part of GNU Guix.
|
|
|
|
#
|
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
|
|
|
# GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#
|
|
|
|
# Test the 'guix graph' command-line utility.
|
|
|
|
#
|
|
|
|
|
2020-01-16 09:16:02 -05:00
|
|
|
module_dir="t-guix-graph-$$"
|
|
|
|
mkdir "$module_dir"
|
|
|
|
|
|
|
|
tmpfile1="$module_dir/t-guix-graph1-$$"
|
|
|
|
tmpfile2="$module_dir/t-guix-graph2-$$"
|
2022-01-16 17:33:58 -05:00
|
|
|
trap 'rm -r "$module_dir"' EXIT
|
2016-05-20 11:07:23 -04:00
|
|
|
|
2020-01-16 09:16:02 -05:00
|
|
|
|
|
|
|
cat > "$module_dir/foo.scm"<<EOF
|
|
|
|
(define-module (foo)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (gnu packages base))
|
|
|
|
|
|
|
|
(define-public dummy
|
|
|
|
(package (inherit hello)
|
|
|
|
(name "dummy")
|
|
|
|
(version "42")
|
|
|
|
(synopsis "dummy package")
|
|
|
|
(description "dummy package. Only used for testing purposes.")))
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
2015-08-26 18:36:41 -04:00
|
|
|
guix graph --version
|
|
|
|
|
|
|
|
for package in guile-bootstrap coreutils python
|
|
|
|
do
|
2015-11-23 17:31:53 -05:00
|
|
|
for graph in package bag-emerged bag bag-with-origins
|
2015-08-26 18:36:41 -04:00
|
|
|
do
|
|
|
|
guix graph -t "$graph" "$package" | grep "$package"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
guix build guile-bootstrap
|
|
|
|
guix graph -t references guile-bootstrap | grep guile-bootstrap
|
2015-09-02 09:23:52 -04:00
|
|
|
|
|
|
|
guix graph -e '(@ (gnu packages bootstrap) %bootstrap-guile)' \
|
|
|
|
| grep guile-bootstrap
|
|
|
|
|
tests: Fix checks for expected failures.
Addresses <https://issues.guix.gnu.org/62406>.
With 'set -e', a return status inverted with '!' does not cause the shell to
exit immediately. Instead use '&& false' to indicate an expected failure.
* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh,
tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-environment-container.sh, tests/guix-environment.sh,
tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh,
tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh,
tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh,
tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh,
tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with
'... && false' or `test ! ...` as appropriate.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-04-20 01:11:27 -04:00
|
|
|
guix graph -e + && false
|
2016-05-20 11:07:23 -04:00
|
|
|
|
|
|
|
# Try passing store file names.
|
|
|
|
|
|
|
|
guix graph -t references guile-bootstrap > "$tmpfile1"
|
|
|
|
guix graph -t references `guix build guile-bootstrap` > "$tmpfile2"
|
|
|
|
cmp "$tmpfile1" "$tmpfile2"
|
|
|
|
|
|
|
|
# XXX: Filter the file names in the graph to work around the fact that we get
|
|
|
|
# a mixture of relative and absolute file names.
|
|
|
|
guix graph -t derivation coreutils > "$tmpfile1"
|
|
|
|
guix graph -t derivation `guix build -d coreutils` > "$tmpfile2"
|
|
|
|
cmp "$tmpfile1" "$tmpfile2"
|
2019-11-07 12:15:55 -05:00
|
|
|
|
|
|
|
# Try package transformation options.
|
|
|
|
guix graph git | grep 'label = "openssl'
|
|
|
|
guix graph git --with-input=openssl=libressl | grep 'label = "libressl'
|
tests: Fix checks for expected failures.
Addresses <https://issues.guix.gnu.org/62406>.
With 'set -e', a return status inverted with '!' does not cause the shell to
exit immediately. Instead use '&& false' to indicate an expected failure.
* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh,
tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-environment-container.sh, tests/guix-environment.sh,
tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh,
tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh,
tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh,
tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh,
tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with
'... && false' or `test ! ...` as appropriate.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-04-20 01:11:27 -04:00
|
|
|
guix graph git --with-input=openssl=libressl | grep 'label = "openssl' && false
|
2020-01-16 09:16:02 -05:00
|
|
|
|
|
|
|
# Try --load-path
|
|
|
|
guix graph -L $module_dir dummy | grep 'label = "dummy'
|
2020-05-09 18:53:29 -04:00
|
|
|
|
|
|
|
# Displaying shortest paths (or lack thereof).
|
tests: Fix checks for expected failures.
Addresses <https://issues.guix.gnu.org/62406>.
With 'set -e', a return status inverted with '!' does not cause the shell to
exit immediately. Instead use '&& false' to indicate an expected failure.
* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh,
tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-environment-container.sh, tests/guix-environment.sh,
tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh,
tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh,
tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh,
tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh,
tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with
'... && false' or `test ! ...` as appropriate.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-04-20 01:11:27 -04:00
|
|
|
guix graph --path emacs vim && false
|
2020-05-09 18:53:29 -04:00
|
|
|
|
|
|
|
path="\
|
|
|
|
emacs
|
|
|
|
gnutls
|
2023-04-25 16:16:42 -04:00
|
|
|
p11-kit
|
2020-05-09 18:53:29 -04:00
|
|
|
libffi"
|
|
|
|
test "`guix graph --path emacs libffi | cut -d '@' -f1`" = "$path"
|
|
|
|
|
|
|
|
# At the derivation level, there's a direct path because libffi is propagated
|
|
|
|
# via gtk+.
|
|
|
|
test "`guix graph --path -t derivation emacs libffi | wc -l`" -ge 2
|