2017-02-10 19:17:22 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-06-11 21:07:24 +02:00
|
|
|
|
;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
|
2022-04-16 19:17:57 +02:00
|
|
|
|
;;; Copyright © 2017-2018, 2021-2022 Ludovic Courtès <ludo@gnu.org>
|
2018-12-12 10:15:08 +02:00
|
|
|
|
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
2025-09-18 12:25:39 +09:00
|
|
|
|
;;; Copyright © 2025 Maxim Cournoyer <maxim@guixotic.coop>
|
2025-07-27 18:45:03 +03:00
|
|
|
|
;;; Copyright © 2025 Evgeny Pisemsky <mail@pisemsky.site>
|
2017-02-10 19:17:22 +01: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 messaging)
|
|
|
|
|
|
#:use-module (gnu tests)
|
|
|
|
|
|
#:use-module (gnu system)
|
|
|
|
|
|
#:use-module (gnu system vm)
|
|
|
|
|
|
#:use-module (gnu services)
|
services: Add ngircd-service-type.
* gnu/services/messaging.scm (pascal-case, ngircd-serialize-string)
(ngircd-serialize-boolean, ngircd-serialize-file-like)
(ngircd-serialize-list-of-strings, ngircd-serialize-list-of-ports)
(ngircd-serialize-number, ngircd-serialize-port)
(string-or-number?, ngircd-serialize-string-or-number): New procedures.
(ngircd-global, ngircd-limits, ngircd-options, ngircd-ssl)
(ngircd-operator, ngircd-server, ngircd-channel)
(ngircd-configuration): New configurations.
(serialize-ngircd-global, serialize-ngircd-limits)
(serialize-ngircd-options, serialize-ngircd-operator)
(serialize-list-of-ngircd-operators, serialize-ngircd-server)
(serialize-ngircd-channel, serialize-list-of-ngircd-channels)
(serialize-ngircd-configuration): New procedures.
(list-of-ngircd-operators?, list-of-ngircd-servers?)
(list-of-ngircd-channels?): New predicates.
(ngircd-generate-documentation): New procedure.
(ngircd-user+group, ngircd-account, ngircd-wrapper): Likewise.
(ngircd-shepherd-service): New shepherd service.
(ngircd-service-type): New service type.
* gnu/tests/messaging.scm (%ngircd-os): New variable.
(run-ngircd-test): New procedure.
(%test-ngircd): New test.
* doc/guix.texi (Messaging Services): Document it.
Change-Id: I3ce9a7fd0b33afab22cf15942a1db0cf5b12bfdb
2025-03-30 16:15:12 +09:00
|
|
|
|
#:use-module (gnu services base)
|
2017-02-10 19:17:22 +01:00
|
|
|
|
#:use-module (gnu services messaging)
|
|
|
|
|
|
#:use-module (gnu services networking)
|
2025-03-27 23:25:16 +09:00
|
|
|
|
#:use-module (gnu services shepherd)
|
services: Add ngircd-service-type.
* gnu/services/messaging.scm (pascal-case, ngircd-serialize-string)
(ngircd-serialize-boolean, ngircd-serialize-file-like)
(ngircd-serialize-list-of-strings, ngircd-serialize-list-of-ports)
(ngircd-serialize-number, ngircd-serialize-port)
(string-or-number?, ngircd-serialize-string-or-number): New procedures.
(ngircd-global, ngircd-limits, ngircd-options, ngircd-ssl)
(ngircd-operator, ngircd-server, ngircd-channel)
(ngircd-configuration): New configurations.
(serialize-ngircd-global, serialize-ngircd-limits)
(serialize-ngircd-options, serialize-ngircd-operator)
(serialize-list-of-ngircd-operators, serialize-ngircd-server)
(serialize-ngircd-channel, serialize-list-of-ngircd-channels)
(serialize-ngircd-configuration): New procedures.
(list-of-ngircd-operators?, list-of-ngircd-servers?)
(list-of-ngircd-channels?): New predicates.
(ngircd-generate-documentation): New procedure.
(ngircd-user+group, ngircd-account, ngircd-wrapper): Likewise.
(ngircd-shepherd-service): New shepherd service.
(ngircd-service-type): New service type.
* gnu/tests/messaging.scm (%ngircd-os): New variable.
(run-ngircd-test): New procedure.
(%test-ngircd): New test.
* doc/guix.texi (Messaging Services): Document it.
Change-Id: I3ce9a7fd0b33afab22cf15942a1db0cf5b12bfdb
2025-03-30 16:15:12 +09:00
|
|
|
|
#:use-module (gnu services ssh)
|
2025-03-27 23:25:16 +09:00
|
|
|
|
#:use-module (gnu packages)
|
services: Add ngircd-service-type.
* gnu/services/messaging.scm (pascal-case, ngircd-serialize-string)
(ngircd-serialize-boolean, ngircd-serialize-file-like)
(ngircd-serialize-list-of-strings, ngircd-serialize-list-of-ports)
(ngircd-serialize-number, ngircd-serialize-port)
(string-or-number?, ngircd-serialize-string-or-number): New procedures.
(ngircd-global, ngircd-limits, ngircd-options, ngircd-ssl)
(ngircd-operator, ngircd-server, ngircd-channel)
(ngircd-configuration): New configurations.
(serialize-ngircd-global, serialize-ngircd-limits)
(serialize-ngircd-options, serialize-ngircd-operator)
(serialize-list-of-ngircd-operators, serialize-ngircd-server)
(serialize-ngircd-channel, serialize-list-of-ngircd-channels)
(serialize-ngircd-configuration): New procedures.
(list-of-ngircd-operators?, list-of-ngircd-servers?)
(list-of-ngircd-channels?): New predicates.
(ngircd-generate-documentation): New procedure.
(ngircd-user+group, ngircd-account, ngircd-wrapper): Likewise.
(ngircd-shepherd-service): New shepherd service.
(ngircd-service-type): New service type.
* gnu/tests/messaging.scm (%ngircd-os): New variable.
(run-ngircd-test): New procedure.
(%test-ngircd): New test.
* doc/guix.texi (Messaging Services): Document it.
Change-Id: I3ce9a7fd0b33afab22cf15942a1db0cf5b12bfdb
2025-03-30 16:15:12 +09:00
|
|
|
|
#:use-module (gnu packages irc)
|
2017-02-10 19:17:22 +01:00
|
|
|
|
#:use-module (gnu packages messaging)
|
2025-04-22 14:09:40 +09:00
|
|
|
|
#:use-module (gnu packages networking)
|
services: Add ngircd-service-type.
* gnu/services/messaging.scm (pascal-case, ngircd-serialize-string)
(ngircd-serialize-boolean, ngircd-serialize-file-like)
(ngircd-serialize-list-of-strings, ngircd-serialize-list-of-ports)
(ngircd-serialize-number, ngircd-serialize-port)
(string-or-number?, ngircd-serialize-string-or-number): New procedures.
(ngircd-global, ngircd-limits, ngircd-options, ngircd-ssl)
(ngircd-operator, ngircd-server, ngircd-channel)
(ngircd-configuration): New configurations.
(serialize-ngircd-global, serialize-ngircd-limits)
(serialize-ngircd-options, serialize-ngircd-operator)
(serialize-list-of-ngircd-operators, serialize-ngircd-server)
(serialize-ngircd-channel, serialize-list-of-ngircd-channels)
(serialize-ngircd-configuration): New procedures.
(list-of-ngircd-operators?, list-of-ngircd-servers?)
(list-of-ngircd-channels?): New predicates.
(ngircd-generate-documentation): New procedure.
(ngircd-user+group, ngircd-account, ngircd-wrapper): Likewise.
(ngircd-shepherd-service): New shepherd service.
(ngircd-service-type): New service type.
* gnu/tests/messaging.scm (%ngircd-os): New variable.
(run-ngircd-test): New procedure.
(%test-ngircd): New test.
* doc/guix.texi (Messaging Services): Document it.
Change-Id: I3ce9a7fd0b33afab22cf15942a1db0cf5b12bfdb
2025-03-30 16:15:12 +09:00
|
|
|
|
#:use-module (gnu packages screen)
|
2025-03-27 23:25:16 +09:00
|
|
|
|
#:use-module (gnu packages tls)
|
2017-02-10 19:17:22 +01:00
|
|
|
|
#:use-module (guix gexp)
|
|
|
|
|
|
#:use-module (guix store)
|
2018-01-15 23:08:08 +01:00
|
|
|
|
#:use-module (guix modules)
|
|
|
|
|
|
#:export (%test-prosody
|
2018-12-12 10:15:08 +02:00
|
|
|
|
%test-bitlbee
|
services: Add ngircd-service-type.
* gnu/services/messaging.scm (pascal-case, ngircd-serialize-string)
(ngircd-serialize-boolean, ngircd-serialize-file-like)
(ngircd-serialize-list-of-strings, ngircd-serialize-list-of-ports)
(ngircd-serialize-number, ngircd-serialize-port)
(string-or-number?, ngircd-serialize-string-or-number): New procedures.
(ngircd-global, ngircd-limits, ngircd-options, ngircd-ssl)
(ngircd-operator, ngircd-server, ngircd-channel)
(ngircd-configuration): New configurations.
(serialize-ngircd-global, serialize-ngircd-limits)
(serialize-ngircd-options, serialize-ngircd-operator)
(serialize-list-of-ngircd-operators, serialize-ngircd-server)
(serialize-ngircd-channel, serialize-list-of-ngircd-channels)
(serialize-ngircd-configuration): New procedures.
(list-of-ngircd-operators?, list-of-ngircd-servers?)
(list-of-ngircd-channels?): New predicates.
(ngircd-generate-documentation): New procedure.
(ngircd-user+group, ngircd-account, ngircd-wrapper): Likewise.
(ngircd-shepherd-service): New shepherd service.
(ngircd-service-type): New service type.
* gnu/tests/messaging.scm (%ngircd-os): New variable.
(run-ngircd-test): New procedure.
(%test-ngircd): New test.
* doc/guix.texi (Messaging Services): Document it.
Change-Id: I3ce9a7fd0b33afab22cf15942a1db0cf5b12bfdb
2025-03-30 16:15:12 +09:00
|
|
|
|
%test-ngircd
|
2025-03-27 23:25:16 +09:00
|
|
|
|
%test-pounce
|
2025-07-27 18:45:03 +03:00
|
|
|
|
%test-quassel
|
|
|
|
|
|
%test-mosquitto))
|
2017-02-10 19:17:22 +01:00
|
|
|
|
|
|
|
|
|
|
(define (run-xmpp-test name xmpp-service pid-file create-account)
|
|
|
|
|
|
"Run a test of an OS running XMPP-SERVICE, which writes its PID to PID-FILE."
|
2017-07-18 10:41:51 +02:00
|
|
|
|
(define os
|
|
|
|
|
|
(marionette-operating-system
|
gnu: tests: Replace deprecated dhcp client service.
* gnu/tests/audio.scm, gnu/tests/avahi.scm, gnu/tests/ci.scm,
gnu/tests/containers.scm, gnu/tests/cups.scm, gnu/tests/databases.scm,
gnu/tests/dict.scm, gnu/tests/dns.scm, gnu/tests/docker.scm,
gnu/tests/file-sharing.scm, gnu/tests/guix.scm, gnu/tests/install.scm,
gnu/tests/ldap.scm, gnu/tests/lightdm.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/rsync.scm,
gnu/tests/samba.scm, gnu/tests/ssh.scm, gnu/tests/telephony.scm,
gnu/tests/upnp.scm, gnu/tests/version-control.scm,
gnu/tests/virtualization.scm, gnu/tests/vnstat.scm,
gnu/tests/web.scm: (services): Replace dhcp-client-service-type with its
replacement dhcpcd-service-type.
Change-Id: I01d7f9a8c01736d8c8da591aaf4749bbfa4dcdad
2025-07-21 19:54:42 +02:00
|
|
|
|
(simple-operating-system (service dhcpcd-service-type)
|
2017-07-18 10:41:51 +02:00
|
|
|
|
xmpp-service)
|
|
|
|
|
|
#:imported-modules '((gnu services herd))))
|
|
|
|
|
|
|
|
|
|
|
|
(define port 15222)
|
|
|
|
|
|
|
|
|
|
|
|
(define vm
|
|
|
|
|
|
(virtual-machine
|
|
|
|
|
|
(operating-system os)
|
|
|
|
|
|
(port-forwardings `((,port . 5222)))))
|
|
|
|
|
|
|
|
|
|
|
|
(define username "alice")
|
|
|
|
|
|
(define server "localhost")
|
|
|
|
|
|
(define jid (string-append username "@" server))
|
|
|
|
|
|
(define password "correct horse battery staple")
|
|
|
|
|
|
(define message "hello world")
|
|
|
|
|
|
(define witness "/tmp/freetalk-witness")
|
|
|
|
|
|
|
|
|
|
|
|
(define script.ft
|
|
|
|
|
|
(scheme-file
|
|
|
|
|
|
"script.ft"
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(define (handle-received-message time from nickname message)
|
|
|
|
|
|
(define (touch file-name)
|
|
|
|
|
|
(call-with-output-file file-name (const #t)))
|
|
|
|
|
|
(when (equal? message #$message)
|
|
|
|
|
|
(touch #$witness)))
|
|
|
|
|
|
(add-hook! ft-message-receive-hook handle-received-message)
|
|
|
|
|
|
|
|
|
|
|
|
(ft-set-jid! #$jid)
|
|
|
|
|
|
(ft-set-password! #$password)
|
|
|
|
|
|
(ft-set-server! #$server)
|
|
|
|
|
|
(ft-set-port! #$port)
|
|
|
|
|
|
(ft-set-sslconn! #f)
|
|
|
|
|
|
(ft-connect-blocking)
|
|
|
|
|
|
(ft-send-message #$jid #$message)
|
|
|
|
|
|
|
|
|
|
|
|
(ft-set-daemon)
|
|
|
|
|
|
(ft-main-loop))))
|
|
|
|
|
|
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (gnu build marionette)
|
|
|
|
|
|
(srfi srfi-64))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette (list #$vm)))
|
|
|
|
|
|
|
|
|
|
|
|
(define (host-wait-for-file file)
|
|
|
|
|
|
;; Wait until FILE exists in the host.
|
|
|
|
|
|
(let loop ((i 60))
|
|
|
|
|
|
(cond ((file-exists? file)
|
|
|
|
|
|
#t)
|
|
|
|
|
|
((> i 0)
|
|
|
|
|
|
(begin
|
|
|
|
|
|
(sleep 1))
|
|
|
|
|
|
(loop (- i 1)))
|
|
|
|
|
|
(else
|
|
|
|
|
|
(error "file didn't show up" file)))))
|
|
|
|
|
|
|
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))
|
2017-07-18 10:41:51 +02:00
|
|
|
|
(test-begin "xmpp")
|
|
|
|
|
|
|
|
|
|
|
|
;; Wait for XMPP service to be up and running.
|
2018-06-11 21:07:24 +02:00
|
|
|
|
(test-assert "service running"
|
2017-07-18 10:41:51 +02:00
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
2018-06-11 21:07:24 +02:00
|
|
|
|
(start-service 'xmpp-daemon))
|
2017-07-18 10:41:51 +02:00
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
;; Check XMPP service's PID.
|
|
|
|
|
|
(test-assert "service process id"
|
|
|
|
|
|
(let ((pid (number->string (wait-for-file #$pid-file
|
|
|
|
|
|
marionette))))
|
|
|
|
|
|
(marionette-eval `(file-exists? (string-append "/proc/" ,pid))
|
|
|
|
|
|
marionette)))
|
|
|
|
|
|
|
|
|
|
|
|
;; Alice sends an XMPP message to herself, with Freetalk.
|
|
|
|
|
|
(test-assert "client-to-server communication"
|
|
|
|
|
|
(let ((freetalk-bin (string-append #$freetalk "/bin/freetalk")))
|
|
|
|
|
|
(marionette-eval '(system* #$create-account #$jid #$password)
|
|
|
|
|
|
marionette)
|
|
|
|
|
|
;; Freetalk requires write access to $HOME.
|
|
|
|
|
|
(setenv "HOME" "/tmp")
|
|
|
|
|
|
(system* freetalk-bin "-s" #$script.ft)
|
|
|
|
|
|
(host-wait-for-file #$witness)))
|
|
|
|
|
|
|
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))))
|
2017-07-18 10:41:51 +02:00
|
|
|
|
|
|
|
|
|
|
(gexp->derivation name test))
|
2017-02-10 19:17:22 +01:00
|
|
|
|
|
|
|
|
|
|
(define %create-prosody-account
|
|
|
|
|
|
(program-file
|
|
|
|
|
|
"create-account"
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (ice-9 match))
|
|
|
|
|
|
(match (command-line)
|
|
|
|
|
|
((command jid password)
|
|
|
|
|
|
(let ((password-input (format #f "\"~a~%~a\"" password password))
|
|
|
|
|
|
(prosodyctl #$(file-append prosody "/bin/prosodyctl")))
|
|
|
|
|
|
(system (string-join
|
|
|
|
|
|
`("echo" ,password-input "|" ,prosodyctl "adduser" ,jid)
|
|
|
|
|
|
" "))))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-prosody
|
|
|
|
|
|
(let* ((config (prosody-configuration
|
2024-03-11 22:59:53 +11:00
|
|
|
|
(insecure-sasl-mechanisms '())
|
2017-02-10 19:17:22 +01:00
|
|
|
|
(virtualhosts
|
|
|
|
|
|
(list
|
|
|
|
|
|
(virtualhost-configuration
|
|
|
|
|
|
(domain "localhost")))))))
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "prosody")
|
|
|
|
|
|
(description "Connect to a running Prosody daemon.")
|
|
|
|
|
|
(value (run-xmpp-test name
|
|
|
|
|
|
(service prosody-service-type config)
|
|
|
|
|
|
(prosody-configuration-pidfile config)
|
|
|
|
|
|
%create-prosody-account)))))
|
2018-01-15 23:08:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; BitlBee.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
(define (run-bitlbee-test)
|
|
|
|
|
|
(define os
|
|
|
|
|
|
(marionette-operating-system
|
gnu: tests: Replace deprecated dhcp client service.
* gnu/tests/audio.scm, gnu/tests/avahi.scm, gnu/tests/ci.scm,
gnu/tests/containers.scm, gnu/tests/cups.scm, gnu/tests/databases.scm,
gnu/tests/dict.scm, gnu/tests/dns.scm, gnu/tests/docker.scm,
gnu/tests/file-sharing.scm, gnu/tests/guix.scm, gnu/tests/install.scm,
gnu/tests/ldap.scm, gnu/tests/lightdm.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/rsync.scm,
gnu/tests/samba.scm, gnu/tests/ssh.scm, gnu/tests/telephony.scm,
gnu/tests/upnp.scm, gnu/tests/version-control.scm,
gnu/tests/virtualization.scm, gnu/tests/vnstat.scm,
gnu/tests/web.scm: (services): Replace dhcp-client-service-type with its
replacement dhcpcd-service-type.
Change-Id: I01d7f9a8c01736d8c8da591aaf4749bbfa4dcdad
2025-07-21 19:54:42 +02:00
|
|
|
|
(simple-operating-system (service dhcpcd-service-type)
|
2018-01-15 23:08:08 +01:00
|
|
|
|
(service bitlbee-service-type
|
|
|
|
|
|
(bitlbee-configuration
|
|
|
|
|
|
(interface "0.0.0.0"))))
|
|
|
|
|
|
#:imported-modules (source-module-closure
|
|
|
|
|
|
'((gnu services herd)))))
|
|
|
|
|
|
|
|
|
|
|
|
(define vm
|
|
|
|
|
|
(virtual-machine
|
|
|
|
|
|
(operating-system os)
|
|
|
|
|
|
(port-forwardings `((6667 . 6667)))))
|
|
|
|
|
|
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (ice-9 rdelim)
|
|
|
|
|
|
(srfi srfi-64)
|
|
|
|
|
|
(gnu build marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette (list #$vm)))
|
|
|
|
|
|
|
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-01-15 23:08:08 +01:00
|
|
|
|
(test-begin "bitlbee")
|
|
|
|
|
|
|
2018-06-11 21:07:24 +02:00
|
|
|
|
(test-assert "service started"
|
2018-01-15 23:08:08 +01:00
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
2018-06-11 21:07:24 +02:00
|
|
|
|
(start-service 'bitlbee))
|
2018-01-15 23:08:08 +01:00
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "connect"
|
|
|
|
|
|
(let* ((address (make-socket-address AF_INET INADDR_LOOPBACK
|
|
|
|
|
|
6667))
|
|
|
|
|
|
(sock (socket AF_INET SOCK_STREAM 0)))
|
|
|
|
|
|
(connect sock address)
|
|
|
|
|
|
;; See <https://tools.ietf.org/html/rfc1459>.
|
|
|
|
|
|
(->bool (string-contains (pk 'message (read-line sock))
|
|
|
|
|
|
"BitlBee"))))
|
|
|
|
|
|
|
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-01-15 23:08:08 +01:00
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "bitlbee-test" test))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-bitlbee
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "bitlbee")
|
|
|
|
|
|
(description "Connect to a BitlBee IRC server.")
|
|
|
|
|
|
(value (run-bitlbee-test))))
|
2018-12-12 10:15:08 +02:00
|
|
|
|
|
services: Add ngircd-service-type.
* gnu/services/messaging.scm (pascal-case, ngircd-serialize-string)
(ngircd-serialize-boolean, ngircd-serialize-file-like)
(ngircd-serialize-list-of-strings, ngircd-serialize-list-of-ports)
(ngircd-serialize-number, ngircd-serialize-port)
(string-or-number?, ngircd-serialize-string-or-number): New procedures.
(ngircd-global, ngircd-limits, ngircd-options, ngircd-ssl)
(ngircd-operator, ngircd-server, ngircd-channel)
(ngircd-configuration): New configurations.
(serialize-ngircd-global, serialize-ngircd-limits)
(serialize-ngircd-options, serialize-ngircd-operator)
(serialize-list-of-ngircd-operators, serialize-ngircd-server)
(serialize-ngircd-channel, serialize-list-of-ngircd-channels)
(serialize-ngircd-configuration): New procedures.
(list-of-ngircd-operators?, list-of-ngircd-servers?)
(list-of-ngircd-channels?): New predicates.
(ngircd-generate-documentation): New procedure.
(ngircd-user+group, ngircd-account, ngircd-wrapper): Likewise.
(ngircd-shepherd-service): New shepherd service.
(ngircd-service-type): New service type.
* gnu/tests/messaging.scm (%ngircd-os): New variable.
(run-ngircd-test): New procedure.
(%test-ngircd): New test.
* doc/guix.texi (Messaging Services): Document it.
Change-Id: I3ce9a7fd0b33afab22cf15942a1db0cf5b12bfdb
2025-03-30 16:15:12 +09:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; ngIRCd.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
(define %ngircd-os
|
|
|
|
|
|
(operating-system
|
|
|
|
|
|
(inherit %simple-os)
|
|
|
|
|
|
(packages (cons* ii screen %base-packages))
|
|
|
|
|
|
(services
|
|
|
|
|
|
(cons*
|
gnu: tests: Replace deprecated dhcp client service.
* gnu/tests/audio.scm, gnu/tests/avahi.scm, gnu/tests/ci.scm,
gnu/tests/containers.scm, gnu/tests/cups.scm, gnu/tests/databases.scm,
gnu/tests/dict.scm, gnu/tests/dns.scm, gnu/tests/docker.scm,
gnu/tests/file-sharing.scm, gnu/tests/guix.scm, gnu/tests/install.scm,
gnu/tests/ldap.scm, gnu/tests/lightdm.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/rsync.scm,
gnu/tests/samba.scm, gnu/tests/ssh.scm, gnu/tests/telephony.scm,
gnu/tests/upnp.scm, gnu/tests/version-control.scm,
gnu/tests/virtualization.scm, gnu/tests/vnstat.scm,
gnu/tests/web.scm: (services): Replace dhcp-client-service-type with its
replacement dhcpcd-service-type.
Change-Id: I01d7f9a8c01736d8c8da591aaf4749bbfa4dcdad
2025-07-21 19:54:42 +02:00
|
|
|
|
(service dhcpcd-service-type)
|
services: Add ngircd-service-type.
* gnu/services/messaging.scm (pascal-case, ngircd-serialize-string)
(ngircd-serialize-boolean, ngircd-serialize-file-like)
(ngircd-serialize-list-of-strings, ngircd-serialize-list-of-ports)
(ngircd-serialize-number, ngircd-serialize-port)
(string-or-number?, ngircd-serialize-string-or-number): New procedures.
(ngircd-global, ngircd-limits, ngircd-options, ngircd-ssl)
(ngircd-operator, ngircd-server, ngircd-channel)
(ngircd-configuration): New configurations.
(serialize-ngircd-global, serialize-ngircd-limits)
(serialize-ngircd-options, serialize-ngircd-operator)
(serialize-list-of-ngircd-operators, serialize-ngircd-server)
(serialize-ngircd-channel, serialize-list-of-ngircd-channels)
(serialize-ngircd-configuration): New procedures.
(list-of-ngircd-operators?, list-of-ngircd-servers?)
(list-of-ngircd-channels?): New predicates.
(ngircd-generate-documentation): New procedure.
(ngircd-user+group, ngircd-account, ngircd-wrapper): Likewise.
(ngircd-shepherd-service): New shepherd service.
(ngircd-service-type): New service type.
* gnu/tests/messaging.scm (%ngircd-os): New variable.
(run-ngircd-test): New procedure.
(%test-ngircd): New test.
* doc/guix.texi (Messaging Services): Document it.
Change-Id: I3ce9a7fd0b33afab22cf15942a1db0cf5b12bfdb
2025-03-30 16:15:12 +09:00
|
|
|
|
(service ngircd-service-type
|
|
|
|
|
|
(ngircd-configuration
|
|
|
|
|
|
(debug? #t)
|
|
|
|
|
|
(global
|
|
|
|
|
|
(ngircd-global
|
|
|
|
|
|
(server-uid 990)
|
|
|
|
|
|
(server-gid 990)))
|
|
|
|
|
|
;; There is no need to serialize the following sections, which
|
|
|
|
|
|
;; are all optional, but include them anyway to test the
|
|
|
|
|
|
;; serializers.
|
|
|
|
|
|
(limits (ngircd-limits))
|
|
|
|
|
|
(options (ngircd-options))
|
|
|
|
|
|
(ssl (ngircd-ssl))
|
|
|
|
|
|
(operators (list (ngircd-operator
|
|
|
|
|
|
(name "apteryx")
|
|
|
|
|
|
(password "1234"))))
|
|
|
|
|
|
(channels
|
|
|
|
|
|
(list (ngircd-channel
|
|
|
|
|
|
(name "#guix")
|
|
|
|
|
|
(topic "GNU Guix | https://guix.gnu.org"))))))
|
|
|
|
|
|
%base-services))))
|
|
|
|
|
|
|
|
|
|
|
|
(define (run-ngircd-test)
|
|
|
|
|
|
(define vm
|
|
|
|
|
|
(virtual-machine
|
|
|
|
|
|
(operating-system
|
|
|
|
|
|
(marionette-operating-system
|
|
|
|
|
|
%ngircd-os
|
|
|
|
|
|
#:imported-modules (source-module-closure
|
|
|
|
|
|
'((gnu build dbus-service)
|
|
|
|
|
|
(guix build utils)
|
|
|
|
|
|
(gnu services herd)))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (srfi srfi-64)
|
|
|
|
|
|
(gnu build marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette (list #$vm)))
|
|
|
|
|
|
|
|
|
|
|
|
(test-runner-current (system-test-runner #$output))
|
|
|
|
|
|
(test-begin "ngircd")
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "ngircd service runs"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
|
|
|
|
|
(wait-for-service 'ngircd))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "ngircd listens on TCP port 6667"
|
|
|
|
|
|
(wait-for-tcp-port 6667 marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "basic irc operations function as expected"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules ((gnu build dbus-service) #:select (with-retries))
|
|
|
|
|
|
(ice-9 textual-ports))
|
|
|
|
|
|
|
|
|
|
|
|
(define (write-command command)
|
|
|
|
|
|
(call-with-output-file "in"
|
|
|
|
|
|
(lambda (port)
|
|
|
|
|
|
(display (string-append command "\n") port))))
|
|
|
|
|
|
|
|
|
|
|
|
(define (grep-output text)
|
|
|
|
|
|
(with-retries 5 1 ;retry for 5 seconds
|
|
|
|
|
|
(string-contains (call-with-input-file "out" get-string-all)
|
|
|
|
|
|
text)))
|
|
|
|
|
|
|
|
|
|
|
|
(unless (zero? (system "ii -s localhost -i /tmp &"))
|
|
|
|
|
|
(error "error connecting to irc server"))
|
|
|
|
|
|
|
|
|
|
|
|
(with-retries 5 1
|
|
|
|
|
|
(chdir "/tmp/localhost")) ;move to FIFO directory
|
|
|
|
|
|
|
|
|
|
|
|
(write-command "/join #guix")
|
|
|
|
|
|
(grep-output "GNU Guix | https://guix.gnu.org")
|
|
|
|
|
|
|
|
|
|
|
|
(write-command "/oper apteryx 1234")
|
|
|
|
|
|
(grep-output "+o"))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-end))))
|
|
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "ngircd-test" test))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-ngircd
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "ngircd")
|
|
|
|
|
|
(description "Connect to a ngircd IRC server.")
|
|
|
|
|
|
(value (run-ngircd-test))))
|
|
|
|
|
|
|
2025-03-27 23:25:16 +09:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; Pounce.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
;;; Code to generate a self-signed TLS certificate/private key for ngIRCd.
|
|
|
|
|
|
;;; The ngIRCd certificate must be added to pounce's 'trust' file so that it
|
|
|
|
|
|
;;; is trusted. It is deployed via a one-shot shepherd service required by
|
|
|
|
|
|
;;; ngircd, which avoids having to allow file-like objects in the ngircd-ssl
|
|
|
|
|
|
;;; configuration record (which would be unsafe as the store is public).
|
|
|
|
|
|
(define ngircd-tls-cert-service-type
|
|
|
|
|
|
(shepherd-service-type
|
|
|
|
|
|
'ngircd-tls-cert
|
|
|
|
|
|
(lambda _
|
|
|
|
|
|
(shepherd-service
|
|
|
|
|
|
(documentation "Generate TLS certificate/key for ngIRCd")
|
|
|
|
|
|
(modules (append '((gnu build activation)
|
|
|
|
|
|
(srfi srfi-26))
|
|
|
|
|
|
%default-modules))
|
|
|
|
|
|
(provision '(ngircd-tls-cert))
|
|
|
|
|
|
(start
|
|
|
|
|
|
(with-imported-modules (source-module-closure
|
|
|
|
|
|
'((gnu build activation)))
|
|
|
|
|
|
#~(lambda _
|
|
|
|
|
|
(let ((certtool #$(file-append gnutls "/bin/certtool"))
|
|
|
|
|
|
(user (getpwnam "ngircd")))
|
|
|
|
|
|
(mkdir-p/perms "/etc/ngircd" user #o755)
|
|
|
|
|
|
(call-with-output-file "/tmp/template"
|
|
|
|
|
|
(cut format <> "expiration_days = -1~%"))
|
|
|
|
|
|
;; XXX: Beware, chdir + invoke do not work together in Shepherd
|
|
|
|
|
|
;; services (see bug#77707).
|
|
|
|
|
|
(invoke certtool "--generate-privkey"
|
|
|
|
|
|
"--outfile" "/etc/ngircd/ca-key.pem")
|
|
|
|
|
|
(invoke certtool "--generate-self-signed"
|
|
|
|
|
|
"--load-privkey" "/etc/ngircd/ca-key.pem"
|
|
|
|
|
|
"--outfile" "/etc/ngircd/ca-cert.pem"
|
|
|
|
|
|
"--template" "/tmp/template")
|
|
|
|
|
|
(chdir "/etc/ngircd")
|
|
|
|
|
|
(chown "ca-key.pem" (passwd:uid user) (passwd:gid user))
|
|
|
|
|
|
(chmod "ca-key.pem" #o400)
|
|
|
|
|
|
(chown "ca-cert.pem" (passwd:uid user) (passwd:gid user))
|
|
|
|
|
|
(chmod "ca-cert.pem" #o444)
|
|
|
|
|
|
(delete-file "/tmp/template")
|
|
|
|
|
|
#t))))
|
|
|
|
|
|
(one-shot? #t)))
|
|
|
|
|
|
#t ;dummy default value
|
|
|
|
|
|
(description "Generate a self-signed TLS certificate for ngIRCd")))
|
|
|
|
|
|
|
|
|
|
|
|
;;; To generate a VM image to test with, run:
|
|
|
|
|
|
;;; guix system vm -e '(@@ (gnu tests messaging) %pounce-os)' --no-graphic
|
|
|
|
|
|
;;; After login, resize tty to your needs, e.g.: 'stty rows 52 columns 234'
|
|
|
|
|
|
(define %pounce-os
|
|
|
|
|
|
(operating-system
|
|
|
|
|
|
(inherit %simple-os)
|
|
|
|
|
|
(packages
|
2025-04-22 14:09:40 +09:00
|
|
|
|
(append (list ii socat)
|
|
|
|
|
|
;; Uncomment for debugging.
|
|
|
|
|
|
;; (specifications->packages
|
|
|
|
|
|
;; '("gdb"
|
|
|
|
|
|
;; "gnutls" ;for gnutls-cli
|
|
|
|
|
|
;; "screen"
|
|
|
|
|
|
;; "strace"
|
|
|
|
|
|
;; "ngircd:debug"
|
|
|
|
|
|
;; "pounce:debug"
|
|
|
|
|
|
;; "libressl:debug"
|
|
|
|
|
|
;; "gnutls:debug"))
|
2025-03-27 23:25:16 +09:00
|
|
|
|
%base-packages))
|
|
|
|
|
|
(services
|
|
|
|
|
|
(cons*
|
gnu: tests: Replace deprecated dhcp client service.
* gnu/tests/audio.scm, gnu/tests/avahi.scm, gnu/tests/ci.scm,
gnu/tests/containers.scm, gnu/tests/cups.scm, gnu/tests/databases.scm,
gnu/tests/dict.scm, gnu/tests/dns.scm, gnu/tests/docker.scm,
gnu/tests/file-sharing.scm, gnu/tests/guix.scm, gnu/tests/install.scm,
gnu/tests/ldap.scm, gnu/tests/lightdm.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/rsync.scm,
gnu/tests/samba.scm, gnu/tests/ssh.scm, gnu/tests/telephony.scm,
gnu/tests/upnp.scm, gnu/tests/version-control.scm,
gnu/tests/virtualization.scm, gnu/tests/vnstat.scm,
gnu/tests/web.scm: (services): Replace dhcp-client-service-type with its
replacement dhcpcd-service-type.
Change-Id: I01d7f9a8c01736d8c8da591aaf4749bbfa4dcdad
2025-07-21 19:54:42 +02:00
|
|
|
|
(service dhcpcd-service-type)
|
2025-03-27 23:25:16 +09:00
|
|
|
|
(service ngircd-tls-cert-service-type)
|
|
|
|
|
|
(service ngircd-service-type
|
|
|
|
|
|
(ngircd-configuration
|
|
|
|
|
|
(debug? #t)
|
|
|
|
|
|
(shepherd-requirement '(user-processes ngircd-tls-cert))
|
|
|
|
|
|
(ssl (ngircd-ssl
|
|
|
|
|
|
(ports (list 6697))
|
|
|
|
|
|
(cert-file "/etc/ngircd/ca-cert.pem")
|
|
|
|
|
|
(key-file "/etc/ngircd/ca-key.pem")))
|
|
|
|
|
|
(channels (list (ngircd-channel (name "#irc"))))))
|
|
|
|
|
|
(service pounce-service-type
|
|
|
|
|
|
(pounce-configuration
|
|
|
|
|
|
(host "localhost") ;connect to ngIRCd server
|
|
|
|
|
|
;; Trust the IRC server self-signed certificate.
|
|
|
|
|
|
(trust "/etc/ngircd/ca-cert.pem")
|
|
|
|
|
|
(verbose? #t)
|
|
|
|
|
|
;; The password below was generated by inputting 1234 at the
|
|
|
|
|
|
;; prompt requested by 'pounce -x'.
|
|
|
|
|
|
(local-pass "\
|
|
|
|
|
|
$6$rviyVy+iFC9vT37o$2RUAhhFzD8gklXRk9X5KuHYtp6APk8nEXf1uroY2/KlgO9nQ0O/Dj05fzJ\
|
|
|
|
|
|
/qNlpJQOijJMOyKm4fXjw.Ck9F91")
|
|
|
|
|
|
(local-port 7000) ;listen on port 7000
|
|
|
|
|
|
(nick "apteryx")
|
|
|
|
|
|
(join (list "#irc"))))
|
|
|
|
|
|
%base-services))))
|
|
|
|
|
|
|
|
|
|
|
|
(define (run-pounce-test)
|
|
|
|
|
|
(define vm
|
|
|
|
|
|
(virtual-machine
|
|
|
|
|
|
(operating-system
|
|
|
|
|
|
(marionette-operating-system
|
|
|
|
|
|
%pounce-os
|
|
|
|
|
|
#:imported-modules (source-module-closure
|
|
|
|
|
|
'((gnu build dbus-service)
|
|
|
|
|
|
(guix build utils)
|
|
|
|
|
|
(gnu services herd)))))
|
|
|
|
|
|
(memory-size 1024)))
|
|
|
|
|
|
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (srfi srfi-64)
|
|
|
|
|
|
(gnu build marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette (list #$vm)))
|
|
|
|
|
|
|
|
|
|
|
|
(test-runner-current (system-test-runner #$output))
|
|
|
|
|
|
(test-begin "pounce")
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "IRC test server listens on TCP port 6697"
|
|
|
|
|
|
(wait-for-tcp-port 6697 marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "pounce service runs"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
|
|
|
|
|
(wait-for-service 'pounce))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "pounce listens on TCP port 7000"
|
|
|
|
|
|
(wait-for-tcp-port 7000 marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "pounce functions as an irc bouncer"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules ((gnu build dbus-service) #:select (with-retries))
|
|
|
|
|
|
(guix build utils)
|
|
|
|
|
|
(ice-9 textual-ports))
|
|
|
|
|
|
|
|
|
|
|
|
(define (write-command command)
|
|
|
|
|
|
(call-with-output-file "in"
|
|
|
|
|
|
(lambda (port)
|
|
|
|
|
|
(display (string-append command "\n") port))))
|
|
|
|
|
|
|
|
|
|
|
|
(define (grep-output text)
|
|
|
|
|
|
(with-retries 5 1 ;retry for 5 seconds
|
|
|
|
|
|
(string-contains (call-with-input-file "out" get-string-all)
|
|
|
|
|
|
(pk 'output-text: text))))
|
|
|
|
|
|
|
|
|
|
|
|
(define (connect-to-ngircd)
|
|
|
|
|
|
(mkdir-p "/tmp/pounce")
|
|
|
|
|
|
(unless (zero? (system "ii -s localhost -i /tmp/ngircd \
|
|
|
|
|
|
-n ayoli &"))
|
|
|
|
|
|
(error "error connecting to irc server"))
|
|
|
|
|
|
(with-retries 5 1 (file-exists? "/tmp/ngircd/localhost"))
|
|
|
|
|
|
(with-directory-excursion "/tmp/ngircd/localhost"
|
|
|
|
|
|
(write-command "/join #irc"))
|
|
|
|
|
|
(with-retries 5 1
|
|
|
|
|
|
(file-exists? "/tmp/ngircd/localhost/#irc")))
|
|
|
|
|
|
|
|
|
|
|
|
(define (connect-to-pounce)
|
|
|
|
|
|
(mkdir-p "/tmp/pounce")
|
|
|
|
|
|
;; Expose a tunnel encrypting communication via TLS to
|
|
|
|
|
|
;; pounce (mandated by pounce but supported by ii).
|
|
|
|
|
|
(system "socat UNIX-LISTEN:/tmp/pounce/socket \
|
|
|
|
|
|
OPENSSL:localhost:7000,verify=0 &")
|
|
|
|
|
|
(with-retries 5 1 (file-exists? "/tmp/pounce/socket"))
|
|
|
|
|
|
(setenv "PASS" "1234")
|
|
|
|
|
|
(unless (zero? (system "ii -s localhost -i /tmp/pounce \
|
|
|
|
|
|
-u /tmp/pounce/socket -n apteryx -k PASS &"))
|
|
|
|
|
|
(error "error connecting to pounce server"))
|
|
|
|
|
|
(with-retries 5 1 (file-exists? "/tmp/pounce/localhost"))
|
|
|
|
|
|
(with-directory-excursion "/tmp/pounce/localhost"
|
|
|
|
|
|
(write-command "/join #irc"))
|
|
|
|
|
|
(with-retries 5 1
|
|
|
|
|
|
(file-exists? "/tmp/pounce/localhost/#irc")))
|
|
|
|
|
|
|
|
|
|
|
|
(connect-to-ngircd)
|
|
|
|
|
|
(connect-to-pounce)
|
|
|
|
|
|
|
|
|
|
|
|
;; Send a message via pounce.
|
|
|
|
|
|
(with-directory-excursion "/tmp/pounce/localhost/#irc"
|
|
|
|
|
|
(write-command "hi! Does pounce work well as a bouncer?")
|
|
|
|
|
|
(write-command "/quit"))
|
|
|
|
|
|
|
|
|
|
|
|
;; Someone replied while we were away.
|
|
|
|
|
|
(with-directory-excursion "/tmp/ngircd/localhost/#irc"
|
|
|
|
|
|
(write-command "apteryx: pounce does work well"))
|
|
|
|
|
|
|
|
|
|
|
|
;; We reconnect some time later and receive the missed
|
|
|
|
|
|
;; message.
|
|
|
|
|
|
(with-retries 5 1 (not (file-exists? "/tmp/pounce/socket")))
|
|
|
|
|
|
(connect-to-pounce)
|
|
|
|
|
|
(with-directory-excursion "/tmp/pounce/localhost/#irc"
|
|
|
|
|
|
(grep-output "apteryx: pounce does work well")))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
(test-end))))
|
|
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "pounce-test" test))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-pounce
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "pounce")
|
|
|
|
|
|
(description "Connect to a pounce IRC network bouncer.")
|
|
|
|
|
|
(value (run-pounce-test))))
|
|
|
|
|
|
|
services: Add ngircd-service-type.
* gnu/services/messaging.scm (pascal-case, ngircd-serialize-string)
(ngircd-serialize-boolean, ngircd-serialize-file-like)
(ngircd-serialize-list-of-strings, ngircd-serialize-list-of-ports)
(ngircd-serialize-number, ngircd-serialize-port)
(string-or-number?, ngircd-serialize-string-or-number): New procedures.
(ngircd-global, ngircd-limits, ngircd-options, ngircd-ssl)
(ngircd-operator, ngircd-server, ngircd-channel)
(ngircd-configuration): New configurations.
(serialize-ngircd-global, serialize-ngircd-limits)
(serialize-ngircd-options, serialize-ngircd-operator)
(serialize-list-of-ngircd-operators, serialize-ngircd-server)
(serialize-ngircd-channel, serialize-list-of-ngircd-channels)
(serialize-ngircd-configuration): New procedures.
(list-of-ngircd-operators?, list-of-ngircd-servers?)
(list-of-ngircd-channels?): New predicates.
(ngircd-generate-documentation): New procedure.
(ngircd-user+group, ngircd-account, ngircd-wrapper): Likewise.
(ngircd-shepherd-service): New shepherd service.
(ngircd-service-type): New service type.
* gnu/tests/messaging.scm (%ngircd-os): New variable.
(run-ngircd-test): New procedure.
(%test-ngircd): New test.
* doc/guix.texi (Messaging Services): Document it.
Change-Id: I3ce9a7fd0b33afab22cf15942a1db0cf5b12bfdb
2025-03-30 16:15:12 +09:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; Quassel.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
2018-12-12 10:15:08 +02:00
|
|
|
|
(define (run-quassel-test)
|
|
|
|
|
|
(define os
|
|
|
|
|
|
(marionette-operating-system
|
gnu: tests: Replace deprecated dhcp client service.
* gnu/tests/audio.scm, gnu/tests/avahi.scm, gnu/tests/ci.scm,
gnu/tests/containers.scm, gnu/tests/cups.scm, gnu/tests/databases.scm,
gnu/tests/dict.scm, gnu/tests/dns.scm, gnu/tests/docker.scm,
gnu/tests/file-sharing.scm, gnu/tests/guix.scm, gnu/tests/install.scm,
gnu/tests/ldap.scm, gnu/tests/lightdm.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/rsync.scm,
gnu/tests/samba.scm, gnu/tests/ssh.scm, gnu/tests/telephony.scm,
gnu/tests/upnp.scm, gnu/tests/version-control.scm,
gnu/tests/virtualization.scm, gnu/tests/vnstat.scm,
gnu/tests/web.scm: (services): Replace dhcp-client-service-type with its
replacement dhcpcd-service-type.
Change-Id: I01d7f9a8c01736d8c8da591aaf4749bbfa4dcdad
2025-07-21 19:54:42 +02:00
|
|
|
|
(simple-operating-system (service dhcpcd-service-type)
|
2018-12-12 10:15:08 +02:00
|
|
|
|
(service quassel-service-type))
|
|
|
|
|
|
#:imported-modules (source-module-closure
|
|
|
|
|
|
'((gnu services herd)))))
|
|
|
|
|
|
|
|
|
|
|
|
(define vm
|
|
|
|
|
|
(virtual-machine
|
|
|
|
|
|
(operating-system os)
|
|
|
|
|
|
(port-forwardings `((4242 . 4242)))))
|
|
|
|
|
|
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (srfi srfi-64)
|
|
|
|
|
|
(gnu build marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette (list #$vm)))
|
|
|
|
|
|
|
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-12-12 10:15:08 +02:00
|
|
|
|
(test-begin "quassel")
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "service started"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
2025-03-29 09:49:01 +09:00
|
|
|
|
(wait-for-service 'quassel))
|
2018-12-12 10:15:08 +02:00
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "certificate file"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(file-exists? "/var/lib/quassel/quasselCert.pem")
|
|
|
|
|
|
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-12-12 10:15:08 +02:00
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "quassel-test" test))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-quassel
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "quassel")
|
|
|
|
|
|
(description "Connect to a quassel IRC server.")
|
|
|
|
|
|
(value (run-quassel-test))))
|
2025-07-27 18:45:03 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; Mosquitto.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
(define (run-mosquitto-test)
|
|
|
|
|
|
(define os
|
|
|
|
|
|
(marionette-operating-system
|
|
|
|
|
|
(simple-operating-system (service dhcpcd-service-type)
|
|
|
|
|
|
(service mosquitto-service-type))
|
|
|
|
|
|
#:imported-modules (source-module-closure
|
|
|
|
|
|
'((gnu services herd)))))
|
|
|
|
|
|
|
|
|
|
|
|
(define vm
|
|
|
|
|
|
(virtual-machine
|
|
|
|
|
|
(operating-system os)))
|
|
|
|
|
|
|
|
|
|
|
|
(define test
|
|
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (srfi srfi-64)
|
|
|
|
|
|
(gnu build marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
|
|
(make-marionette (list #$vm)))
|
|
|
|
|
|
|
|
|
|
|
|
(test-runner-current (system-test-runner #$output))
|
|
|
|
|
|
(test-begin "mosquitto")
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "service runs"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (gnu services herd))
|
|
|
|
|
|
(wait-for-service 'mosquitto))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-assert "service listens on TCP port 1883"
|
|
|
|
|
|
(wait-for-tcp-port 1883 marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "service receives a message"
|
|
|
|
|
|
0
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(system* #$(file-append mosquitto "/bin/mosquitto_pub")
|
|
|
|
|
|
"-t" "test-topic"
|
|
|
|
|
|
"-m" "Hello, mosquitto!"
|
|
|
|
|
|
"-r")
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-equal "service returns a message"
|
|
|
|
|
|
"Hello, mosquitto!"
|
|
|
|
|
|
(marionette-eval
|
|
|
|
|
|
'(begin
|
|
|
|
|
|
(use-modules (ice-9 popen)
|
|
|
|
|
|
(ice-9 rdelim))
|
|
|
|
|
|
(let* ((port (open-pipe* OPEN_READ
|
|
|
|
|
|
#$(file-append
|
|
|
|
|
|
mosquitto
|
|
|
|
|
|
"/bin/mosquitto_sub")
|
|
|
|
|
|
"-t" "test-topic"
|
|
|
|
|
|
"-C" "1"))
|
|
|
|
|
|
(msg (read-line port)))
|
|
|
|
|
|
(close-pipe port)
|
|
|
|
|
|
msg))
|
|
|
|
|
|
marionette))
|
|
|
|
|
|
|
|
|
|
|
|
(test-end))))
|
|
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "mosquitto-test" test))
|
|
|
|
|
|
|
|
|
|
|
|
(define %test-mosquitto
|
|
|
|
|
|
(system-test
|
|
|
|
|
|
(name "mosquitto")
|
|
|
|
|
|
(description "Test a running Mosquitto MQTT broker.")
|
|
|
|
|
|
(value (run-mosquitto-test))))
|