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>
|
2018-01-15 23:08:08 +01:00
|
|
|
|
;;; Copyright © 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
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)
|
|
|
|
|
#:use-module (gnu services messaging)
|
|
|
|
|
#:use-module (gnu services networking)
|
|
|
|
|
#:use-module (gnu packages messaging)
|
|
|
|
|
#:use-module (guix gexp)
|
|
|
|
|
#:use-module (guix store)
|
2018-01-15 23:08:08 +01:00
|
|
|
|
#:use-module (guix modules)
|
|
|
|
|
#:export (%test-prosody
|
|
|
|
|
%test-bitlbee))
|
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
|
2018-10-18 00:45:05 +02:00
|
|
|
|
(simple-operating-system (service dhcp-client-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)))))
|
|
|
|
|
|
|
|
|
|
(mkdir #$output)
|
|
|
|
|
(chdir #$output)
|
|
|
|
|
|
|
|
|
|
(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)))
|
|
|
|
|
|
|
|
|
|
(test-end)
|
|
|
|
|
(exit (= (test-runner-fail-count (test-runner-current)) 0)))))
|
|
|
|
|
|
|
|
|
|
(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
|
2017-11-24 22:31:33 +01:00
|
|
|
|
(disable-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
|
2018-10-18 00:45:05 +02:00
|
|
|
|
(simple-operating-system (service dhcp-client-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)))
|
|
|
|
|
|
|
|
|
|
(mkdir #$output)
|
|
|
|
|
(chdir #$output)
|
|
|
|
|
|
|
|
|
|
(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-equal "valid PID"
|
|
|
|
|
#$(file-append bitlbee "/sbin/bitlbee")
|
|
|
|
|
(marionette-eval
|
|
|
|
|
'(begin
|
|
|
|
|
(use-modules (srfi srfi-1)
|
|
|
|
|
(gnu services herd))
|
|
|
|
|
|
|
|
|
|
(let ((bitlbee
|
|
|
|
|
(find (lambda (service)
|
|
|
|
|
(equal? '(bitlbee)
|
|
|
|
|
(live-service-provision service)))
|
|
|
|
|
(current-services))))
|
|
|
|
|
(and (pk 'bitlbee-service bitlbee)
|
|
|
|
|
(let ((pid (live-service-running bitlbee)))
|
|
|
|
|
(readlink (string-append "/proc/"
|
|
|
|
|
(number->string pid)
|
|
|
|
|
"/exe"))))))
|
|
|
|
|
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"))))
|
|
|
|
|
|
|
|
|
|
(test-end)
|
|
|
|
|
(exit (= (test-runner-fail-count (test-runner-current)) 0)))))
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "bitlbee-test" test))
|
|
|
|
|
|
|
|
|
|
(define %test-bitlbee
|
|
|
|
|
(system-test
|
|
|
|
|
(name "bitlbee")
|
|
|
|
|
(description "Connect to a BitlBee IRC server.")
|
|
|
|
|
(value (run-bitlbee-test))))
|