guix-archive.sh 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # GNU Guix --- Functional package management for GNU
  2. # Copyright © 2013, 2014, 2015, 2019, 2020 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. # Test the 'guix archive' command-line utility.
  20. #
  21. guix archive --version
  22. archive="t-archive-$$"
  23. archive_alt="t-archive-alt-$$"
  24. tmpdir="t-archive-dir-$$"
  25. rm -f "$archive" "$archive_alt"
  26. rm -rf "$tmpdir"
  27. trap 'rm -f "$archive" "$archive_alt"; chmod -R +w "$tmpdir"; rm -rf "$tmpdir"' EXIT
  28. guix archive --export guile-bootstrap > "$archive"
  29. guix archive --export guile-bootstrap:out > "$archive_alt"
  30. cmp "$archive" "$archive_alt"
  31. guix archive --export \
  32. -e '(@ (gnu packages bootstrap) %bootstrap-guile)' > "$archive_alt"
  33. cmp "$archive" "$archive_alt"
  34. guix archive --export `guix build guile-bootstrap` > "$archive_alt"
  35. cmp "$archive" "$archive_alt"
  36. # Check the exit value upon import.
  37. guix archive --import < "$archive"
  38. ! guix archive something-that-does-not-exist
  39. # This one must not be listed as missing.
  40. guix build guile-bootstrap > "$archive"
  41. guix archive --missing < "$archive"
  42. test "`guix archive --missing < "$archive"`" = ""
  43. # Two out of three should be listed as missing.
  44. echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-foo" >> "$archive"
  45. echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-bar" >> "$archive"
  46. guix archive --missing < "$archive" > "$archive_alt"
  47. echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-foo" > "$archive"
  48. echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-bar" >> "$archive"
  49. cmp "$archive" "$archive_alt"
  50. # This is not a valid store file name, so an error.
  51. echo something invalid > "$archive"
  52. ! guix archive --missing < "$archive"
  53. # Check '--extract'.
  54. guile -c "(use-modules (guix serialization))
  55. (call-with-output-file \"$archive\"
  56. (lambda (port)
  57. (write-file \"$(guix build guile-bootstrap)\" port)))"
  58. guix archive -x "$tmpdir" < "$archive"
  59. test -x "$tmpdir/bin/guile"
  60. test -d "$tmpdir/lib/guile"
  61. # Check '--list'.
  62. guix archive -t < "$archive" | grep "^D /share/guile"
  63. guix archive -t < "$archive" | grep "^x /bin/guile"
  64. guix archive -t < "$archive" | grep "^r /share/guile.*/boot-9\.scm"
  65. ! echo foo | guix archive --authorize