]> git.eshelyaron.com Git - emacs.git/commitdiff
EUDC: Improve LDAP and BBDB tests
authorThomas Fitzsimmons <fitzsim@fitzsim.org>
Thu, 24 Nov 2022 07:16:26 +0000 (02:16 -0500)
committerThomas Fitzsimmons <fitzsim@fitzsim.org>
Thu, 24 Nov 2022 07:21:38 +0000 (02:21 -0500)
* test/lisp/net/eudc-tests.el (eudcb-ldap): Make slapd detection
reliable.
* test/lisp/net/eudc-resources/bbdb: Add another test contact.

test/lisp/net/eudc-resources/bbdb
test/lisp/net/eudc-tests.el

index b730bb51cc93aee09044798e9466f2eedfe5d29c..782da56e9f1d4431f0e568e2fd9e3c385251561e 100644 (file)
@@ -1,3 +1,4 @@
 ;; -*- mode: Emacs-Lisp; coding: utf-8; -*-
 ;;; file-format: 9
 ["Emacs" "ERT3" nil nil nil nil nil ("emacs-ert-test-3@bbdb.gnu.org") ((notes . " ")) "c8bd3a63-3a83-48a7-a95b-be118a923e00" "2022-11-19 16:36:04 +0000" "2022-11-19 16:36:04 +0000" nil]
+["Emacs" "ERT4" nil nil nil nil nil ("emacs-ert-test-4@bbdb.gnu.org") ((notes . " ")) "5a93c3c5-9270-4e10-8b28-d28cfa2562cf" "2022-11-19 16:47:49 +0000" "2022-11-19 16:47:49 +0000" nil]
index 212db65cb26f373d38ee5a7bc557dfd1ec765b7f..0da51b7c36e96527bbc87668781b02b97524875f 100644 (file)
@@ -281,7 +281,12 @@ Karl Fogel <kfogel@mail-abbrev.com")))))))))
                                        base "dc=gnu,dc=org" auth simple)))
         (eudc-server-hotlist '(("ldap://localhost:3899" . ldap)))
         (eudc-ignore-options-file t))
-    (sleep-for 1) ; Wait for slapd to start.
+    (catch 'sldapd-up
+      (dotimes (_tries 20)
+        (when (eudc-query-with-words '("emacs-ert-test-1"))
+          (throw 'sldapd-up nil)))
+      (kill-process ldap-process)
+      (error "Failed to confirm slapd is running"))
     (should (equal (with-temp-buffer
                      (insert "emacs-ert-test-1")
                      (eudc-expand-try-all)