X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2Ftest-lib.el;h=02e020c10d3aef0db283308bc6ea283914491874;hb=bfccfc31c7cf5d6e24a68052c002c55eb94a7ba7;hp=36afe630e5edb35d0a007bcb3be6a2131d9e8d20;hpb=eed6c75556e18d943ac690598edceef0c4ee59d5;p=notmuch diff --git a/test/test-lib.el b/test/test-lib.el index 36afe630..02e020c1 100644 --- a/test/test-lib.el +++ b/test/test-lib.el @@ -59,7 +59,9 @@ "Save visible text in current buffer to file FILENAME. Default FILENAME is OUTPUT." (notmuch-post-command) - (let ((text (visible-buffer-string))) + (let ((text (visible-buffer-string)) + ;; Tests expect output in UTF-8 encoding + (coding-system-for-write 'utf-8)) (with-temp-file (or filename "OUTPUT") (insert text)))) (defun visible-buffer-string () @@ -181,3 +183,22 @@ nothing." ;; suite (setq notmuch-tag-deleted-formats '((".*" nil))) + +;; For historical reasonse we don't print part headers when replying +;; in the tests suite +(setq notmuch-mua-reply-insert-header-p-function 'notmuch-show-reply-insert-header-p-never) + +;; force a common html renderer, to avoid test variations between +;; environments + +(setq mm-text-html-renderer 'html2text) + +;; Set some variables for S/MIME tests. + +(setq smime-keys '(("" "test_suite.pem" nil))) + +(setq mml-smime-use 'openssl) + +;; all test keys are without passphrase +(eval-after-load 'smime + '(defun smime-ask-passphrase (cache) nil))