guix-graph.sh 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # GNU Guix --- Functional package management for GNU
  2. # Copyright © 2015-2016, 2019-2020, 2022 Ludovic Courtès <ludo@gnu.org>
  3. # Copyright © 2019 Simon Tournier <zimon.toutoune@gmail.com>
  4. #
  5. # This file is part of GNU Guix.
  6. #
  7. # GNU Guix is free software; you can redistribute it and/or modify it
  8. # under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 3 of the License, or (at
  10. # your option) any later version.
  11. #
  12. # GNU Guix is distributed in the hope that it will be useful, but
  13. # WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. # Test the 'guix graph' command-line utility.
  21. #
  22. module_dir="t-guix-graph-$$"
  23. mkdir "$module_dir"
  24. tmpfile1="$module_dir/t-guix-graph1-$$"
  25. tmpfile2="$module_dir/t-guix-graph2-$$"
  26. trap 'rm -r "$module_dir"' EXIT
  27. cat > "$module_dir/foo.scm"<<EOF
  28. (define-module (foo)
  29. #:use-module (guix packages)
  30. #:use-module (gnu packages base))
  31. (define-public dummy
  32. (package (inherit hello)
  33. (name "dummy")
  34. (version "42")
  35. (synopsis "dummy package")
  36. (description "dummy package. Only used for testing purposes.")))
  37. EOF
  38. guix graph --version
  39. for package in guile-bootstrap coreutils python
  40. do
  41. for graph in package bag-emerged bag bag-with-origins
  42. do
  43. guix graph -t "$graph" "$package" | grep "$package"
  44. done
  45. done
  46. guix build guile-bootstrap
  47. guix graph -t references guile-bootstrap | grep guile-bootstrap
  48. guix graph -e '(@ (gnu packages bootstrap) %bootstrap-guile)' \
  49. | grep guile-bootstrap
  50. ! guix graph -e +
  51. # Try passing store file names.
  52. guix graph -t references guile-bootstrap > "$tmpfile1"
  53. guix graph -t references `guix build guile-bootstrap` > "$tmpfile2"
  54. cmp "$tmpfile1" "$tmpfile2"
  55. # XXX: Filter the file names in the graph to work around the fact that we get
  56. # a mixture of relative and absolute file names.
  57. guix graph -t derivation coreutils > "$tmpfile1"
  58. guix graph -t derivation `guix build -d coreutils` > "$tmpfile2"
  59. cmp "$tmpfile1" "$tmpfile2"
  60. # Try package transformation options.
  61. guix graph git | grep 'label = "openssl'
  62. guix graph git --with-input=openssl=libressl | grep 'label = "libressl'
  63. ! guix graph git --with-input=openssl=libressl | grep 'label = "openssl'
  64. # Try --load-path
  65. guix graph -L $module_dir dummy | grep 'label = "dummy'
  66. # Displaying shortest paths (or lack thereof).
  67. ! guix graph --path emacs vim
  68. path="\
  69. emacs
  70. gnutls
  71. guile
  72. libffi"
  73. test "`guix graph --path emacs libffi | cut -d '@' -f1`" = "$path"
  74. # At the derivation level, there's a direct path because libffi is propagated
  75. # via gtk+.
  76. test "`guix graph --path -t derivation emacs libffi | wc -l`" -ge 2