services: ntp: Support different NTP server types and options.
[jackhill/guix/guix.git] / tests / networking.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
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 (tests networking)
20 #:use-module (gnu services networking)
21 #:use-module (srfi srfi-64))
22
23 ;;; Tests for the (gnu services networking) module.
24
25 (define ntp-server->string (@@ (gnu services networking) ntp-server->string))
26
27 (define %ntp-server-sample
28 (ntp-server
29 (type 'server)
30 (address "some.ntp.server.org")
31 (options `(iburst (version 3) (maxpoll 16) prefer))))
32
33 (test-begin "networking")
34
35 (test-equal "ntp-server->string"
36 (ntp-server->string %ntp-server-sample)
37 "server some.ntp.server.org iburst version 3 maxpoll 16 prefer")
38
39 (test-equal "ntp configuration servers deprecated form"
40 (ntp-configuration-servers
41 (ntp-configuration
42 (servers (list (ntp-server
43 (type 'server)
44 (address "example.pool.ntp.org")
45 (options '()))))))
46 (ntp-configuration-servers
47 (ntp-configuration
48 (servers (list "example.pool.ntp.org")))))
49
50 (test-end "networking")