2016-05-04 23:33:59 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2025-03-25 17:41:57 +01:00
|
|
|
|
;;; Copyright © 2016-2020, 2022, 2024-2025 Ludovic Courtès <ludo@gnu.org>
|
2018-06-11 21:07:24 +02:00
|
|
|
|
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
2025-09-18 12:25:39 +09:00
|
|
|
|
;;; Copyright © 2022, 2025 Maxim Cournoyer <maxim@guixotic.coop>
|
2022-02-07 23:14:04 +01:00
|
|
|
|
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
|
2024-10-18 13:21:22 +00:00
|
|
|
|
;;; Copyright © 2024 Dariqq <dariqq@posteo.net>
|
2016-05-04 23:33:59 +02:00
|
|
|
|
;;;
|
|
|
|
|
|
;;; 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 (gnu tests base)
|
|
|
|
|
|
#:use-module (gnu tests)
|
2022-07-01 09:38:09 +02:00
|
|
|
|
#:use-module (gnu image)
|
2016-05-04 23:33:59 +02:00
|
|
|
|
#:use-module (gnu system)
|
2022-07-01 09:38:09 +02:00
|
|
|
|
#:autoload (gnu system image) (system-image)
|
2024-10-18 13:21:22 +00:00
|
|
|
|
#:use-module (gnu system privilege)
|
2016-05-04 23:33:59 +02:00
|
|
|
|
#:use-module (gnu system shadow)
|
|
|
|
|
|
#:use-module (gnu system vm)
|
|
|
|
|
|
#:use-module (gnu services)
|
2016-06-27 21:40:28 +02:00
|
|
|
|
#:use-module (gnu services base)
|
2016-05-04 23:33:59 +02:00
|
|
|
|
#:use-module (gnu services shepherd)
|
2016-06-27 21:40:28 +02:00
|
|
|
|
#:use-module (gnu services networking)
|
2018-06-20 10:00:44 +02:00
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
|
|
#:use-module (gnu packages bash)
|
2025-02-27 11:51:49 +01:00
|
|
|
|
#:use-module (gnu packages bootstrap)
|
|
|
|
|
|
#:use-module (gnu packages guile)
|
2016-11-23 13:56:42 +01:00
|
|
|
|
#:use-module (gnu packages imagemagick)
|
2022-07-01 09:38:09 +02:00
|
|
|
|
#:use-module (gnu packages linux)
|
2016-11-23 13:56:42 +01:00
|
|
|
|
#:use-module (gnu packages ocr)
|
2017-05-12 22:07:52 +02:00
|
|
|
|
#:use-module (gnu packages package-management)
|
2017-08-28 09:54:03 +02:00
|
|
|
|
#:use-module (gnu packages tmux)
|
2022-07-01 09:38:09 +02:00
|
|
|
|
#:use-module (gnu packages virtualization)
|
2016-05-04 23:33:59 +02:00
|
|
|
|
#:use-module (guix gexp)
|
|
|
|
|
|
#:use-module (guix store)
|
2018-06-20 10:00:44 +02:00
|
|
|
|
#:use-module (guix monads)
|
2022-07-01 09:38:09 +02:00
|
|
|
|
#:use-module (guix modules)
|
2016-05-04 23:33:59 +02:00
|
|
|
|
#:use-module (guix packages)
|
2025-02-27 11:51:49 +01:00
|
|
|
|
#:use-module (guix profiles)
|
2022-02-07 23:14:04 +01:00
|
|
|
|
#:use-module (guix utils)
|
2022-07-01 09:38:09 +02:00
|
|
|
|
#:use-module ((srfi srfi-1) #:hide (partition))
|
2018-09-08 22:59:04 +02:00
|
|
|
|
#:use-module (ice-9 match)
|
2016-06-19 23:53:24 +02:00
|
|
|
|
#:export (run-basic-test
|
2016-06-22 22:36:40 +02:00
|
|
|
|
%test-basic-os
|
2022-02-07 23:14:04 +01:00
|
|
|
|
%test-linux-libre-5.15
|
|
|
|
|
|
%test-linux-libre-5.10
|
|
|
|
|
|
%test-linux-libre-5.4
|
2017-08-28 09:54:03 +02:00
|
|
|
|
%test-halt
|
2022-07-01 09:38:09 +02:00
|
|
|
|
%test-root-unmount
|
2018-06-20 10:00:44 +02:00
|
|
|
|
%test-cleanup
|
2025-02-27 11:51:49 +01:00
|
|
|
|
%test-activation
|
2025-02-27 23:13:26 +01:00
|
|
|
|
|
|
|
|
|
|
%hello-dependencies-manifest
|
2025-02-27 23:45:59 +01:00
|
|
|
|
guix-daemon-test-cases
|
2025-03-25 17:41:57 +01:00
|
|
|
|
%test-guix-daemon
|
|
|
|
|
|
%test-guix-daemon-unprivileged))
|
2016-05-04 23:33:59 +02:00
|
|
|
|
|
|
|
|
|
|
(define %simple-os
|
2017-03-31 22:13:50 +02:00
|
|
|
|
(simple-operating-system))
|
2016-05-04 23:33:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
2016-11-23 20:59:13 +01:00
|
|
|
|
(define* (run-basic-test os command #:optional (name "basic")
|
2020-09-10 14:59:21 +02:00
|
|
|
|
#:key
|
|
|
|
|
|
initialization
|
|
|
|
|
|
root-password
|
2025-06-29 15:52:47 +02:00
|
|
|
|
desktop?
|
|
|
|
|
|
extra-tests)
|
2016-06-19 23:53:24 +02:00
|
|
|
|
"Return a derivation called NAME that tests basic features of the OS started
|
|
|
|
|
|
using COMMAND, a gexp that evaluates to a list of strings. Compare some
|
2016-11-23 20:59:13 +01:00
|
|
|
|
properties of running system to what's declared in OS, an <operating-system>.
|
|
|
|
|
|
|
|
|
|
|
|
When INITIALIZATION is true, it must be a one-argument procedure that is
|
|
|
|
|
|
passed a gexp denoting the marionette, and it must return gexp that is
|
|
|
|
|
|
inserted before the first test. This is used to introduce an extra
|
2020-02-21 15:07:44 +01:00
|
|
|
|
initialization step, such as entering a LUKS passphrase.
|
|
|
|
|
|
|
|
|
|
|
|
When ROOT-PASSWORD is true, enter it as the root password when logging in.
|
2025-06-29 15:52:47 +02:00
|
|
|
|
Otherwise assume that there is no password for root.
|
|
|
|
|
|
|
|
|
|
|
|
When EXTRA-TESTS is true, it must be a one-argument procedure that is
|
|
|
|
|
|
passed a gexp denoting the marionette. It must then return a gexp that is
|
|
|
|
|
|
inserted after the last test. This is meant as a way of extending the basic
|
|
|
|
|
|
tests that are defined within this procedure."
|
2017-02-08 15:32:28 +01:00
|
|
|
|
(define special-files
|
2017-04-15 22:12:37 +02:00
|
|
|
|
(service-value
|
2017-02-08 15:32:28 +01:00
|
|
|
|
(fold-services (operating-system-services os)
|
|
|
|
|
|
#:target-type special-files-service-type)))
|
|
|
|
|
|
|
2018-09-08 22:59:04 +02:00
|
|
|
|
(define guix&co
|
|
|
|
|
|
(match (package-transitive-propagated-inputs guix)
|
|
|
|
|
|
(((labels packages) ...)
|
|
|
|
|
|
(cons guix packages))))
|
|
|
|
|
|
|
2016-06-19 23:53:24 +02:00
|
|
|
|
(define test
|
2017-01-19 23:42:20 +01:00
|
|
|
|
(with-imported-modules '((gnu build marionette)
|
|
|
|
|
|
(guix build syscalls))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (gnu build marionette)
|
2017-01-19 23:42:20 +01:00
|
|
|
|
(guix build syscalls)
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(srfi srfi-1)
|
2021-10-12 14:01:56 -04:00
|
|
|
|
(srfi srfi-19)
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(srfi srfi-26)
|
|
|
|
|
|
(srfi srfi-64)
|
|
|
|
|
|
(ice-9 match))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette #$command))
|
|
|
|
|
|
|
tests: Reduce boilerplate for users of 'system-test-runner'.
* gnu/tests/audio.scm, gnu/tests/base.scm, gnu/tests/ci.scm,
gnu/tests/cups.scm, gnu/tests/databases.scm, gnu/tests/desktop.scm,
gnu/tests/dict.scm, gnu/tests/docker.scm, gnu/tests/file-sharing.scm,
gnu/tests/ganeti.scm, gnu/tests/guix.scm, gnu/tests/ldap.scm,
gnu/tests/linux-modules.scm,
gnu/tests/mail.scm, gnu/tests/messaging.scm, gnu/tests/monitoring.scm,
gnu/tests/networking.scm, gnu/tests/nfs.scm,
gnu/tests/package-management.scm, gnu/tests/reconfigure.scm,
gnu/tests/rsync.scm, gnu/tests/security-token.scm,
gnu/tests/singularity.scm, gnu/tests/ssh.scm, gnu/tests/telephony.scm,
gnu/tests/version-control.scm, gnu/tests/virtualization.scm,
gnu/tests/web.scm: Remove (mkdir #$output) (chdir #$output) and
pass #$output as argument to 'system-test-runner'.
2021-09-26 23:20:56 +02:00
|
|
|
|
(test-runner-current (system-test-runner #$output))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(test-begin "basic")
|
|
|
|
|
|
|
2016-11-23 20:59:13 +01:00
|
|
|
|
#$(and initialization
|
|
|
|
|
|
(initialization #~marionette))
|
|
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(test-assert "uname"
|
|
|
|
|
|
(match (marionette-eval '(uname) marionette)
|
|
|
|
|
|
(#("Linux" host-name version _ architecture)
|
|
|
|
|
|
(and (string=? host-name
|
|
|
|
|
|
#$(operating-system-host-name os))
|
|
|
|
|
|
(string-prefix? #$(package-version
|
|
|
|
|
|
(operating-system-kernel os))
|
|
|
|
|
|
version)
|
|
|
|
|
|
(string-prefix? architecture %host-type)))))
|
|
|
|
|
|
|
2018-07-03 15:29:37 +02:00
|
|
|
|
;; Shepherd reads the config file *before* binding its control
|
|
|
|
|
|
;; socket, so /var/run/shepherd/socket might not exist yet when the
|
|
|
|
|
|
;; 'marionette' service is started.
|
|
|
|
|
|
(test-assert "shepherd socket ready"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
`(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
|
|
|
|
|
(let loop ((i 10))
|
|
|
|
|
|
(cond ((file-exists? (%shepherd-socket-file))
|
|
|
|
|
|
#t)
|
|
|
|
|
|
((> i 0)
|
|
|
|
|
|
(sleep 1)
|
|
|
|
|
|
(loop (- i 1)))
|
|
|
|
|
|
(else
|
|
|
|
|
|
#f))))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2018-12-18 14:51:56 +01:00
|
|
|
|
(test-eq "stdin is /dev/null"
|
|
|
|
|
|
'eof
|
|
|
|
|
|
;; Make sure services can no longer read from stdin once the
|
|
|
|
|
|
;; system has booted.
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
`(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
2023-04-21 13:17:40 +02:00
|
|
|
|
(start-service 'user-processes)
|
2018-12-18 14:51:56 +01:00
|
|
|
|
((@@ (gnu services herd) eval-there)
|
|
|
|
|
|
'(let ((result (read (current-input-port))))
|
|
|
|
|
|
(if (eof-object? result)
|
|
|
|
|
|
'eof
|
|
|
|
|
|
result))))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(test-assert "shell and user commands"
|
|
|
|
|
|
;; Is everything in $PATH?
|
|
|
|
|
|
(zero? (marionette-eval '(system "
|
2016-06-19 23:53:24 +02:00
|
|
|
|
. /etc/profile
|
|
|
|
|
|
set -e -x
|
|
|
|
|
|
guix --version
|
|
|
|
|
|
ls --version
|
|
|
|
|
|
grep --version
|
|
|
|
|
|
info --version")
|
2016-07-03 23:11:40 +02:00
|
|
|
|
marionette)))
|
|
|
|
|
|
|
2017-02-08 15:32:28 +01:00
|
|
|
|
(test-equal "special files"
|
|
|
|
|
|
'#$special-files
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (ice-9 match))
|
|
|
|
|
|
|
|
|
|
|
|
(map (match-lambda
|
|
|
|
|
|
((file target)
|
|
|
|
|
|
(list file (readlink file))))
|
|
|
|
|
|
'#$special-files))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(test-assert "accounts"
|
|
|
|
|
|
(let ((users (marionette-eval '(begin
|
|
|
|
|
|
(use-modules (ice-9 match))
|
|
|
|
|
|
(let loop ((result '()))
|
|
|
|
|
|
(match (getpw)
|
|
|
|
|
|
(#f (reverse result))
|
|
|
|
|
|
(x (loop (cons x result))))))
|
|
|
|
|
|
marionette)))
|
2018-11-18 23:34:19 +01:00
|
|
|
|
(lset= equal?
|
|
|
|
|
|
(map (lambda (user)
|
|
|
|
|
|
(list (passwd:name user)
|
|
|
|
|
|
(passwd:dir user)))
|
|
|
|
|
|
users)
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(list
|
2018-11-18 23:34:19 +01:00
|
|
|
|
#$@(map (lambda (account)
|
|
|
|
|
|
`(list ,(user-account-name account)
|
|
|
|
|
|
,(user-account-home-directory account)))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(operating-system-user-accounts os))))))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "shepherd services"
|
2016-08-30 17:59:15 +02:00
|
|
|
|
(let ((services (marionette-eval
|
|
|
|
|
|
'(begin
|
2024-07-18 12:26:51 +02:00
|
|
|
|
(use-modules (gnu services herd)
|
|
|
|
|
|
(srfi srfi-1))
|
2016-08-30 17:59:15 +02:00
|
|
|
|
|
2024-07-18 12:26:51 +02:00
|
|
|
|
(append-map live-service-provision
|
|
|
|
|
|
(current-services)))
|
2016-08-30 17:59:15 +02:00
|
|
|
|
marionette)))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(lset= eq?
|
|
|
|
|
|
(pk 'services services)
|
2024-07-18 12:26:51 +02:00
|
|
|
|
'(root
|
2025-05-05 10:58:37 +09:00
|
|
|
|
shepherd
|
|
|
|
|
|
#$@(operating-system-shepherd-service-names os)))))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
|
2021-10-12 14:01:56 -04:00
|
|
|
|
(test-equal "libc honors /etc/localtime"
|
|
|
|
|
|
-7200 ;CEST = GMT+2
|
|
|
|
|
|
;; Assume OS is configured to have a CEST timezone.
|
|
|
|
|
|
(let* ((sept-2021 (time-second
|
|
|
|
|
|
(date->time-utc
|
|
|
|
|
|
(make-date 0 0 00 12 01 09 2021 7200)))))
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
`(tm:gmtoff (localtime ,sept-2021))
|
|
|
|
|
|
marionette)))
|
|
|
|
|
|
|
2025-11-13 09:38:35 +09:00
|
|
|
|
(test-equal "/etc/localtime is a symlink to the timezone data file"
|
|
|
|
|
|
;; This is a systemd-ism that most distributions follow; we do to,
|
|
|
|
|
|
;; for compatibility with software that assumes this is convention
|
|
|
|
|
|
;; is followed (see:
|
|
|
|
|
|
;; <https://www.freedesktop.org/software/systemd/man/latest/localtime.html#>)
|
|
|
|
|
|
#$(operating-system-timezone os)
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
`(string-join
|
|
|
|
|
|
(take-right (string-split (readlink "/etc/localtime") #\/) 2)
|
|
|
|
|
|
"/")
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2020-04-06 23:50:27 +02:00
|
|
|
|
(test-equal "/var/log/messages is not world-readable"
|
2025-05-06 21:37:44 +09:00
|
|
|
|
#o640 ;<https://bugs.gnu.org/40405>
|
2020-04-06 23:50:27 +02:00
|
|
|
|
(begin
|
|
|
|
|
|
(wait-for-file "/var/log/messages" marionette
|
|
|
|
|
|
#:read 'get-u8)
|
|
|
|
|
|
(marionette-eval '(stat:perms (lstat "/var/log/messages"))
|
|
|
|
|
|
marionette)))
|
|
|
|
|
|
|
2017-02-01 12:16:39 +01:00
|
|
|
|
(test-assert "homes"
|
|
|
|
|
|
(let ((homes
|
|
|
|
|
|
'#$(map user-account-home-directory
|
|
|
|
|
|
(filter user-account-create-home-directory?
|
|
|
|
|
|
(operating-system-user-accounts os)))))
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
`(begin
|
|
|
|
|
|
(use-modules (gnu services herd) (srfi srfi-1))
|
|
|
|
|
|
|
|
|
|
|
|
;; Home directories are supposed to exist once 'user-homes'
|
|
|
|
|
|
;; has been started.
|
|
|
|
|
|
(start-service 'user-homes)
|
|
|
|
|
|
|
|
|
|
|
|
(every (lambda (home)
|
|
|
|
|
|
(and (file-exists? home)
|
|
|
|
|
|
(file-is-directory? home)))
|
|
|
|
|
|
',homes))
|
|
|
|
|
|
marionette)))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "skeletons in home directories"
|
2017-02-03 09:50:09 +01:00
|
|
|
|
(let ((users+homes
|
2017-02-01 12:16:39 +01:00
|
|
|
|
'#$(filter-map (lambda (account)
|
|
|
|
|
|
(and (user-account-create-home-directory?
|
|
|
|
|
|
account)
|
|
|
|
|
|
(not (user-account-system? account))
|
2017-02-03 09:50:09 +01:00
|
|
|
|
(list (user-account-name account)
|
|
|
|
|
|
(user-account-home-directory
|
|
|
|
|
|
account))))
|
2017-02-01 12:16:39 +01:00
|
|
|
|
(operating-system-user-accounts os))))
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
`(begin
|
2019-06-23 23:48:07 +02:00
|
|
|
|
(use-modules (guix build utils) (srfi srfi-1)
|
|
|
|
|
|
(ice-9 ftw) (ice-9 match))
|
2017-02-03 09:50:09 +01:00
|
|
|
|
|
|
|
|
|
|
(every (match-lambda
|
|
|
|
|
|
((user home)
|
|
|
|
|
|
;; Make sure HOME has all the skeletons...
|
|
|
|
|
|
(and (null? (lset-difference string=?
|
|
|
|
|
|
(scandir "/etc/skel/")
|
|
|
|
|
|
(scandir home)))
|
|
|
|
|
|
|
|
|
|
|
|
;; ... and that everything is user-owned.
|
|
|
|
|
|
(let* ((pw (getpwnam user))
|
|
|
|
|
|
(uid (passwd:uid pw))
|
|
|
|
|
|
(gid (passwd:gid pw))
|
|
|
|
|
|
(st (lstat home)))
|
|
|
|
|
|
(define (user-owned? file)
|
|
|
|
|
|
(= uid (stat:uid (lstat file))))
|
|
|
|
|
|
|
|
|
|
|
|
(and (= uid (stat:uid st))
|
|
|
|
|
|
(eq? 'directory (stat:type st))
|
|
|
|
|
|
(every user-owned?
|
|
|
|
|
|
(find-files home
|
|
|
|
|
|
#:directories? #t)))))))
|
|
|
|
|
|
',users+homes))
|
2017-02-01 12:16:39 +01:00
|
|
|
|
marionette)))
|
|
|
|
|
|
|
2017-05-30 17:40:39 +02:00
|
|
|
|
(test-equal "permissions on /root"
|
|
|
|
|
|
#o700
|
|
|
|
|
|
(let ((root-home #$(any (lambda (account)
|
|
|
|
|
|
(and (zero? (user-account-uid account))
|
|
|
|
|
|
(user-account-home-directory
|
|
|
|
|
|
account)))
|
|
|
|
|
|
(operating-system-user-accounts os))))
|
|
|
|
|
|
(stat:perms (marionette-eval `(stat ,root-home) marionette))))
|
|
|
|
|
|
|
2024-09-25 16:30:09 +02:00
|
|
|
|
(test-equal "permissions on /tmp"
|
|
|
|
|
|
#o1777
|
|
|
|
|
|
(stat:perms (marionette-eval '(lstat "/tmp") marionette)))
|
|
|
|
|
|
|
2019-03-08 22:48:04 +01:00
|
|
|
|
(test-equal "ownership and permissions of /var/empty"
|
|
|
|
|
|
'(0 0 #o555)
|
|
|
|
|
|
(let ((st (marionette-eval `(stat "/var/empty") marionette)))
|
|
|
|
|
|
(list (stat:uid st) (stat:gid st)
|
|
|
|
|
|
(stat:perms st))))
|
|
|
|
|
|
|
2017-05-18 10:08:55 +02:00
|
|
|
|
(test-equal "no extra home directories"
|
|
|
|
|
|
'()
|
|
|
|
|
|
|
|
|
|
|
|
;; Make sure the home directories that are not supposed to be
|
|
|
|
|
|
;; created are indeed not created.
|
|
|
|
|
|
(let ((nonexistent
|
|
|
|
|
|
'#$(filter-map (lambda (user)
|
|
|
|
|
|
(and (not
|
|
|
|
|
|
(user-account-create-home-directory?
|
|
|
|
|
|
user))
|
|
|
|
|
|
(user-account-home-directory user)))
|
|
|
|
|
|
(operating-system-user-accounts os))))
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
`(begin
|
|
|
|
|
|
(use-modules (srfi srfi-1))
|
|
|
|
|
|
|
|
|
|
|
|
;; Note: Do not flag "/var/empty".
|
|
|
|
|
|
(filter file-exists?
|
|
|
|
|
|
',(remove (cut string-prefix? "/var/" <>)
|
|
|
|
|
|
nonexistent)))
|
|
|
|
|
|
marionette)))
|
|
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(test-equal "login on tty1"
|
|
|
|
|
|
"root\n"
|
|
|
|
|
|
(begin
|
2020-09-10 14:59:21 +02:00
|
|
|
|
;; XXX: On desktop, GDM3 will switch to TTY7. If this happens
|
|
|
|
|
|
;; after we switched to TTY1, we won't be able to login. Make
|
|
|
|
|
|
;; sure to wait long enough before switching to TTY1.
|
|
|
|
|
|
(when #$desktop?
|
|
|
|
|
|
(sleep 30))
|
|
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(marionette-control "sendkey ctrl-alt-f1" marionette)
|
|
|
|
|
|
;; Wait for the 'term-tty1' service to be running (using
|
|
|
|
|
|
;; 'start-service' is the simplest and most reliable way to do
|
|
|
|
|
|
;; that.)
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
|
|
|
|
|
(start-service 'term-tty1))
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
|
|
|
|
|
|
;; Now we can type.
|
2020-02-21 15:07:44 +01:00
|
|
|
|
(let ((password #$root-password))
|
|
|
|
|
|
(if password
|
|
|
|
|
|
(begin
|
|
|
|
|
|
(marionette-type "root\n" marionette)
|
|
|
|
|
|
(wait-for-screen-text marionette
|
|
|
|
|
|
(lambda (text)
|
|
|
|
|
|
(string-contains text "Password"))
|
2022-08-12 11:23:29 -04:00
|
|
|
|
#:ocr
|
2020-02-21 15:07:44 +01:00
|
|
|
|
#$(file-append ocrad "/bin/ocrad"))
|
|
|
|
|
|
(marionette-type (string-append password "\n\n")
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
(marionette-type "root\n\n" marionette)))
|
|
|
|
|
|
(marionette-type "id -un > logged-in\n" marionette)
|
2016-07-03 23:11:40 +02:00
|
|
|
|
|
|
|
|
|
|
;; It can take a while before the shell commands are executed.
|
|
|
|
|
|
(marionette-eval '(use-modules (rnrs io ports)) marionette)
|
2017-09-07 23:31:21 +02:00
|
|
|
|
(wait-for-file "/root/logged-in" marionette
|
2022-03-11 16:29:50 -05:00
|
|
|
|
#:read 'get-string-all
|
|
|
|
|
|
#:timeout 30)))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
|
2019-05-09 12:02:20 +02:00
|
|
|
|
(test-equal "getlogin on tty1"
|
|
|
|
|
|
"\"root\""
|
|
|
|
|
|
(begin
|
|
|
|
|
|
;; Assume we logged in in the previous test and type.
|
2019-05-15 12:09:48 +02:00
|
|
|
|
(marionette-type "guile -c '(write (getlogin))' > /root/login-id.tmp\n"
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
(marionette-type "mv /root/login-id{.tmp,}\n"
|
2019-05-09 12:02:20 +02:00
|
|
|
|
marionette)
|
|
|
|
|
|
|
|
|
|
|
|
;; It can take a while before the shell commands are executed.
|
|
|
|
|
|
(marionette-eval '(use-modules (rnrs io ports)) marionette)
|
|
|
|
|
|
(wait-for-file "/root/login-id" marionette
|
2022-03-11 16:29:50 -05:00
|
|
|
|
#:read 'get-string-all
|
|
|
|
|
|
#:timeout 30)))
|
2019-05-09 12:02:20 +02:00
|
|
|
|
|
2017-01-19 23:42:20 +01:00
|
|
|
|
;; There should be one utmpx entry for the user logged in on tty1.
|
|
|
|
|
|
(test-equal "utmpx entry"
|
|
|
|
|
|
'(("root" "tty1" #f))
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (guix build syscalls)
|
|
|
|
|
|
(srfi srfi-1))
|
|
|
|
|
|
|
|
|
|
|
|
(filter-map (lambda (entry)
|
|
|
|
|
|
(and (equal? (login-type USER_PROCESS)
|
|
|
|
|
|
(utmpx-login-type entry))
|
|
|
|
|
|
(list (utmpx-user entry) (utmpx-line entry)
|
|
|
|
|
|
(utmpx-host entry))))
|
|
|
|
|
|
(utmpx-entries)))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2017-01-24 00:45:11 +01:00
|
|
|
|
;; Likewise for /var/log/wtmp (used by 'last').
|
|
|
|
|
|
(test-assert "wtmp entry"
|
|
|
|
|
|
(match (marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (guix build syscalls)
|
|
|
|
|
|
(srfi srfi-1))
|
|
|
|
|
|
|
|
|
|
|
|
(define (entry->list entry)
|
|
|
|
|
|
(list (utmpx-user entry) (utmpx-line entry)
|
|
|
|
|
|
(utmpx-host entry) (utmpx-login-type entry)))
|
|
|
|
|
|
|
|
|
|
|
|
(call-with-input-file "/var/log/wtmp"
|
|
|
|
|
|
(lambda (port)
|
|
|
|
|
|
(let loop ((result '()))
|
|
|
|
|
|
(if (eof-object? (peek-char port))
|
|
|
|
|
|
(map entry->list (reverse result))
|
|
|
|
|
|
(loop (cons (read-utmpx port) result)))))))
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
(((users lines hosts types) ..1)
|
|
|
|
|
|
(every (lambda (type)
|
|
|
|
|
|
(eqv? type (login-type LOGIN_PROCESS)))
|
|
|
|
|
|
types))))
|
|
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(test-assert "host name resolution"
|
|
|
|
|
|
(match (marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
;; Wait for nscd or our requests go through it.
|
|
|
|
|
|
(use-modules (gnu services herd))
|
|
|
|
|
|
(start-service 'nscd)
|
|
|
|
|
|
|
|
|
|
|
|
(list (getaddrinfo "localhost")
|
|
|
|
|
|
(getaddrinfo #$(operating-system-host-name os))))
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
((((? vector?) ..1) ((? vector?) ..1))
|
|
|
|
|
|
#t)
|
|
|
|
|
|
(x
|
|
|
|
|
|
(pk 'failure x #f))))
|
|
|
|
|
|
|
2022-11-11 18:56:35 +01:00
|
|
|
|
(test-assert "nscd configuration action"
|
|
|
|
|
|
(marionette-eval '(with-shepherd-action 'nscd ('configuration)
|
|
|
|
|
|
results
|
|
|
|
|
|
(file-exists? (car results)))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2018-11-13 11:02:13 +01:00
|
|
|
|
(test-equal "nscd invalidate action"
|
2025-05-06 21:37:44 +09:00
|
|
|
|
'(#t) ;one value, #t
|
2018-11-13 11:02:13 +01:00
|
|
|
|
(marionette-eval '(with-shepherd-action 'nscd ('invalidate "hosts")
|
|
|
|
|
|
result
|
2025-05-05 10:58:37 +09:00
|
|
|
|
result)
|
2018-11-13 11:02:13 +01:00
|
|
|
|
marionette))
|
|
|
|
|
|
|
2019-05-15 12:14:58 +02:00
|
|
|
|
;; FIXME: The 'invalidate' action can't reliably obtain the exit
|
|
|
|
|
|
;; code of 'nscd' so skip this test.
|
|
|
|
|
|
(test-skip 1)
|
2018-11-13 11:02:13 +01:00
|
|
|
|
(test-equal "nscd invalidate action, wrong table"
|
2025-05-06 21:37:44 +09:00
|
|
|
|
'(#f) ;one value, #f
|
2018-11-13 11:02:13 +01:00
|
|
|
|
(marionette-eval '(with-shepherd-action 'nscd ('invalidate "xyz")
|
|
|
|
|
|
result
|
2025-05-05 10:58:37 +09:00
|
|
|
|
result)
|
2018-11-13 11:02:13 +01:00
|
|
|
|
marionette))
|
|
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(test-equal "host not found"
|
|
|
|
|
|
#f
|
2016-06-19 23:53:24 +02:00
|
|
|
|
(marionette-eval
|
2016-07-03 23:11:40 +02:00
|
|
|
|
'(false-if-exception (getaddrinfo "does-not-exist"))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2016-08-02 18:05:23 +02:00
|
|
|
|
(test-equal "locale"
|
|
|
|
|
|
"en_US.utf8"
|
2016-11-23 21:10:49 +01:00
|
|
|
|
(marionette-eval '(let ((before (setlocale LC_ALL "en_US.utf8")))
|
|
|
|
|
|
(setlocale LC_ALL before))
|
2016-08-02 18:05:23 +02:00
|
|
|
|
marionette))
|
|
|
|
|
|
|
2017-05-12 22:05:23 +02:00
|
|
|
|
(test-eq "/run/current-system is a GC root"
|
|
|
|
|
|
'success!
|
2016-08-28 23:15:27 +02:00
|
|
|
|
(marionette-eval '(begin
|
|
|
|
|
|
;; Make sure the (guix …) modules are found.
|
2018-09-08 22:59:04 +02:00
|
|
|
|
(eval-when (expand load eval)
|
|
|
|
|
|
(set! %load-path
|
2025-05-05 10:58:37 +09:00
|
|
|
|
(append (map (lambda (package)
|
|
|
|
|
|
(string-append package
|
|
|
|
|
|
"/share/guile/site/"
|
|
|
|
|
|
(effective-version)))
|
|
|
|
|
|
'#$guix&co)
|
|
|
|
|
|
%load-path)))
|
2016-08-28 23:15:27 +02:00
|
|
|
|
|
|
|
|
|
|
(use-modules (srfi srfi-34) (guix store))
|
|
|
|
|
|
|
|
|
|
|
|
(let ((system (readlink "/run/current-system")))
|
2019-03-04 12:22:54 +01:00
|
|
|
|
(guard (c ((store-protocol-error? c)
|
2017-05-12 22:05:23 +02:00
|
|
|
|
(and (file-exists? system)
|
|
|
|
|
|
'success!)))
|
2016-08-28 23:15:27 +02:00
|
|
|
|
(with-store store
|
|
|
|
|
|
(delete-paths store (list system))
|
|
|
|
|
|
#f))))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2016-08-28 23:48:14 +02:00
|
|
|
|
;; This symlink is currently unused, but better have it point to the
|
|
|
|
|
|
;; right place. See
|
|
|
|
|
|
;; <https://lists.gnu.org/archive/html/guix-devel/2016-08/msg01641.html>.
|
|
|
|
|
|
(test-equal "/var/guix/gcroots/profiles is a valid symlink"
|
|
|
|
|
|
"/var/guix/profiles"
|
|
|
|
|
|
(marionette-eval '(readlink "/var/guix/gcroots/profiles")
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2020-04-07 12:13:04 +02:00
|
|
|
|
(test-equal "guix-daemon set-http-proxy action"
|
2025-05-06 21:37:44 +09:00
|
|
|
|
'(#t) ;one value, #t
|
2020-04-07 12:13:04 +02:00
|
|
|
|
(marionette-eval '(with-shepherd-action 'guix-daemon
|
|
|
|
|
|
('set-http-proxy "http://localhost:8118")
|
|
|
|
|
|
result
|
|
|
|
|
|
result)
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "guix-daemon set-http-proxy action, clear"
|
2025-05-06 21:37:44 +09:00
|
|
|
|
'(#t) ;one value, #t
|
2020-04-07 12:13:04 +02:00
|
|
|
|
(marionette-eval '(with-shepherd-action 'guix-daemon
|
|
|
|
|
|
('set-http-proxy)
|
|
|
|
|
|
result
|
|
|
|
|
|
result)
|
|
|
|
|
|
marionette))
|
2016-08-28 23:48:14 +02:00
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(test-assert "screendump"
|
|
|
|
|
|
(begin
|
2021-09-27 20:07:16 +00:00
|
|
|
|
(let ((capture
|
|
|
|
|
|
(string-append #$output "/tty1.ppm")))
|
|
|
|
|
|
(marionette-control
|
|
|
|
|
|
(string-append "screendump " capture) marionette)
|
|
|
|
|
|
(file-exists? capture))))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
|
2016-11-23 13:56:42 +01:00
|
|
|
|
(test-assert "screen text"
|
2022-09-19 22:05:04 -04:00
|
|
|
|
(wait-for-screen-text
|
|
|
|
|
|
marionette
|
|
|
|
|
|
(lambda (text)
|
|
|
|
|
|
;; Check whether the welcome message and shell prompt are
|
|
|
|
|
|
;; displayed. Note: OCR confuses "y" and "V" for instance, so
|
|
|
|
|
|
;; we cannot reliably match the whole text.
|
|
|
|
|
|
(and (string-contains text "This is the GNU")
|
|
|
|
|
|
(string-contains text
|
|
|
|
|
|
(string-append
|
|
|
|
|
|
"root@"
|
|
|
|
|
|
#$(operating-system-host-name os)))))
|
|
|
|
|
|
#:ocr #$(file-append ocrad "/bin/ocrad")))
|
2016-11-23 13:56:42 +01:00
|
|
|
|
|
2025-05-14 15:37:01 +09:00
|
|
|
|
(test-equal "block devices have correct default polling value"
|
|
|
|
|
|
"2000"
|
|
|
|
|
|
;; This tests that the 'udevadm trigger' correctly creates the
|
|
|
|
|
|
;; subsystems nodes, by checking that the standard 60-block.rules
|
|
|
|
|
|
;; udev rules was applied.
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (ice-9 textual-ports))
|
|
|
|
|
|
(call-with-input-file
|
|
|
|
|
|
"/sys/module/block/parameters/events_dfl_poll_msecs"
|
|
|
|
|
|
(compose string-trim-right get-string-all)))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2025-06-29 15:52:47 +02:00
|
|
|
|
#$(and extra-tests
|
|
|
|
|
|
(extra-tests #~marionette))
|
|
|
|
|
|
|
tests: Adjust to SRFI-64 as found in Guile 3.0.7.
In Guile 3.0.7, 'test-runner-current' is set to #f upon 'test-end'.
Consequently, the previous strategy, where we'd call
'test-runner-current' after 'test-end', no longer works. Instead, set
the test runner in each test right before 'test-begin'.
* gnu/build/marionette.scm (system-test-runner): New procedure.
* gnu/tests/audio.scm (run-mpd-test): Replace (exit (= ...)) idiom
by (test-runner-current (system-test-runner)).
* gnu/tests/base.scm (run-basic-test)
(run-cleanup-test, run-mcron-test, run-nss-mdns-test): Likewise.
* gnu/tests/ci.scm (run-laminar-test): Likewise.
* gnu/tests/cups.scm (run-cups-test): Likewise.
* gnu/tests/databases.scm (run-memcached-test)
(run-postgresql-test, run-mysql-test): Likewise.
* gnu/tests/desktop.scm (run-elogind-test): Likewise.
* gnu/tests/dict.scm (run-dicod-test): Likewise.
* gnu/tests/docker.scm (run-docker-test): Likewise.
(run-docker-system-test): Likewise.
* gnu/tests/file-sharing.scm (run-transmission-daemon-test): Likewise.
* gnu/tests/ganeti.scm (run-ganeti-test): Likewise.
* gnu/tests/guix.scm (run-guix-build-coordinator-test): Likewise.
(run-guix-data-service-test): Likewise.
* gnu/tests/ldap.scm (run-ldap-test): Likewise.
* gnu/tests/linux-modules.scm (run-loadable-kernel-modules-test-base): Likewise.
* gnu/tests/mail.scm (run-opensmtpd-test)
(run-exim-test, run-dovecot-test, run-getmail-test): Likewise.
* gnu/tests/messaging.scm (run-xmpp-test)
(run-bitlbee-test, run-quassel-test): Likewise.
* gnu/tests/monitoring.scm (run-prometheus-node-exporter-server-test)
(run-zabbix-server-test): Likewise.
* gnu/tests/networking.scm (run-inetd-test, run-openvswitch-test)
(run-dhcpd-test, run-tor-test, run-iptables-test, run-ipfs-test): Likewise.
* gnu/tests/nfs.scm (run-nfs-test)
(run-nfs-server-test, run-nfs-root-fs-test): Likewise.
* gnu/tests/package-management.scm (run-nix-test): Likewise.
* gnu/tests/reconfigure.scm (run-switch-to-system-test)
(run-upgrade-services-test, run-install-bootloader-test): Likewise.
* gnu/tests/rsync.scm (run-rsync-test): Likewise.
* gnu/tests/security-token.scm (run-pcscd-test): Likewise.
* gnu/tests/singularity.scm (run-singularity-test): Likewise.
* gnu/tests/ssh.scm (run-ssh-test): Likewise.
* gnu/tests/telephony.scm (run-jami-test): Likewise.
* gnu/tests/version-control.scm (run-cgit-test): Likewise.
(run-git-http-test, run-gitolite-test, run-gitile-test): Likewise.
* gnu/tests/virtualization.scm (run-libvirt-test, run-childhurd-test): Likewise.
* gnu/tests/web.scm (run-webserver-test, run-php-fpm-test)
(run-hpcguix-web-server-test, run-tailon-test, run-patchwork-test): Likewise.
2021-09-25 18:36:04 +02:00
|
|
|
|
(test-end))))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
|
|
|
|
|
|
(gexp->derivation name test))
|
2016-06-19 23:53:24 +02:00
|
|
|
|
|
2022-02-07 23:14:04 +01:00
|
|
|
|
(define* (test-basic-os #:optional (kernel linux-libre))
|
2016-06-20 22:34:13 +02:00
|
|
|
|
(system-test
|
2022-02-07 23:14:04 +01:00
|
|
|
|
(name (if (eq? kernel linux-libre)
|
|
|
|
|
|
"basic"
|
|
|
|
|
|
(string-append (package-name kernel) "-"
|
|
|
|
|
|
(version-major+minor (package-version kernel)))))
|
2016-06-20 22:34:13 +02:00
|
|
|
|
(description
|
2016-06-23 00:49:04 +02:00
|
|
|
|
"Instrument %SIMPLE-OS, run it in a VM, and run a series of basic
|
2022-02-07 23:14:04 +01:00
|
|
|
|
functionality tests, using the given KERNEL.")
|
2016-06-20 22:34:13 +02:00
|
|
|
|
(value
|
2017-07-18 10:41:51 +02:00
|
|
|
|
(let* ((os (marionette-operating-system
|
2022-02-07 23:14:04 +01:00
|
|
|
|
(operating-system
|
|
|
|
|
|
(inherit %simple-os)
|
2025-05-05 10:30:58 +09:00
|
|
|
|
(kernel kernel)
|
2025-05-06 16:16:09 +09:00
|
|
|
|
(services (cons* (service
|
|
|
|
|
|
etc-profile-d-service-type
|
|
|
|
|
|
(list (plain-file
|
|
|
|
|
|
"test_profile_d.sh"
|
|
|
|
|
|
"export PROFILE_D_OK=yes\n")
|
|
|
|
|
|
(plain-file
|
|
|
|
|
|
"invalid-name"
|
|
|
|
|
|
"not a POSIX script -- ignore me")))
|
2025-05-08 11:03:35 +09:00
|
|
|
|
(simple-service
|
|
|
|
|
|
'extra-bashrc-d-files
|
2025-05-06 16:16:09 +09:00
|
|
|
|
etc-bashrc-d-service-type
|
2025-05-08 11:03:35 +09:00
|
|
|
|
(list (plain-file
|
|
|
|
|
|
"test_bashrc_d.sh"
|
|
|
|
|
|
"export BASHRC_D_OK=yes\n")
|
|
|
|
|
|
(plain-file
|
|
|
|
|
|
"invalid-name"
|
|
|
|
|
|
"not a Bash script -- ignore me")))
|
2025-05-06 16:16:09 +09:00
|
|
|
|
%base-services)))
|
2017-07-18 10:41:51 +02:00
|
|
|
|
#:imported-modules '((gnu services herd)
|
|
|
|
|
|
(guix combinators))))
|
|
|
|
|
|
(vm (virtual-machine os)))
|
2016-06-20 22:34:13 +02:00
|
|
|
|
;; XXX: Add call to 'virtualized-operating-system' to get the exact same
|
|
|
|
|
|
;; set of services as the OS produced by
|
|
|
|
|
|
;; 'system-qemu-image/shared-store-script'.
|
|
|
|
|
|
(run-basic-test (virtualized-operating-system os '())
|
2022-02-07 23:14:04 +01:00
|
|
|
|
#~(list #$vm)
|
2025-06-29 15:54:05 +02:00
|
|
|
|
name
|
|
|
|
|
|
;; Add extra tests for the etc-profile-d-service-type
|
|
|
|
|
|
;; and etc-bashrc-d-service-type services defined above.
|
|
|
|
|
|
;; Those tests cannot directly be part of the
|
|
|
|
|
|
;; run-basic-test procedure that is used in many other
|
|
|
|
|
|
;; locations.
|
|
|
|
|
|
#:extra-tests
|
|
|
|
|
|
(lambda (marionette)
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(test-assert "/etc/profile.d is sourced"
|
|
|
|
|
|
(zero?
|
|
|
|
|
|
(marionette-eval '(system "
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
|
set -e -x
|
|
|
|
|
|
test -f /etc/profile.d/test_profile_d.sh
|
|
|
|
|
|
test \"$PROFILE_D_OK\" = yes")
|
|
|
|
|
|
#$marionette)))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "/etc/bashrc.d is sourced"
|
|
|
|
|
|
(zero?
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(system* "bash"
|
|
|
|
|
|
"-i" ;run interactively
|
|
|
|
|
|
#$(plain-file "test_bashrc_d.sh"
|
|
|
|
|
|
"\
|
|
|
|
|
|
. /etc/bashrc
|
|
|
|
|
|
set -e -x
|
|
|
|
|
|
test -f /etc/bashrc.d/bash_completion.sh
|
|
|
|
|
|
test -f /etc/bashrc.d/aliases.sh
|
|
|
|
|
|
test -f /etc/bashrc.d/test_bashrc_d.sh
|
|
|
|
|
|
test \"$BASHRC_D_OK\" = yes"))
|
|
|
|
|
|
#$marionette))))))))))
|
2022-02-07 23:14:04 +01:00
|
|
|
|
|
|
|
|
|
|
(define %test-basic-os
|
|
|
|
|
|
(test-basic-os))
|
|
|
|
|
|
|
|
|
|
|
|
;; Ensure the LTS kernels are up to snuff, too.
|
gnu: Add linux-libre-6.12.
* gnu/packages/linux.scm (linux-libre-6.12-version,
linux-libre-6.12-gnu-revision, deblob-scripts-6.12,
linux-libre-6.12-pristine-source, linux-libre-6.12-source,
linux-libre-headers-6.12, linux-libre-6.12): New variables.
(linux-libre-headers-latest): Use linux-libre-headers-6.12.
(linux-libre-lts-version, linux-libre-lts-gnu-revision,
linux-libre-lts-pristine-source, linux-libre-lts-source, linux-libre-lts): Use
linux-libre 6.12.
* gnu/tests/base.scm (%test-linux-libre-6.12): New test.
* gnu/packages/aux-files/linux-libre/6.12-arm.conf,
gnu/packages/aux-files/linux-libre/6.12-arm64.conf,
gnu/packages/aux-files/linux-libre/6.12-i686.conf,
gnu/packages/aux-files/linux-libre/6.12-x86_64.conf,
gnu/packages/aux-files/linux-libre/6.12-riscv.conf: New files.
* Makefile.am (AUX_FILES): Add them.
Change-Id: I430d9dd29cda4bd4b66ad6eddc004935f93bb111
2025-01-01 18:07:45 -05:00
|
|
|
|
(define %test-linux-libre-6.12
|
|
|
|
|
|
(test-basic-os linux-libre-6.12))
|
|
|
|
|
|
|
2025-01-03 14:38:04 -05:00
|
|
|
|
(define %test-linux-libre-6.6
|
|
|
|
|
|
(test-basic-os linux-libre-6.6))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-linux-libre-6.1
|
|
|
|
|
|
(test-basic-os linux-libre-6.1))
|
|
|
|
|
|
|
2022-02-07 23:14:04 +01:00
|
|
|
|
(define %test-linux-libre-5.15
|
|
|
|
|
|
(test-basic-os linux-libre-5.15))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-linux-libre-5.10
|
|
|
|
|
|
(test-basic-os linux-libre-5.10))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-linux-libre-5.4
|
|
|
|
|
|
(test-basic-os linux-libre-5.4))
|
|
|
|
|
|
|
2017-08-28 09:54:03 +02:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; Halt.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
(define (run-halt-test vm)
|
|
|
|
|
|
;; As reported in <http://bugs.gnu.org/26931>, running tmux would previously
|
|
|
|
|
|
;; lead the 'stop' method of 'user-processes' to an infinite loop, with the
|
|
|
|
|
|
;; tmux server process as a zombie that remains in the list of processes.
|
|
|
|
|
|
;; This test reproduces this scenario.
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (gnu build marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette '(#$vm)))
|
|
|
|
|
|
|
|
|
|
|
|
(define ocrad
|
|
|
|
|
|
#$(file-append ocrad "/bin/ocrad"))
|
|
|
|
|
|
|
|
|
|
|
|
;; Wait for tty1 and log in.
|
|
|
|
|
|
(marionette-eval '(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
|
|
|
|
|
(start-service 'term-tty1))
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
(marionette-type "root\n" marionette)
|
|
|
|
|
|
|
|
|
|
|
|
;; Start tmux and wait for it to be ready.
|
|
|
|
|
|
(marionette-type "tmux new-session 'echo 1 > /ready; bash'\n"
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
(wait-for-file "/ready" marionette)
|
|
|
|
|
|
|
|
|
|
|
|
;; Make sure to stop the test after a while.
|
|
|
|
|
|
(sigaction SIGALRM (lambda _
|
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
|
"FAIL: Time is up, but VM still running.\n")
|
|
|
|
|
|
(primitive-exit 1)))
|
|
|
|
|
|
(alarm 10)
|
|
|
|
|
|
|
|
|
|
|
|
;; Get debugging info.
|
|
|
|
|
|
(marionette-eval '(current-output-port
|
|
|
|
|
|
(open-file "/dev/console" "w0"))
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
(marionette-eval '(system* #$(file-append procps "/bin/ps")
|
|
|
|
|
|
"-eo" "pid,ppid,stat,comm")
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
|
|
|
|
|
|
;; See if 'halt' actually works.
|
|
|
|
|
|
(marionette-eval '(system* "/run/current-system/profile/sbin/halt")
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
|
|
|
|
|
|
;; If we reach this line, that means the VM was properly stopped in
|
|
|
|
|
|
;; a timely fashion.
|
|
|
|
|
|
(alarm 0)
|
|
|
|
|
|
(call-with-output-file #$output
|
|
|
|
|
|
(lambda (port)
|
|
|
|
|
|
(display "success!" port))))))
|
|
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "halt" test))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-halt
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "halt")
|
|
|
|
|
|
(description
|
|
|
|
|
|
"Use the 'halt' command and make sure it succeeds and does not get stuck
|
|
|
|
|
|
in a loop. See <http://bugs.gnu.org/26931>.")
|
|
|
|
|
|
(value
|
|
|
|
|
|
(let ((os (marionette-operating-system
|
|
|
|
|
|
(operating-system
|
|
|
|
|
|
(inherit %simple-os)
|
|
|
|
|
|
(packages (cons tmux %base-packages)))
|
|
|
|
|
|
#:imported-modules '((gnu services herd)
|
|
|
|
|
|
(guix combinators)))))
|
|
|
|
|
|
(run-halt-test (virtual-machine os))))))
|
|
|
|
|
|
|
2022-07-01 09:38:09 +02:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; Root cleanly unmounted.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
(define (run-root-unmount-test os)
|
|
|
|
|
|
(define test-image
|
|
|
|
|
|
(image (operating-system os)
|
|
|
|
|
|
(format 'compressed-qcow2)
|
|
|
|
|
|
(volatile-root? #f)
|
|
|
|
|
|
(shared-store? #f)
|
|
|
|
|
|
(partition-table-type 'mbr)
|
|
|
|
|
|
(partitions
|
|
|
|
|
|
(list (partition
|
|
|
|
|
|
(size 'guess)
|
|
|
|
|
|
(offset (* 512 2048)) ;leave room for GRUB
|
|
|
|
|
|
(flags '(boot))
|
|
|
|
|
|
(label "root-under-test")))))) ;max 16 characters!
|
|
|
|
|
|
|
|
|
|
|
|
(define observer-os
|
|
|
|
|
|
(marionette-operating-system
|
|
|
|
|
|
%simple-os
|
|
|
|
|
|
#:imported-modules
|
|
|
|
|
|
(source-module-closure '((guix build syscalls)
|
|
|
|
|
|
(gnu build file-systems)))))
|
|
|
|
|
|
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules (source-module-closure
|
|
|
|
|
|
'((gnu build marionette)
|
|
|
|
|
|
(guix build utils)))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (gnu build marionette)
|
|
|
|
|
|
(guix build utils)
|
|
|
|
|
|
(srfi srfi-64)
|
|
|
|
|
|
(ice-9 ftw))
|
|
|
|
|
|
|
|
|
|
|
|
(define image
|
|
|
|
|
|
"/tmp/writable-image.qcow2")
|
|
|
|
|
|
|
|
|
|
|
|
(define (test-system-marionette)
|
|
|
|
|
|
;; Return a marionette on a system where we'll run 'halt'.
|
|
|
|
|
|
(invoke #$(file-append qemu-minimal "/bin/qemu-img")
|
|
|
|
|
|
"create" "-f" "qcow2" image "3G"
|
|
|
|
|
|
"-b" #$(system-image test-image) "-F" "qcow2")
|
|
|
|
|
|
(make-marionette
|
|
|
|
|
|
`(,(string-append #$qemu-minimal "/bin/" (qemu-command))
|
|
|
|
|
|
,@(if (file-exists? "/dev/kvm")
|
|
|
|
|
|
'("-enable-kvm")
|
|
|
|
|
|
'())
|
|
|
|
|
|
"-no-reboot"
|
|
|
|
|
|
"-m" "1024" ;memory size, in MiB
|
|
|
|
|
|
"-drive" ,(format #f "file=~a,if=virtio" image))))
|
|
|
|
|
|
|
|
|
|
|
|
(define witness-size
|
|
|
|
|
|
;; Size of the /witness file.
|
|
|
|
|
|
(* 20 (expt 2 20)))
|
|
|
|
|
|
|
|
|
|
|
|
(test-runner-current (system-test-runner #$output))
|
|
|
|
|
|
(test-begin "root-unmount")
|
|
|
|
|
|
|
|
|
|
|
|
(let ((marionette (test-system-marionette)))
|
|
|
|
|
|
(test-assert "file created"
|
|
|
|
|
|
(marionette-eval `(begin
|
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
|
(call-with-output-file "/witness"
|
|
|
|
|
|
(lambda (port)
|
|
|
|
|
|
(call-with-input-file "/dev/random"
|
|
|
|
|
|
(lambda (input)
|
|
|
|
|
|
(dump-port input port
|
|
|
|
|
|
,witness-size))))))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2025-12-14 00:29:44 +01:00
|
|
|
|
;; Cause PID 1 to create a mapping to nscd's database files.
|
|
|
|
|
|
;; Those mappings used to prevent 'root-file-system' to remount
|
|
|
|
|
|
;; read-only on shutdown. See
|
|
|
|
|
|
;; <https://codeberg.org/guix/guix/issues/4269>.
|
|
|
|
|
|
(test-equal "open libc NSS database"
|
|
|
|
|
|
"root"
|
|
|
|
|
|
(marionette-eval '(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
|
|
|
|
|
(start-service 'nscd) ;wait for nscd
|
|
|
|
|
|
(eval-there '(passwd:name (getgr "root"))))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2022-07-01 09:38:09 +02:00
|
|
|
|
;; Halt the system.
|
|
|
|
|
|
(marionette-eval '(system* "/run/current-system/profile/sbin/halt")
|
2022-11-17 10:26:01 +01:00
|
|
|
|
marionette)
|
|
|
|
|
|
|
|
|
|
|
|
(display "waiting for marionette to complete...")
|
|
|
|
|
|
(force-output)
|
|
|
|
|
|
(false-if-exception (waitpid (marionette-pid marionette)))
|
|
|
|
|
|
(display " done\n")
|
|
|
|
|
|
(force-output))
|
2022-07-01 09:38:09 +02:00
|
|
|
|
|
|
|
|
|
|
;; Remove the sockets used by the marionette above to avoid
|
|
|
|
|
|
;; EADDRINUSE.
|
|
|
|
|
|
(for-each delete-file
|
|
|
|
|
|
(find-files "/tmp" (lambda (file stat)
|
|
|
|
|
|
(eq? (stat:type stat) 'socket))))
|
|
|
|
|
|
|
|
|
|
|
|
;; Now boot another system and check whether the root file system of
|
|
|
|
|
|
;; the first one was cleanly unmounted.
|
|
|
|
|
|
|
|
|
|
|
|
(let ((observer
|
|
|
|
|
|
(make-marionette (list #$(virtual-machine observer-os)
|
|
|
|
|
|
"-drive"
|
|
|
|
|
|
(format #f "file=~a,if=virtio" image)))))
|
|
|
|
|
|
(test-assert "partitions"
|
|
|
|
|
|
(marionette-eval '(begin
|
|
|
|
|
|
(use-modules (gnu build file-systems))
|
|
|
|
|
|
(disk-partitions))
|
|
|
|
|
|
observer))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "partition found"
|
|
|
|
|
|
(marionette-eval '(find-partition-by-label "root-under-test")
|
|
|
|
|
|
observer))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "root file system is clean"
|
|
|
|
|
|
(marionette-eval '(cleanly-unmounted-ext2?
|
|
|
|
|
|
(find-partition-by-label "root-under-test"))
|
|
|
|
|
|
observer))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "root file system contains /witness"
|
|
|
|
|
|
witness-size
|
|
|
|
|
|
(let ((files (marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (guix build syscalls)
|
|
|
|
|
|
(ice-9 ftw))
|
|
|
|
|
|
(mount (find-partition-by-label "root-under-test")
|
|
|
|
|
|
"/mnt" "ext4" MS_RDONLY)
|
|
|
|
|
|
(scandir "/mnt"))
|
|
|
|
|
|
observer)))
|
|
|
|
|
|
(if (member "witness" files)
|
|
|
|
|
|
(marionette-eval '(stat:size (stat "/mnt/witness"))
|
|
|
|
|
|
observer)
|
|
|
|
|
|
files))))
|
|
|
|
|
|
|
|
|
|
|
|
(test-end))))
|
|
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "root-unmount" test))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-root-unmount
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "root-unmount")
|
|
|
|
|
|
(description
|
|
|
|
|
|
"Make sure the root file system is cleanly unmounted when the system is
|
|
|
|
|
|
halted.")
|
|
|
|
|
|
(value
|
2025-12-14 00:29:44 +01:00
|
|
|
|
(let ((os (marionette-operating-system
|
|
|
|
|
|
%simple-os
|
|
|
|
|
|
#:imported-modules '((gnu services herd)
|
|
|
|
|
|
(guix combinators)))))
|
2022-07-01 09:38:09 +02:00
|
|
|
|
(run-root-unmount-test os)))))
|
|
|
|
|
|
|
2018-06-20 10:00:44 +02:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; Cleanup of /tmp, /var/run, etc.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
(define %cleanup-os
|
|
|
|
|
|
(simple-operating-system
|
|
|
|
|
|
(simple-service 'dirty-things
|
|
|
|
|
|
boot-service-type
|
2018-06-20 11:01:07 +02:00
|
|
|
|
(let ((script (plain-file
|
|
|
|
|
|
"create-utf8-file.sh"
|
|
|
|
|
|
(string-append
|
|
|
|
|
|
"echo $0: dirtying /tmp...\n"
|
|
|
|
|
|
"set -e; set -x\n"
|
|
|
|
|
|
"touch /witness\n"
|
|
|
|
|
|
"exec touch /tmp/λαμβδα"))))
|
|
|
|
|
|
(with-imported-modules '((guix build utils))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(setenv "PATH"
|
|
|
|
|
|
#$(file-append coreutils "/bin"))
|
|
|
|
|
|
(invoke #$(file-append bash "/bin/sh")
|
|
|
|
|
|
#$script)))))))
|
2018-06-20 10:00:44 +02:00
|
|
|
|
|
|
|
|
|
|
(define (run-cleanup-test name)
|
|
|
|
|
|
(define os
|
|
|
|
|
|
(marionette-operating-system %cleanup-os
|
|
|
|
|
|
#:imported-modules '((gnu services herd)
|
|
|
|
|
|
(guix combinators))))
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (gnu build marionette)
|
|
|
|
|
|
(srfi srfi-64)
|
|
|
|
|
|
(ice-9 match))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette (list #$(virtual-machine os))))
|
|
|
|
|
|
|
tests: Reduce boilerplate for users of 'system-test-runner'.
* gnu/tests/audio.scm, gnu/tests/base.scm, gnu/tests/ci.scm,
gnu/tests/cups.scm, gnu/tests/databases.scm, gnu/tests/desktop.scm,
gnu/tests/dict.scm, gnu/tests/docker.scm, gnu/tests/file-sharing.scm,
gnu/tests/ganeti.scm, gnu/tests/guix.scm, gnu/tests/ldap.scm,
gnu/tests/linux-modules.scm,
gnu/tests/mail.scm, gnu/tests/messaging.scm, gnu/tests/monitoring.scm,
gnu/tests/networking.scm, gnu/tests/nfs.scm,
gnu/tests/package-management.scm, gnu/tests/reconfigure.scm,
gnu/tests/rsync.scm, gnu/tests/security-token.scm,
gnu/tests/singularity.scm, gnu/tests/ssh.scm, gnu/tests/telephony.scm,
gnu/tests/version-control.scm, gnu/tests/virtualization.scm,
gnu/tests/web.scm: Remove (mkdir #$output) (chdir #$output) and
pass #$output as argument to 'system-test-runner'.
2021-09-26 23:20:56 +02:00
|
|
|
|
(test-runner-current (system-test-runner #$output))
|
2018-06-20 10:00:44 +02:00
|
|
|
|
(test-begin "cleanup")
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "dirty service worked"
|
|
|
|
|
|
(marionette-eval '(file-exists? "/witness") marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "/tmp cleaned up"
|
|
|
|
|
|
'("." "..")
|
|
|
|
|
|
(marionette-eval '(begin
|
|
|
|
|
|
(use-modules (ice-9 ftw))
|
|
|
|
|
|
(scandir "/tmp"))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
tests: Adjust to SRFI-64 as found in Guile 3.0.7.
In Guile 3.0.7, 'test-runner-current' is set to #f upon 'test-end'.
Consequently, the previous strategy, where we'd call
'test-runner-current' after 'test-end', no longer works. Instead, set
the test runner in each test right before 'test-begin'.
* gnu/build/marionette.scm (system-test-runner): New procedure.
* gnu/tests/audio.scm (run-mpd-test): Replace (exit (= ...)) idiom
by (test-runner-current (system-test-runner)).
* gnu/tests/base.scm (run-basic-test)
(run-cleanup-test, run-mcron-test, run-nss-mdns-test): Likewise.
* gnu/tests/ci.scm (run-laminar-test): Likewise.
* gnu/tests/cups.scm (run-cups-test): Likewise.
* gnu/tests/databases.scm (run-memcached-test)
(run-postgresql-test, run-mysql-test): Likewise.
* gnu/tests/desktop.scm (run-elogind-test): Likewise.
* gnu/tests/dict.scm (run-dicod-test): Likewise.
* gnu/tests/docker.scm (run-docker-test): Likewise.
(run-docker-system-test): Likewise.
* gnu/tests/file-sharing.scm (run-transmission-daemon-test): Likewise.
* gnu/tests/ganeti.scm (run-ganeti-test): Likewise.
* gnu/tests/guix.scm (run-guix-build-coordinator-test): Likewise.
(run-guix-data-service-test): Likewise.
* gnu/tests/ldap.scm (run-ldap-test): Likewise.
* gnu/tests/linux-modules.scm (run-loadable-kernel-modules-test-base): Likewise.
* gnu/tests/mail.scm (run-opensmtpd-test)
(run-exim-test, run-dovecot-test, run-getmail-test): Likewise.
* gnu/tests/messaging.scm (run-xmpp-test)
(run-bitlbee-test, run-quassel-test): Likewise.
* gnu/tests/monitoring.scm (run-prometheus-node-exporter-server-test)
(run-zabbix-server-test): Likewise.
* gnu/tests/networking.scm (run-inetd-test, run-openvswitch-test)
(run-dhcpd-test, run-tor-test, run-iptables-test, run-ipfs-test): Likewise.
* gnu/tests/nfs.scm (run-nfs-test)
(run-nfs-server-test, run-nfs-root-fs-test): Likewise.
* gnu/tests/package-management.scm (run-nix-test): Likewise.
* gnu/tests/reconfigure.scm (run-switch-to-system-test)
(run-upgrade-services-test, run-install-bootloader-test): Likewise.
* gnu/tests/rsync.scm (run-rsync-test): Likewise.
* gnu/tests/security-token.scm (run-pcscd-test): Likewise.
* gnu/tests/singularity.scm (run-singularity-test): Likewise.
* gnu/tests/ssh.scm (run-ssh-test): Likewise.
* gnu/tests/telephony.scm (run-jami-test): Likewise.
* gnu/tests/version-control.scm (run-cgit-test): Likewise.
(run-git-http-test, run-gitolite-test, run-gitile-test): Likewise.
* gnu/tests/virtualization.scm (run-libvirt-test, run-childhurd-test): Likewise.
* gnu/tests/web.scm (run-webserver-test, run-php-fpm-test)
(run-hpcguix-web-server-test, run-tailon-test, run-patchwork-test): Likewise.
2021-09-25 18:36:04 +02:00
|
|
|
|
(test-end))))
|
2018-06-20 10:00:44 +02:00
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "cleanup" test))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-cleanup
|
|
|
|
|
|
;; See <https://bugs.gnu.org/26353>.
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "cleanup")
|
|
|
|
|
|
(description "Make sure the 'cleanup' service can remove files with
|
|
|
|
|
|
non-ASCII names from /tmp.")
|
|
|
|
|
|
(value (run-cleanup-test name))))
|
|
|
|
|
|
|
2024-10-18 13:21:22 +00:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; Activation: Order of activation scripts
|
|
|
|
|
|
;;; Create accounts before running scripts using them
|
|
|
|
|
|
|
|
|
|
|
|
(define %activation-os
|
|
|
|
|
|
;; System with a new user/group, a setuid/setgid binary and an activation script
|
|
|
|
|
|
(let* ((%hello-accounts
|
2025-05-05 10:58:37 +09:00
|
|
|
|
(list (user-group (name "hello") (system? #t))
|
|
|
|
|
|
(user-account
|
|
|
|
|
|
(name "hello")
|
|
|
|
|
|
(group "hello")
|
|
|
|
|
|
(system? #t)
|
|
|
|
|
|
(comment "")
|
|
|
|
|
|
(home-directory "/var/empty"))))
|
2024-10-18 13:21:22 +00:00
|
|
|
|
(%hello-privileged
|
|
|
|
|
|
(list
|
|
|
|
|
|
(privileged-program
|
|
|
|
|
|
(program (file-append hello "/bin/hello"))
|
|
|
|
|
|
(setuid? #t)
|
|
|
|
|
|
(setgid? #t)
|
|
|
|
|
|
(user "hello")
|
|
|
|
|
|
(group "hello"))))
|
|
|
|
|
|
(%hello-activation
|
|
|
|
|
|
(with-imported-modules (source-module-closure
|
|
|
|
|
|
'((gnu build activation)))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (gnu build activation))
|
|
|
|
|
|
|
|
|
|
|
|
(let ((user (getpwnam "hello")))
|
|
|
|
|
|
(mkdir-p/perms "/run/hello" user #o755)))))
|
|
|
|
|
|
|
|
|
|
|
|
(hello-service-type
|
|
|
|
|
|
(service-type
|
|
|
|
|
|
(name 'hello)
|
|
|
|
|
|
(extensions
|
|
|
|
|
|
(list (service-extension account-service-type
|
|
|
|
|
|
(const %hello-accounts))
|
|
|
|
|
|
(service-extension activation-service-type
|
|
|
|
|
|
(const %hello-activation))
|
|
|
|
|
|
(service-extension privileged-program-service-type
|
|
|
|
|
|
(const %hello-privileged))))
|
|
|
|
|
|
(default-value #f)
|
|
|
|
|
|
(description ""))))
|
|
|
|
|
|
|
|
|
|
|
|
(operating-system
|
|
|
|
|
|
(inherit %simple-os)
|
|
|
|
|
|
(services
|
|
|
|
|
|
(cons* (service hello-service-type)
|
|
|
|
|
|
(operating-system-user-services
|
|
|
|
|
|
%simple-os))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define (run-activation-test name)
|
|
|
|
|
|
(define os
|
|
|
|
|
|
(marionette-operating-system
|
|
|
|
|
|
%activation-os))
|
|
|
|
|
|
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (gnu build marionette)
|
|
|
|
|
|
(srfi srfi-64))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette (list #$(virtual-machine os))))
|
|
|
|
|
|
|
|
|
|
|
|
(test-runner-current (system-test-runner #$output))
|
|
|
|
|
|
(test-begin "activation")
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "directory exists"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(file-exists? "/run/hello")
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "directory correct permissions and owner"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(let ((dir (stat "/run/hello"))
|
|
|
|
|
|
(user (getpwnam "hello")))
|
|
|
|
|
|
(and (eqv? (stat:uid dir)
|
|
|
|
|
|
(passwd:uid user))
|
|
|
|
|
|
(eqv? (stat:gid dir)
|
|
|
|
|
|
(passwd:gid user))
|
|
|
|
|
|
(= (stat:perms dir)
|
|
|
|
|
|
#o0755)))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "privileged-program exists"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(file-exists? "/run/privileged/bin/hello")
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "privileged-program correct permissions and owner"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(let ((binary (stat "/run/privileged/bin/hello"))
|
|
|
|
|
|
(user (getpwnam "hello"))
|
|
|
|
|
|
(group (getgrnam "hello")))
|
|
|
|
|
|
(and (eqv? (stat:uid binary)
|
|
|
|
|
|
(passwd:uid user))
|
|
|
|
|
|
(eqv? (stat:gid binary)
|
|
|
|
|
|
(group:gid group))
|
|
|
|
|
|
(= (stat:perms binary)
|
|
|
|
|
|
(+ #o0555 ;; base
|
|
|
|
|
|
#o4000 ;; setuid
|
|
|
|
|
|
#o2000)))) ;; setgid
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-end))))
|
|
|
|
|
|
|
|
|
|
|
|
(gexp->derivation name test))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-activation
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "activation")
|
|
|
|
|
|
(description "Test that activation scripts are run in the correct order")
|
|
|
|
|
|
(value (run-activation-test name))))
|
2025-02-27 11:51:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; Build daemon.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
2025-03-25 16:57:14 +01:00
|
|
|
|
(define %daemon-os
|
|
|
|
|
|
(operating-system-with-console-syslog
|
|
|
|
|
|
(simple-operating-system)))
|
|
|
|
|
|
|
2025-02-27 11:51:49 +01:00
|
|
|
|
(define (manifest-entry-without-grafts entry)
|
|
|
|
|
|
"Return ENTRY with grafts disabled on its contents."
|
|
|
|
|
|
(manifest-entry
|
|
|
|
|
|
(inherit entry)
|
|
|
|
|
|
(item (with-parameters ((%graft? #f))
|
|
|
|
|
|
(manifest-entry-item entry)))))
|
|
|
|
|
|
|
2025-02-27 23:13:26 +01:00
|
|
|
|
(define %hello-dependencies-manifest
|
2025-02-27 11:51:49 +01:00
|
|
|
|
;; Build dependencies of 'hello' needed to test 'guix build hello'.
|
|
|
|
|
|
(concatenate-manifests
|
|
|
|
|
|
(list (map-manifest-entries
|
|
|
|
|
|
manifest-entry-without-grafts
|
|
|
|
|
|
(package->development-manifest hello))
|
|
|
|
|
|
|
|
|
|
|
|
;; Add the source of 'hello'.
|
|
|
|
|
|
(manifest
|
|
|
|
|
|
(list (manifest-entry
|
|
|
|
|
|
(name "hello-source")
|
|
|
|
|
|
(version (package-version hello))
|
|
|
|
|
|
(item (let ((file (origin-actual-file-name
|
|
|
|
|
|
(package-source hello))))
|
|
|
|
|
|
(computed-file
|
|
|
|
|
|
"hello-source"
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
;; Put the tarball in a subdirectory since
|
|
|
|
|
|
;; profile union crashes otherwise.
|
|
|
|
|
|
(mkdir #$output)
|
|
|
|
|
|
(mkdir (in-vicinity #$output "src"))
|
|
|
|
|
|
(symlink #$(package-source hello)
|
|
|
|
|
|
(in-vicinity #$output
|
|
|
|
|
|
(string-append "src/"
|
|
|
|
|
|
#$file))))))))))
|
|
|
|
|
|
|
|
|
|
|
|
;; Include 'guile-final', which is needed when building derivations
|
|
|
|
|
|
;; such as that of 'hello' but missing from the development manifest.
|
|
|
|
|
|
;; Add '%bootstrap-guile', used by 'guix install --bootstrap'.
|
|
|
|
|
|
(map-manifest-entries
|
|
|
|
|
|
manifest-entry-without-grafts
|
|
|
|
|
|
(packages->manifest (list (canonical-package guile-3.0)
|
|
|
|
|
|
%bootstrap-guile))))))
|
|
|
|
|
|
|
2025-02-27 23:45:59 +01:00
|
|
|
|
(define (guix-daemon-test-cases marionette)
|
|
|
|
|
|
"Return a gexp with SRFI-64 test cases testing guix-daemon. Those test are
|
|
|
|
|
|
evaluated in MARIONETTE, a gexp denoting a marionette (system under test).
|
|
|
|
|
|
Assume that an unprivileged account for 'user' exists on the system under
|
|
|
|
|
|
test."
|
2025-06-06 16:00:15 +02:00
|
|
|
|
(define chown-snippet
|
|
|
|
|
|
;; XXX: This snippet exists primarily so that #$output is understood in
|
|
|
|
|
|
;; the right context.
|
|
|
|
|
|
'(object->string
|
|
|
|
|
|
`(begin
|
|
|
|
|
|
(use-modules (guix)
|
|
|
|
|
|
(gnu packages bootstrap))
|
|
|
|
|
|
(computed-file "chown-to-supplementary-group"
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (srfi srfi-1))
|
|
|
|
|
|
|
|
|
|
|
|
',(gettimeofday) ;nonce
|
|
|
|
|
|
(let* ((groups (getgroups))
|
|
|
|
|
|
(other (find (lambda (gid)
|
|
|
|
|
|
(not (= gid (getgid))))
|
|
|
|
|
|
(vector->list groups))))
|
|
|
|
|
|
(format #t "attempting to chown \
|
|
|
|
|
|
to supplementary group ~a...~%" other)
|
|
|
|
|
|
(pk 'supplementary-groups (getgroups)
|
|
|
|
|
|
'gid (getgid) 'other other)
|
|
|
|
|
|
(force-output)
|
|
|
|
|
|
(mkdir "test")
|
|
|
|
|
|
(chown "test" (getuid) other)
|
|
|
|
|
|
(mkdir #$output)))
|
|
|
|
|
|
#:guile %bootstrap-guile))))
|
|
|
|
|
|
|
2025-02-27 23:45:59 +01:00
|
|
|
|
#~(begin
|
|
|
|
|
|
(test-equal "guix describe"
|
|
|
|
|
|
0
|
|
|
|
|
|
(marionette-eval '(system* "guix" "describe")
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "hello not already built"
|
|
|
|
|
|
#f
|
|
|
|
|
|
;; Check that the next test will really build 'hello'.
|
|
|
|
|
|
(marionette-eval '(file-exists?
|
|
|
|
|
|
#$(with-parameters ((%graft? #f))
|
|
|
|
|
|
hello))
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "guix build hello"
|
|
|
|
|
|
0
|
|
|
|
|
|
;; Check that guix-daemon is up and running and that the build
|
|
|
|
|
|
;; environment is properly set up (build users, etc.).
|
|
|
|
|
|
(marionette-eval '(system* "guix" "build" "hello" "--no-grafts")
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "hello indeed built"
|
|
|
|
|
|
(marionette-eval '(file-exists?
|
|
|
|
|
|
#$(with-parameters ((%graft? #f))
|
|
|
|
|
|
hello))
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
2025-06-06 16:00:15 +02:00
|
|
|
|
(test-equal "kvm GID mapped"
|
|
|
|
|
|
0
|
|
|
|
|
|
;; The "kvm" group should be among the supplementary groups of the
|
|
|
|
|
|
;; build user. Try to chown a file to that group; this fails with
|
|
|
|
|
|
;; EINVAL when running the unprivileged guix-daemon and the "kvm" GID
|
|
|
|
|
|
;; is not mapped in its user namespace. See
|
|
|
|
|
|
;; <https://bugs.gnu.org/77862>.
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(system* "guix" "build" "--no-grafts" "-e" #$chown-snippet)
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
2025-02-27 23:45:59 +01:00
|
|
|
|
(test-equal "guix install hello"
|
|
|
|
|
|
0
|
|
|
|
|
|
;; Check that ~/.guix-profile & co. are properly created.
|
|
|
|
|
|
(marionette-eval '(let ((pw (getpwuid (getuid))))
|
|
|
|
|
|
(setenv "USER" (passwd:name pw))
|
|
|
|
|
|
(setenv "HOME" (pk 'home (passwd:dir pw)))
|
|
|
|
|
|
(system* "guix" "install" "hello"
|
|
|
|
|
|
"--no-grafts" "--bootstrap"))
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "user profile created"
|
|
|
|
|
|
0
|
|
|
|
|
|
(marionette-eval '(system "ls -lad ~/.guix-profile")
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "hello"
|
|
|
|
|
|
0
|
|
|
|
|
|
(marionette-eval '(system "~/.guix-profile/bin/hello")
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "guix install hello, unprivileged user"
|
|
|
|
|
|
0
|
|
|
|
|
|
;; Check that 'guix' is in $PATH for new users and that
|
|
|
|
|
|
;; ~user/.guix-profile also gets created, assuming that 'user' exists
|
|
|
|
|
|
;; as an unprivileged user account.
|
|
|
|
|
|
(marionette-eval '(system "su - user -c \
|
|
|
|
|
|
'guix install hello --no-grafts --bootstrap'")
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "user hello"
|
|
|
|
|
|
0
|
|
|
|
|
|
(marionette-eval '(system "~user/.guix-profile/bin/hello")
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "unprivileged user profile created"
|
|
|
|
|
|
0
|
|
|
|
|
|
(marionette-eval '(system "ls -lad ~user/.guix-profile")
|
|
|
|
|
|
#$marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "store is read-only"
|
|
|
|
|
|
EROFS
|
|
|
|
|
|
(marionette-eval '(catch 'system-error
|
|
|
|
|
|
(lambda ()
|
|
|
|
|
|
(mkdir (in-vicinity #$(%store-prefix)
|
|
|
|
|
|
"whatever"))
|
|
|
|
|
|
0)
|
|
|
|
|
|
(lambda args
|
|
|
|
|
|
(system-error-errno args)))
|
|
|
|
|
|
#$marionette))))
|
|
|
|
|
|
|
2025-03-25 17:41:57 +01:00
|
|
|
|
(define (run-guix-daemon-test os name)
|
2025-02-27 11:51:49 +01:00
|
|
|
|
(define test-image
|
|
|
|
|
|
(image (operating-system os)
|
|
|
|
|
|
(format 'compressed-qcow2)
|
|
|
|
|
|
(volatile-root? #f)
|
|
|
|
|
|
(shared-store? #f)
|
|
|
|
|
|
(partition-table-type 'mbr)
|
|
|
|
|
|
(partitions
|
|
|
|
|
|
(list (partition
|
|
|
|
|
|
(size (* 4 (expt 2 30)))
|
|
|
|
|
|
(offset (* 512 2048)) ;leave room for GRUB
|
|
|
|
|
|
(flags '(boot))
|
|
|
|
|
|
(label "root"))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules (source-module-closure
|
|
|
|
|
|
'((gnu build marionette)
|
|
|
|
|
|
(guix build utils)))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (gnu build marionette)
|
|
|
|
|
|
(guix build utils)
|
|
|
|
|
|
(srfi srfi-64))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette
|
|
|
|
|
|
(list (string-append #$qemu-minimal "/bin/" (qemu-command))
|
|
|
|
|
|
#$@(common-qemu-options (system-image test-image) '()
|
|
|
|
|
|
#:image-format "qcow2"
|
|
|
|
|
|
#:rw-image? #t)
|
|
|
|
|
|
"-m" "512"
|
|
|
|
|
|
"-nographic" "-serial" "stdio"
|
|
|
|
|
|
"-snapshot")))
|
|
|
|
|
|
|
|
|
|
|
|
(test-runner-current (system-test-runner #$output))
|
|
|
|
|
|
(test-begin "guix-daemon")
|
|
|
|
|
|
|
2025-03-25 16:57:52 +01:00
|
|
|
|
(test-assert "guix-service is running"
|
|
|
|
|
|
;; Wait for 'guix-daemon' to be up.
|
|
|
|
|
|
(marionette-eval '(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
|
|
|
|
|
(start-service 'guix-daemon))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
2025-02-27 23:45:59 +01:00
|
|
|
|
#$(guix-daemon-test-cases #~marionette)
|
2025-02-27 11:51:49 +01:00
|
|
|
|
|
|
|
|
|
|
(test-end))))
|
|
|
|
|
|
|
2025-03-25 17:41:57 +01:00
|
|
|
|
(gexp->derivation name test))
|
2025-02-27 11:51:49 +01:00
|
|
|
|
|
|
|
|
|
|
(define %test-guix-daemon
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "guix-daemon")
|
|
|
|
|
|
(description
|
|
|
|
|
|
"Test 'guix-daemon' behavior on a multi-user system.")
|
|
|
|
|
|
(value
|
|
|
|
|
|
(let ((os (marionette-operating-system
|
|
|
|
|
|
(operating-system
|
|
|
|
|
|
(inherit (operating-system-with-gc-roots
|
2025-03-25 16:57:14 +01:00
|
|
|
|
%daemon-os
|
2025-02-27 11:51:49 +01:00
|
|
|
|
(list (profile
|
|
|
|
|
|
(name "hello-build-dependencies")
|
|
|
|
|
|
(content %hello-dependencies-manifest)))))
|
|
|
|
|
|
(kernel-arguments '("console=ttyS0"))
|
|
|
|
|
|
(users (cons (user-account
|
|
|
|
|
|
(name "user")
|
|
|
|
|
|
(group "users"))
|
|
|
|
|
|
%base-user-accounts)))
|
|
|
|
|
|
#:imported-modules '((gnu services herd)
|
|
|
|
|
|
(guix combinators)))))
|
2025-03-25 17:41:57 +01:00
|
|
|
|
(run-guix-daemon-test os "guix-daemon-test")))))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-guix-daemon-unprivileged
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "guix-daemon-unprivileged")
|
|
|
|
|
|
(description
|
|
|
|
|
|
"Test 'guix-daemon' behavior on a multi-user system, where 'guix-daemon'
|
|
|
|
|
|
runs unprivileged.")
|
|
|
|
|
|
(value
|
|
|
|
|
|
(let ((os (marionette-operating-system
|
|
|
|
|
|
(let ((base (operating-system-with-gc-roots
|
|
|
|
|
|
%daemon-os
|
|
|
|
|
|
(list (profile
|
|
|
|
|
|
(name "hello-build-dependencies")
|
|
|
|
|
|
(content %hello-dependencies-manifest))))))
|
|
|
|
|
|
(operating-system
|
|
|
|
|
|
(inherit base)
|
|
|
|
|
|
(kernel-arguments '("console=ttyS0"))
|
|
|
|
|
|
(users (cons (user-account
|
|
|
|
|
|
(name "user")
|
|
|
|
|
|
(group "users"))
|
|
|
|
|
|
%base-user-accounts))
|
|
|
|
|
|
(services
|
|
|
|
|
|
(modify-services (operating-system-user-services base)
|
|
|
|
|
|
(guix-service-type
|
|
|
|
|
|
config => (guix-configuration
|
|
|
|
|
|
(inherit config)
|
|
|
|
|
|
(privileged? #f)))))))
|
|
|
|
|
|
#:imported-modules '((gnu services herd)
|
|
|
|
|
|
(guix combinators)))))
|
|
|
|
|
|
(run-guix-daemon-test os "guix-daemon-unprivileged-test")))))
|