Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / gnu / tests / base.scm
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
19 (define-module (gnu tests base)
20 #:use-module (gnu tests)
21 #:use-module (gnu system)
22 #:use-module (gnu system shadow)
23 #:use-module (gnu system nss)
24 #:use-module (gnu system vm)
25 #:use-module (gnu services)
26 #:use-module (gnu services base)
27 #:use-module (gnu services dbus)
28 #:use-module (gnu services avahi)
29 #:use-module (gnu services mcron)
30 #:use-module (gnu services shepherd)
31 #:use-module (gnu services networking)
32 #:use-module (gnu packages imagemagick)
33 #:use-module (gnu packages ocr)
34 #:use-module (gnu packages package-management)
35 #:use-module (guix gexp)
36 #:use-module (guix store)
37 #:use-module (guix packages)
38 #:use-module (srfi srfi-1)
39 #:export (run-basic-test
40 %test-basic-os
41 %test-mcron
42 %test-nss-mdns))
43
44 (define %simple-os
45 (simple-operating-system))
46
47 \f
48 (define* (run-basic-test os command #:optional (name "basic")
49 #:key initialization)
50 "Return a derivation called NAME that tests basic features of the OS started
51 using COMMAND, a gexp that evaluates to a list of strings. Compare some
52 properties of running system to what's declared in OS, an <operating-system>.
53
54 When INITIALIZATION is true, it must be a one-argument procedure that is
55 passed a gexp denoting the marionette, and it must return gexp that is
56 inserted before the first test. This is used to introduce an extra
57 initialization step, such as entering a LUKS passphrase."
58 (define special-files
59 (service-value
60 (fold-services (operating-system-services os)
61 #:target-type special-files-service-type)))
62
63 (define test
64 (with-imported-modules '((gnu build marionette)
65 (guix build syscalls))
66 #~(begin
67 (use-modules (gnu build marionette)
68 (guix build syscalls)
69 (srfi srfi-1)
70 (srfi srfi-26)
71 (srfi srfi-64)
72 (ice-9 match))
73
74 (define marionette
75 (make-marionette #$command))
76
77 (mkdir #$output)
78 (chdir #$output)
79
80 (test-begin "basic")
81
82 #$(and initialization
83 (initialization #~marionette))
84
85 (test-assert "uname"
86 (match (marionette-eval '(uname) marionette)
87 (#("Linux" host-name version _ architecture)
88 (and (string=? host-name
89 #$(operating-system-host-name os))
90 (string-prefix? #$(package-version
91 (operating-system-kernel os))
92 version)
93 (string-prefix? architecture %host-type)))))
94
95 (test-assert "shell and user commands"
96 ;; Is everything in $PATH?
97 (zero? (marionette-eval '(system "
98 . /etc/profile
99 set -e -x
100 guix --version
101 ls --version
102 grep --version
103 info --version")
104 marionette)))
105
106 (test-equal "special files"
107 '#$special-files
108 (marionette-eval
109 '(begin
110 (use-modules (ice-9 match))
111
112 (map (match-lambda
113 ((file target)
114 (list file (readlink file))))
115 '#$special-files))
116 marionette))
117
118 (test-assert "accounts"
119 (let ((users (marionette-eval '(begin
120 (use-modules (ice-9 match))
121 (let loop ((result '()))
122 (match (getpw)
123 (#f (reverse result))
124 (x (loop (cons x result))))))
125 marionette)))
126 (lset= string=?
127 (map passwd:name users)
128 (list
129 #$@(map user-account-name
130 (operating-system-user-accounts os))))))
131
132 (test-assert "shepherd services"
133 (let ((services (marionette-eval
134 '(begin
135 (use-modules (gnu services herd))
136
137 (map (compose car live-service-provision)
138 (current-services)))
139 marionette)))
140 (lset= eq?
141 (pk 'services services)
142 '(root #$@(operating-system-shepherd-service-names os)))))
143
144 (test-assert "homes"
145 (let ((homes
146 '#$(map user-account-home-directory
147 (filter user-account-create-home-directory?
148 (operating-system-user-accounts os)))))
149 (marionette-eval
150 `(begin
151 (use-modules (gnu services herd) (srfi srfi-1))
152
153 ;; Home directories are supposed to exist once 'user-homes'
154 ;; has been started.
155 (start-service 'user-homes)
156
157 (every (lambda (home)
158 (and (file-exists? home)
159 (file-is-directory? home)))
160 ',homes))
161 marionette)))
162
163 (test-assert "skeletons in home directories"
164 (let ((users+homes
165 '#$(filter-map (lambda (account)
166 (and (user-account-create-home-directory?
167 account)
168 (not (user-account-system? account))
169 (list (user-account-name account)
170 (user-account-home-directory
171 account))))
172 (operating-system-user-accounts os))))
173 (marionette-eval
174 `(begin
175 (use-modules (srfi srfi-1) (ice-9 ftw)
176 (ice-9 match))
177
178 (every (match-lambda
179 ((user home)
180 ;; Make sure HOME has all the skeletons...
181 (and (null? (lset-difference string=?
182 (scandir "/etc/skel/")
183 (scandir home)))
184
185 ;; ... and that everything is user-owned.
186 (let* ((pw (getpwnam user))
187 (uid (passwd:uid pw))
188 (gid (passwd:gid pw))
189 (st (lstat home)))
190 (define (user-owned? file)
191 (= uid (stat:uid (lstat file))))
192
193 (and (= uid (stat:uid st))
194 (eq? 'directory (stat:type st))
195 (every user-owned?
196 (find-files home
197 #:directories? #t)))))))
198 ',users+homes))
199 marionette)))
200
201 (test-equal "permissions on /root"
202 #o700
203 (let ((root-home #$(any (lambda (account)
204 (and (zero? (user-account-uid account))
205 (user-account-home-directory
206 account)))
207 (operating-system-user-accounts os))))
208 (stat:perms (marionette-eval `(stat ,root-home) marionette))))
209
210 (test-equal "no extra home directories"
211 '()
212
213 ;; Make sure the home directories that are not supposed to be
214 ;; created are indeed not created.
215 (let ((nonexistent
216 '#$(filter-map (lambda (user)
217 (and (not
218 (user-account-create-home-directory?
219 user))
220 (user-account-home-directory user)))
221 (operating-system-user-accounts os))))
222 (marionette-eval
223 `(begin
224 (use-modules (srfi srfi-1))
225
226 ;; Note: Do not flag "/var/empty".
227 (filter file-exists?
228 ',(remove (cut string-prefix? "/var/" <>)
229 nonexistent)))
230 marionette)))
231
232 (test-equal "login on tty1"
233 "root\n"
234 (begin
235 (marionette-control "sendkey ctrl-alt-f1" marionette)
236 ;; Wait for the 'term-tty1' service to be running (using
237 ;; 'start-service' is the simplest and most reliable way to do
238 ;; that.)
239 (marionette-eval
240 '(begin
241 (use-modules (gnu services herd))
242 (start-service 'term-tty1))
243 marionette)
244
245 ;; Now we can type.
246 (marionette-type "root\n\nid -un > logged-in\n" marionette)
247
248 ;; It can take a while before the shell commands are executed.
249 (marionette-eval '(use-modules (rnrs io ports)) marionette)
250 (marionette-eval
251 '(let loop ((i 0))
252 (catch 'system-error
253 (lambda ()
254 (call-with-input-file "/root/logged-in"
255 get-string-all))
256 (lambda args
257 (if (and (< i 15) (= ENOENT (system-error-errno args)))
258 (begin
259 (sleep 1)
260 (loop (+ i 1)))
261 (apply throw args)))))
262 marionette)))
263
264 ;; There should be one utmpx entry for the user logged in on tty1.
265 (test-equal "utmpx entry"
266 '(("root" "tty1" #f))
267 (marionette-eval
268 '(begin
269 (use-modules (guix build syscalls)
270 (srfi srfi-1))
271
272 (filter-map (lambda (entry)
273 (and (equal? (login-type USER_PROCESS)
274 (utmpx-login-type entry))
275 (list (utmpx-user entry) (utmpx-line entry)
276 (utmpx-host entry))))
277 (utmpx-entries)))
278 marionette))
279
280 ;; Likewise for /var/log/wtmp (used by 'last').
281 (test-assert "wtmp entry"
282 (match (marionette-eval
283 '(begin
284 (use-modules (guix build syscalls)
285 (srfi srfi-1))
286
287 (define (entry->list entry)
288 (list (utmpx-user entry) (utmpx-line entry)
289 (utmpx-host entry) (utmpx-login-type entry)))
290
291 (call-with-input-file "/var/log/wtmp"
292 (lambda (port)
293 (let loop ((result '()))
294 (if (eof-object? (peek-char port))
295 (map entry->list (reverse result))
296 (loop (cons (read-utmpx port) result)))))))
297 marionette)
298 (((users lines hosts types) ..1)
299 (every (lambda (type)
300 (eqv? type (login-type LOGIN_PROCESS)))
301 types))))
302
303 (test-assert "host name resolution"
304 (match (marionette-eval
305 '(begin
306 ;; Wait for nscd or our requests go through it.
307 (use-modules (gnu services herd))
308 (start-service 'nscd)
309
310 (list (getaddrinfo "localhost")
311 (getaddrinfo #$(operating-system-host-name os))))
312 marionette)
313 ((((? vector?) ..1) ((? vector?) ..1))
314 #t)
315 (x
316 (pk 'failure x #f))))
317
318 (test-equal "host not found"
319 #f
320 (marionette-eval
321 '(false-if-exception (getaddrinfo "does-not-exist"))
322 marionette))
323
324 (test-equal "locale"
325 "en_US.utf8"
326 (marionette-eval '(let ((before (setlocale LC_ALL "en_US.utf8")))
327 (setlocale LC_ALL before))
328 marionette))
329
330 (test-eq "/run/current-system is a GC root"
331 'success!
332 (marionette-eval '(begin
333 ;; Make sure the (guix …) modules are found.
334 ;;
335 ;; XXX: Currently shepherd and marionette run
336 ;; on Guile 2.0 whereas Guix is on 2.2. Yet
337 ;; we should be able to load the 2.0 Scheme
338 ;; files since it's pure Scheme.
339 (add-to-load-path
340 #+(file-append guix "/share/guile/site/2.2"))
341
342 (use-modules (srfi srfi-34) (guix store))
343
344 (let ((system (readlink "/run/current-system")))
345 (guard (c ((nix-protocol-error? c)
346 (and (file-exists? system)
347 'success!)))
348 (with-store store
349 (delete-paths store (list system))
350 #f))))
351 marionette))
352
353 ;; This symlink is currently unused, but better have it point to the
354 ;; right place. See
355 ;; <https://lists.gnu.org/archive/html/guix-devel/2016-08/msg01641.html>.
356 (test-equal "/var/guix/gcroots/profiles is a valid symlink"
357 "/var/guix/profiles"
358 (marionette-eval '(readlink "/var/guix/gcroots/profiles")
359 marionette))
360
361
362 (test-assert "screendump"
363 (begin
364 (marionette-control (string-append "screendump " #$output
365 "/tty1.ppm")
366 marionette)
367 (file-exists? "tty1.ppm")))
368
369 (test-assert "screen text"
370 (let ((text (marionette-screen-text marionette
371 #:ocrad
372 #$(file-append ocrad
373 "/bin/ocrad"))))
374 ;; Check whether the welcome message and shell prompt are
375 ;; displayed. Note: OCR confuses "y" and "V" for instance, so
376 ;; we cannot reliably match the whole text.
377 (and (string-contains text "This is the GNU")
378 (string-contains text
379 (string-append
380 "root@"
381 #$(operating-system-host-name os))))))
382
383 (test-end)
384 (exit (= (test-runner-fail-count (test-runner-current)) 0)))))
385
386 (gexp->derivation name test))
387
388 (define %test-basic-os
389 (system-test
390 (name "basic")
391 (description
392 "Instrument %SIMPLE-OS, run it in a VM, and run a series of basic
393 functionality tests.")
394 (value
395 (let* ((os (marionette-operating-system
396 %simple-os
397 #:imported-modules '((gnu services herd)
398 (guix combinators))))
399 (vm (virtual-machine os)))
400 ;; XXX: Add call to 'virtualized-operating-system' to get the exact same
401 ;; set of services as the OS produced by
402 ;; 'system-qemu-image/shared-store-script'.
403 (run-basic-test (virtualized-operating-system os '())
404 #~(list #$vm))))))
405
406 \f
407 ;;;
408 ;;; Mcron.
409 ;;;
410
411 (define %mcron-os
412 ;; System with an mcron service, with one mcron job for "root" and one mcron
413 ;; job for an unprivileged user (note: #:user is an 'mcron2' thing.)
414 (let ((job1 #~(job next-second-from
415 (lambda ()
416 (call-with-output-file "witness"
417 (lambda (port)
418 (display (list (getuid) (getgid)) port))))))
419 (job2 #~(job next-second-from
420 (lambda ()
421 (call-with-output-file "witness"
422 (lambda (port)
423 (display (list (getuid) (getgid)) port))))
424 #:user "alice"))
425 (job3 #~(job next-second-from ;to test $PATH
426 "touch witness-touch")))
427 (simple-operating-system
428 (mcron-service (list job1 job2 job3)))))
429
430 (define (run-mcron-test name)
431 (define os
432 (marionette-operating-system
433 %mcron-os
434 #:imported-modules '((gnu services herd)
435 (guix combinators))))
436
437 (define test
438 (with-imported-modules '((gnu build marionette))
439 #~(begin
440 (use-modules (gnu build marionette)
441 (srfi srfi-64)
442 (ice-9 match))
443
444 (define marionette
445 (make-marionette (list #$(virtual-machine os))))
446
447 (mkdir #$output)
448 (chdir #$output)
449
450 (test-begin "mcron")
451
452 (test-eq "service running"
453 'running!
454 (marionette-eval
455 '(begin
456 (use-modules (gnu services herd))
457 (start-service 'mcron)
458 'running!)
459 marionette))
460
461 ;; Make sure root's mcron job runs, has its cwd set to "/root", and
462 ;; runs with the right UID/GID.
463 (test-equal "root's job"
464 '(0 0)
465 (wait-for-file "/root/witness" marionette))
466
467 ;; Likewise for Alice's job. We cannot know what its GID is since
468 ;; it's chosen by 'groupadd', but it's strictly positive.
469 (test-assert "alice's job"
470 (match (wait-for-file "/home/alice/witness" marionette)
471 ((1000 gid)
472 (>= gid 100))))
473
474 ;; Last, the job that uses a command; allows us to test whether
475 ;; $PATH is sane. (Note that 'marionette-eval' stringifies objects
476 ;; that don't have a read syntax, hence the string.)
477 (test-equal "root's job with command"
478 "#<eof>"
479 (wait-for-file "/root/witness-touch" marionette))
480
481 (test-end)
482 (exit (= (test-runner-fail-count (test-runner-current)) 0)))))
483
484 (gexp->derivation name test))
485
486 (define %test-mcron
487 (system-test
488 (name "mcron")
489 (description "Make sure the mcron service works as advertised.")
490 (value (run-mcron-test name))))
491
492 \f
493 ;;;
494 ;;; Avahi and NSS-mDNS.
495 ;;;
496
497 (define %avahi-os
498 (operating-system
499 (inherit %simple-os)
500 (name-service-switch %mdns-host-lookup-nss)
501 (services (cons* (avahi-service #:debug? #t)
502 (dbus-service)
503 (dhcp-client-service) ;needed for multicast
504
505 ;; Enable heavyweight debugging output.
506 (modify-services (operating-system-user-services
507 %simple-os)
508 (nscd-service-type config
509 => (nscd-configuration
510 (inherit config)
511 (debug-level 3)
512 (log-file "/dev/console")))
513 (syslog-service-type config
514 =>
515 (syslog-configuration
516 (inherit config)
517 (config-file
518 (plain-file
519 "syslog.conf"
520 "*.* /dev/console\n")))))))))
521
522 (define (run-nss-mdns-test)
523 ;; Test resolution of '.local' names via libc. Start the marionette service
524 ;; *after* nscd. Failing to do that, libc will try to connect to nscd,
525 ;; fail, then never try again (see '__nss_not_use_nscd_hosts' in libc),
526 ;; leading to '.local' resolution failures.
527 (define os
528 (marionette-operating-system
529 %avahi-os
530 #:requirements '(nscd)
531 #:imported-modules '((gnu services herd)
532 (guix combinators))))
533
534 (define mdns-host-name
535 (string-append (operating-system-host-name os)
536 ".local"))
537
538 (define test
539 (with-imported-modules '((gnu build marionette))
540 #~(begin
541 (use-modules (gnu build marionette)
542 (srfi srfi-1)
543 (srfi srfi-64)
544 (ice-9 match))
545
546 (define marionette
547 (make-marionette (list #$(virtual-machine os))))
548
549 (mkdir #$output)
550 (chdir #$output)
551
552 (test-begin "avahi")
553
554 (test-assert "wait for services"
555 (marionette-eval
556 '(begin
557 (use-modules (gnu services herd))
558
559 (start-service 'nscd)
560
561 ;; XXX: Work around a race condition in nscd: nscd creates its
562 ;; PID file before it is listening on its socket.
563 (let ((sock (socket PF_UNIX SOCK_STREAM 0)))
564 (let try ()
565 (catch 'system-error
566 (lambda ()
567 (connect sock AF_UNIX "/var/run/nscd/socket")
568 (close-port sock)
569 (format #t "nscd is ready~%"))
570 (lambda args
571 (format #t "waiting for nscd...~%")
572 (usleep 500000)
573 (try)))))
574
575 ;; Wait for the other useful things.
576 (start-service 'avahi-daemon)
577 (start-service 'networking)
578
579 #t)
580 marionette))
581
582 (test-equal "avahi-resolve-host-name"
583 0
584 (marionette-eval
585 '(system*
586 "/run/current-system/profile/bin/avahi-resolve-host-name"
587 "-v" #$mdns-host-name)
588 marionette))
589
590 (test-equal "avahi-browse"
591 0
592 (marionette-eval
593 '(system* "avahi-browse" "-avt")
594 marionette))
595
596 (test-assert "getaddrinfo .local"
597 ;; Wait for the 'avahi-daemon' service and perform a resolution.
598 (match (marionette-eval
599 '(getaddrinfo #$mdns-host-name)
600 marionette)
601 (((? vector? addrinfos) ..1)
602 (pk 'getaddrinfo addrinfos)
603 (and (any (lambda (ai)
604 (= AF_INET (addrinfo:fam ai)))
605 addrinfos)
606 (any (lambda (ai)
607 (= AF_INET6 (addrinfo:fam ai)))
608 addrinfos)))))
609
610 (test-assert "gethostbyname .local"
611 (match (pk 'gethostbyname
612 (marionette-eval '(gethostbyname #$mdns-host-name)
613 marionette))
614 ((? vector? result)
615 (and (string=? (hostent:name result) #$mdns-host-name)
616 (= (hostent:addrtype result) AF_INET)))))
617
618
619 (test-end)
620 (exit (= (test-runner-fail-count (test-runner-current)) 0)))))
621
622 (gexp->derivation "nss-mdns" test))
623
624 (define %test-nss-mdns
625 (system-test
626 (name "nss-mdns")
627 (description
628 "Test Avahi's multicast-DNS implementation, and in particular, test its
629 glibc name service switch (NSS) module.")
630 (value (run-nss-mdns-test))))