guix-archive.sh 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # GNU Guix --- Functional package management for GNU
  2. # Copyright © 2013, 2014, 2015 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"; 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. if guix archive something-that-does-not-exist
  39. then false; else true; fi
  40. # This one must not be listed as missing.
  41. guix build guile-bootstrap > "$archive"
  42. guix archive --missing < "$archive"
  43. test "`guix archive --missing < "$archive"`" = ""
  44. # Two out of three should be listed as missing.
  45. echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-foo" >> "$archive"
  46. echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-bar" >> "$archive"
  47. guix archive --missing < "$archive" > "$archive_alt"
  48. echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-foo" > "$archive"
  49. echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-bar" >> "$archive"
  50. cmp "$archive" "$archive_alt"
  51. # This is not a valid store file name, so an error.
  52. echo something invalid > "$archive"
  53. if guix archive --missing < "$archive"
  54. then false; else true; fi
  55. # Check '--extract'.
  56. guile -c "(use-modules (guix serialization))
  57. (call-with-output-file \"$archive\"
  58. (lambda (port)
  59. (write-file \"$(guix build guile-bootstrap)\" port)))"
  60. guix archive -x "$tmpdir" < "$archive"
  61. test -x "$tmpdir/bin/guile"
  62. test -d "$tmpdir/lib/guile"
  63. if echo foo | guix archive --authorize
  64. then false; else true; fi