unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 7d765370afffbdee6aa0e614bad1fe380db83fc0 4220 bytes (raw)
name: emacs/notmuch-test.el 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
 
;; notmuch-test.el --- ERT based tests for notmuch.el.
;;
;; Copyright © David Edmondson
;;
;; This file is part of Notmuch.
;;
;; Notmuch 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.
;;
;; Notmuch 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 Notmuch.  If not, see <http://www.gnu.org/licenses/>.
;;
;; Authors: David Edmondson <dme@dme.org>

(require 'ert)

;;

(defun notmuch-test-file-as-string (filename)
  (with-temp-buffer
    (insert-file-contents filename)
    (buffer-string)))

;; This tends not to work well except in batch mode.
(defun notmuch-test-expected-result (name)
  "Get the expected result of a test as a string."
  (notmuch-test-file-as-string
   (concat (getenv "EXPECTED") "/" name)))

(defun notmuch-test-buffer-result (fn)
  (funcall fn)
  (buffer-substring-no-properties (point-min) (point-max)))

;;

(require 'notmuch-maildir-fcc)

(ert-deftest notmuch-fcc-trivial ()
  "One Fcc folder."
  (should (string= "sent"
		   (notmuch-fcc-determine-folder "sent" "foo@bar.baz"))))

(ert-deftest notmuch-fcc-simple ()
  "Fcc folder matching single address."
  (should (string= "sent"
		   (notmuch-fcc-determine-folder
		    '(("foo@bar.baz" . "sent"))
		    "foo@bar.baz"))))

(ert-deftest notmuch-fcc-none ()
  "No matching Fcc folder."
  (should (eq nil
	      (notmuch-fcc-determine-folder
	       '(("foo@bar.baz" . "sent"))
	       "not@bar.baz"))))

(ert-deftest notmuch-fcc-multiple ()
  "Choose the correct folder from two options."
  (let ((fcc-config '(("foo@bar.baz" . "foosent")
		      ("bar@bar.baz" . "barsent"))))

    (should (string= "foosent"
		     (notmuch-fcc-determine-folder
		      fcc-config "foo@bar.baz")))

    (should (string= "barsent"
		     (notmuch-fcc-determine-folder
		      fcc-config "bar@bar.baz")))))

(ert-deftest notmuch-fcc-regexp ()
  "Allow a regexp in the `From' string."
  (let ((fcc-config '(("foo@bar.baz" . "foosent")
		      (".*" . "barsent"))))

    (should (string= "foosent"
		     (notmuch-fcc-determine-folder
		      fcc-config "foo@bar.baz")))
		     
    (should (string= "barsent"
		     (notmuch-fcc-determine-folder
		      fcc-config "bar@bar.baz")))))

(ert-deftest notmuch-fcc-oldstyle ()
  "Raise an error for an old style configuration."

  ;; No match.
  (should-error (notmuch-fcc-determine-folder
		 '("sent" ("not@bar.baz" . "foosent"))
		 "foo@bar.baz"))
  ;; One match.
  (should-error (notmuch-fcc-determine-folder
		 '("sent" ("not@bar.baz" . "foosent"))
		 "not@bar.baz")))
  

;;

(require 'notmuch-hello)

(ert-deftest notmuch-hello ()
  "Check that `notmuch-hello' outputs correct data.

Presumes that the email corpus is already present."

  (should (string= (notmuch-test-buffer-result 'notmuch-hello)
		   (notmuch-test-expected-result "notmuch-hello"))))

(ert-deftest notmuch-hello-reflect ()
  (should (equal '(1 4 7 10 2 5 8 11 3 6 9 12)
		 (notmuch-hello-reflect '(1 2 3 4 5 6 7 8 9 10 11 12) 4)))

  (should (equal '(1 4 7 10 2 5 8 nil 3 6 9 nil)
		 (notmuch-hello-reflect '(1 2 3 4 5 6 7 8 9 10) 4))))

;;

(require 'notmuch-show)

(ert-deftest notmuch-show-strip-re ()
  (mapc '(lambda (test)
	   (should (string= "fish"
			    (notmuch-show-strip-re test))))
	'("fish" "re: fish" "Re: fish" "RE: fish"))

  (mapc '(lambda (test)
	   (should (string= "some fish"
			    (notmuch-show-strip-re test))))
	'("some fish" "re: some fish" "some re: fish"))

  (mapc '(lambda (test)
	   (should-not (string= "some fish"
				(notmuch-show-strip-re test))))
	'(" some fish" "re: some fish " "somere: fish" "some fish re:")))

;; 

(defun notmuch-test-batch ()
  "Run the notmuch ERT tests in batch mode."

  ;; Avoid the 10 column default of `emacs --batch'.
  (set-frame-width (window-frame (get-buffer-window)) 80)

  (ert-run-tests-batch-and-exit))

debug log:

solving 7d76537 ...
found 7d76537 in https://yhetil.org/notmuch/1290694146-8990-1-git-send-email-dme@dme.org/
found ac6e5a7 in https://yhetil.org/notmuch/1290682750-30283-3-git-send-email-dme@dme.org/

applying [1/2] https://yhetil.org/notmuch/1290682750-30283-3-git-send-email-dme@dme.org/
diff --git a/emacs/notmuch-test.el b/emacs/notmuch-test.el
new file mode 100644
index 0000000..ac6e5a7


applying [2/2] https://yhetil.org/notmuch/1290694146-8990-1-git-send-email-dme@dme.org/
diff --git a/emacs/notmuch-test.el b/emacs/notmuch-test.el
index ac6e5a7..7d76537 100644

2:74: trailing whitespace.
		     
2:90: trailing whitespace.
  
Checking patch emacs/notmuch-test.el...
Applied patch emacs/notmuch-test.el cleanly.
1:176: trailing whitespace.
;; 
Checking patch emacs/notmuch-test.el...
Applied patch emacs/notmuch-test.el cleanly.
warning: 3 lines add whitespace errors.

index at:
100644 7d765370afffbdee6aa0e614bad1fe380db83fc0	emacs/notmuch-test.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).