tests: nfs: Improve "nfs-root-fs".
[jackhill/guix/guix.git] / gnu / tests / virtualization.scm
CommitLineData
c075c8fd
CB
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
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 virtualization)
20 #:use-module (gnu tests)
21 #:use-module (gnu system)
22 #:use-module (gnu system file-systems)
23 #:use-module (gnu system vm)
24 #:use-module (gnu services)
25 #:use-module (gnu services dbus)
26 #:use-module (gnu services networking)
27 #:use-module (gnu services virtualization)
28 #:use-module (gnu packages virtualization)
29 #:use-module (guix gexp)
30 #:use-module (guix store)
31 #:export (%test-libvirt))
32
33(define %libvirt-os
34 (simple-operating-system
39d7fdce 35 (service dhcp-client-service-type)
c075c8fd
CB
36 (dbus-service)
37 (polkit-service)
38 (service libvirt-service-type)))
39
40(define (run-libvirt-test)
41 "Run tests in %LIBVIRT-OS."
42 (define os
43 (marionette-operating-system
44 %libvirt-os
45 #:imported-modules '((gnu services herd)
46 (guix combinators))))
47
48 (define vm
49 (virtual-machine
50 (operating-system os)
51 (port-forwardings '())))
52
53 (define test
54 (with-imported-modules '((gnu build marionette))
55 #~(begin
56 (use-modules (srfi srfi-11) (srfi srfi-64)
57 (gnu build marionette))
58
59 (define marionette
60 (make-marionette (list #$vm)))
61
62 (mkdir #$output)
63 (chdir #$output)
64
65 (test-begin "libvirt")
66
67 (test-assert "service running"
68 (marionette-eval
69 '(begin
70 (use-modules (gnu services herd))
71 (match (start-service 'libvirtd)
72 (#f #f)
73 (('service response-parts ...)
74 (match (assq-ref response-parts 'running)
75 ((pid) (number? pid))))))
76 marionette))
77
78 (test-eq "fetch version"
79 0
80 (marionette-eval
81 `(begin
82 (system* ,(string-append #$libvirt "/bin/virsh")
83 "-c" "qemu:///system" "version"))
84 marionette))
85
86 (test-end)
87 (exit (= (test-runner-fail-count (test-runner-current)) 0)))))
88
89 (gexp->derivation "libvirt-test" test))
90
91(define %test-libvirt
92 (system-test
93 (name "libvirt")
94 (description "Connect to the running LIBVIRT service.")
95 (value (run-libvirt-test))))