aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016-2017, 2024 Ludovic Courtès <ludo@gnu.org>
;;;
;;; 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/>.

(define-module (test-modules)
  #:use-module (guix modules)
  #:use-module ((guix build-system gnu) #:select (%default-gnu-imported-modules))
  #:use-module ((guix utils) #:select (call-with-temporary-directory))
  #:use-module (srfi srfi-1)
  #:use-module (srfi srfi-34)
  #:use-module (srfi srfi-64))

(test-begin "modules")

(test-assert "closure of (guix build gnu-build-system)"
  (lset= equal?
         (live-module-closure '((guix build gnu-build-system)))
         (source-module-closure '((guix build gnu-build-system)))
         %default-gnu-imported-modules
         (source-module-closure %default-gnu-imported-modules)
         (live-module-closure %default-gnu-imported-modules)))

(test-assert "closure of (gnu build install)"
  (lset= equal?
         (live-module-closure '((gnu build install)))
         (source-module-closure '((gnu build install)))))

(test-assert "closure of (gnu build image)"
  (lset= equal?
         (live-module-closure '((gnu build image)))
         (source-module-closure '((gnu build image)))))

(test-equal "&missing-dependency-error"
  '(something that does not exist)
  (call-with-temporary-directory
   (lambda (directory)
     (call-with-output-file (string-append directory "/foobar.scm")
       (lambda (port)
         (write '(define-module (foobar)
                   #:use-module (something that does not exist))
                port)))

     (call-with-output-file (string-append directory "/baz.scm")
       (lambda (port)
         (write '(define-module (baz)
                   #:use-module (foobar))
                port)))

     (guard (c ((missing-dependency-error? c)
                (missing-dependency-module c)))
       (source-module-closure '((baz)) (list directory)
                              #:select? (const #t))))))

(test-equal "file-name->module-name"
  '(guix foo)
  (file-name->module-name "guix/foo.scm"))

(test-equal "file-name->module-name, leading dot"
  '(guix foo)
  (file-name->module-name "./guix/foo.scm"))

(test-end)
d5b23c031b790cb0f3f36a30315306504b44'>gnu: spin2cpp: Update to 3.6.4....Tobias Geerinckx-Rice 2018-02-11gnu: propeller-gcc: Fix build....Ricardo Wurmus 2018-01-04gnu: Add fc-host-tools....Danny Milosavljevic 2017-12-10gnu: picprog: Fix non-Intel support....Efraim Flashner 2017-12-10gnu: Add picprog....Danny Milosavljevic 2017-10-23gnu: Add python2-libmpsse....Danny Milosavljevic 2017-10-15gnu: propeller-development-suite: Use stable release....Ricardo Wurmus 2017-09-28gnu: openocd: Update to 0.10.0...Theodoros Foradis 2017-09-28gnu: libjaylink: Update to commit 699b700....Theodoros Foradis 2017-09-04gnu: Put autoconf-related phases immediately after the 'unpack phase....Kei Kebreau 2017-08-27gnu: Fetch several Git sources over HTTPS....Leo Famulari 2017-08-07Merge branch 'master' into core-updatesMark H Weaver 2017-08-07gnu: propeller-gcc-4: Don't build on aarch64-linux....Efraim Flashner 2017-06-26Merge branch 'master' into core-updatesMark H Weaver 2017-06-21gnu: propeller-gcc: Default to version 4....Ricardo Wurmus 2017-06-20Merge branch 'master' into core-updatesMark H Weaver 2017-06-18gnu: propeller-gcc-4: Add cross environment variables patch....Ricardo Wurmus 2017-06-18Merge branch 'master' into core-updatesMark H Weaver 2017-06-16gnu: spin2cpp: Update to 3.6.3....Tobias Geerinckx-Rice 2017-06-15gnu: Add propeller-gcc-4....Ricardo Wurmus 2017-05-27Merge branch 'master' into core-updatesMark H Weaver 2017-05-24gnu: arm-none-eabi-toolchain: Include libstdc++....Ricardo Wurmus 2017-05-24gnu: arm-none-eabi-toolchain: Provide union of all inputs at the output....Ricardo Wurmus 2017-05-24gnu: Add libstdc++-arm-none-eabi....Ricardo Wurmus 2017-05-24gnu: Allow overriding of xgcc package in cross-gcc....Ricardo Wurmus 2017-05-24Merge branch 'master' into core-updatesRicardo Wurmus 2017-05-15gnu: flex-2.6.1: Remove variable....Leo Famulari 2017-05-01gnu: Add gcc-vc4....Danny Milosavljevic 2017-03-30gnu: propeller-binutils: Use flex 2.6.1....Ricardo Wurmus