aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2022-05-05 08:29:22 -0300
committerSean Whitton <spwhitton@spwhitton.name>2022-05-05 12:26:10 -0700
commit68cb80cfbcd7684cd2d2b8e5091d956aea71e9dd (patch)
tree4763e94359d78ccc1bec23e5e9aaa2045c3c0030 /tests
parent8cfab42bc3a063f48a3934326818f1c5f2ca9721 (diff)
downloadconsfigurator-68cb80cfbcd7684cd2d2b8e5091d956aea71e9dd.tar.gz
run tests with temporary gpg home
The big picture change here is the introduction of a custom test runner which allows setting up and tearing down various data sources (or other resources) for the test suite. In order to parse the output of gpg, provide a new exported function CONSFIGURATOR:STRIP-PREFIX. Signed-off-by: David Bremner <david@tethera.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/package.lisp3
-rw-r--r--tests/runner.lisp72
2 files changed, 74 insertions, 1 deletions
diff --git a/tests/package.lisp b/tests/package.lisp
index 0a303f0..fcb912c 100644
--- a/tests/package.lisp
+++ b/tests/package.lisp
@@ -1,5 +1,6 @@
(in-package :cl-user)
(defpackage :consfigurator/tests
- (:use #:cl #:consfigurator #:consfigurator.data.util #+sbcl :sb-rt #-sbcl :rtest)
+ (:use #:cl #:consfigurator #:consfigurator.data.util #:alexandria #:anaphora
+ #+sbcl :sb-rt #-sbcl :rtest)
(:local-nicknames (#:file #:consfigurator.property.file)))
diff --git a/tests/runner.lisp b/tests/runner.lisp
new file mode 100644
index 0000000..1b7af62
--- /dev/null
+++ b/tests/runner.lisp
@@ -0,0 +1,72 @@
+;;; Consfigurator -- Lisp declarative configuration management system
+
+;;; Copyright (C) 2022 David Bremner <david@tethera.net>
+
+;;; This file 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, or (at your option)
+;;; any later version.
+
+;;; This file 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 this program. If not, see <http://www.gnu.org/licenses/>.
+
+(in-package :consfigurator/tests)
+(named-readtables:in-readtable :consfigurator)
+
+(defparameter *test-gnupg-fingerprint* nil
+ "Fingerprint of trusted gpg key usable for encryption and signing.")
+
+(defun first-gpg-fingerprint ()
+ "Return the fingerprint of the first (primary) key listed by gpg.
+
+This is mainly useful when there is a single primary key."
+ (some
+ (lambda (line) (aand (strip-prefix "fpr:::::::::" line)
+ (string-trim ":" it)))
+ (lines (gpg '("--with-colons" "--list-keys")))))
+
+(defun make-test-gnupghome ()
+ "Create and populate *DATA-SOURCE-GNUPGHOME* for tests."
+ (unless (nth-value 1 (ensure-directories-exist
+ *data-source-gnupghome* :mode #o700))
+ (error "~s already exists" *data-source-gnupghome*))
+ (gpg '("--batch" "--pinentry-mode" "loopback" "--passphrase" "" "--yes"
+ "--quick-generate-key" "consfig@example.org (insecure!)"))
+ (with-open-file (stream #?"${*data-source-gnupghome*}/gpg.conf"
+ :direction :output)
+ (format stream "default-key ~a~%default-recipient-self~%"
+ *test-gnupg-fingerprint*)))
+
+(defmacro with-test-gnupg-home (base-dir &rest body)
+ "Set up gnupg homedir for test suite under BASE-DIR and run BODY with
+*DATA-SOURCE-GNUPGHOME* and *TEST-GNUPG-FINGERPRINT* set appropriately."
+ `(let ((*data-source-gnupghome* (merge-pathnames #P"gnupg/" ,base-dir)))
+ (unwind-protect
+ (progn
+ (make-test-gnupghome)
+ (let ((*test-gnupg-fingerprint* (first-gpg-fingerprint)))
+ ,@body))
+ (run-program "gpgconf" "--homedir" *data-source-gnupghome*
+ "--kill" "all"))))
+
+(defun runner ()
+ "Run tests via (sb-)rt, with setup and teardown."
+ (with-local-temporary-directory (test-home)
+ (with-test-gnupg-home test-home
+ (do-tests))))
+
+;;;; tests for test runner machinery
+(deftest runner.0 (not *data-source-gnupghome*) nil)
+
+(deftest runner.1
+ (count-if
+ (lambda (line) (string-prefix-p "pub" line))
+ (lines (gpg '("--with-colons" "--list-keys"))))
+ 1)
+
+(deftest runner.2 (not *test-gnupg-fingerprint*) nil)