modules.scm 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2016, 2017 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. (define-module (test-modules)
  19. #:use-module (guix modules)
  20. #:use-module ((guix build-system gnu) #:select (%gnu-build-system-modules))
  21. #:use-module ((guix utils) #:select (call-with-temporary-directory))
  22. #:use-module (srfi srfi-1)
  23. #:use-module (srfi srfi-34)
  24. #:use-module (srfi srfi-64))
  25. (test-begin "modules")
  26. (test-assert "closure of (guix build gnu-build-system)"
  27. (lset= equal?
  28. (live-module-closure '((guix build gnu-build-system)))
  29. (source-module-closure '((guix build gnu-build-system)))
  30. %gnu-build-system-modules
  31. (source-module-closure %gnu-build-system-modules)
  32. (live-module-closure %gnu-build-system-modules)))
  33. (test-assert "closure of (gnu build install)"
  34. (lset= equal?
  35. (live-module-closure '((gnu build install)))
  36. (source-module-closure '((gnu build install)))))
  37. (test-assert "closure of (gnu build image)"
  38. (lset= equal?
  39. (live-module-closure '((gnu build image)))
  40. (source-module-closure '((gnu build image)))))
  41. (test-equal "&missing-dependency-error"
  42. '(something that does not exist)
  43. (call-with-temporary-directory
  44. (lambda (directory)
  45. (call-with-output-file (string-append directory "/foobar.scm")
  46. (lambda (port)
  47. (write '(define-module (foobar)
  48. #:use-module (something that does not exist))
  49. port)))
  50. (call-with-output-file (string-append directory "/baz.scm")
  51. (lambda (port)
  52. (write '(define-module (baz)
  53. #:use-module (foobar))
  54. port)))
  55. (guard (c ((missing-dependency-error? c)
  56. (missing-dependency-module c)))
  57. (source-module-closure '((baz)) (list directory)
  58. #:select? (const #t))))))
  59. (test-end)