unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 307adfa7719b9542e8e2ea51d871c97e21035cc5 4036 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
 
;; notmuch-test.el --- testing the emacs interface
;;
;; 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>

(defvar notmuch-test-tests '(notmuch-test-show-advance-simple
			     notmuch-test-show-advance-twice
			     notmuch-test-show-advance-rewind
			     notmuch-test-show-advance-twice-rewind
			     notmuch-test-show-advance-not-eobp
			     notmuch-test-show-advance-eobp)
  "A list of tests.")

(defun notmuch-test-all ()
  "Wrapper for ease of test development."
  (let ((result (get-buffer-create "*notmuch-test*")))
    (set-buffer result)
    (erase-buffer)
    (dolist (test notmuch-test-tests)
      (insert (format "%40S: %S\n"
		      test
		      (save-excursion
			(funcall test)))))
    (switch-to-buffer result)))

;;

(defun notmuch-test-show-advance-simple ()
  ;; Find a particular thread.
  (notmuch-show "id:20091117190054.GU3165@dottiness.seas.harvard.edu")
  ;; Ensure that all messages are open.
  (notmuch-show-open-or-close-all)
  (redisplay t)
  ;; Advance.
  (notmuch-show-advance)
  (redisplay t)
  ;; The first message in the thread is longer than a screen, so we
  ;; should just have scrolled normally.
  (if (= (line-number-at-pos) 19)
      t
    (cons (line-number-at-pos) 19)))

(defun notmuch-test-show-advance-twice ()
  ;; Find a particular thread.
  (notmuch-show "id:20091117190054.GU3165@dottiness.seas.harvard.edu")
  ;; Ensure that all messages are open.
  (notmuch-show-open-or-close-all)
  (redisplay t)
  ;; Advance twice.
  (notmuch-show-advance)
  (redisplay t)
  (notmuch-show-advance)
  (redisplay t)
  ;; The first message in the thread is shorter than two screens, so
  ;; we should be at the start of the second message.
  (if (= (line-number-at-pos) 41)
      t
    (cons (line-number-at-pos) 41)))

(defun notmuch-test-show-advance-rewind ()
  ;; Find a particular thread.
  (notmuch-show "id:20091117190054.GU3165@dottiness.seas.harvard.edu")
  ;; Ensure that all messages are open.
  (notmuch-show-open-or-close-all)
  (redisplay t)
  ;; Advance.
  (notmuch-show-advance)
  (redisplay t)
  ;; Rewind.
  (notmuch-show-rewind)
  (redisplay t)
  ;; Should be back at the start.
  (if (= (line-number-at-pos) 1)
      t
    (cons (line-number-at-pos) 1)))

(defun notmuch-test-show-advance-twice-rewind ()
  ;; Find a particular thread.
  (notmuch-show "id:20091117190054.GU3165@dottiness.seas.harvard.edu")
  ;; Ensure that all messages are open.
  (notmuch-show-open-or-close-all)
  (redisplay t)
  ;; Advance twice.
  (notmuch-show-advance)
  (redisplay t)
  (notmuch-show-advance)
  (redisplay t)
  ;; Rewind.
  (notmuch-show-rewind)
  (redisplay t)
  ;; The first message in the thread is shorter than two screens, so
  ;; we should be in the middle of it.
  (if (= (line-number-at-pos) 17)
      t
    (cons (line-number-at-pos) 17)))

(defun notmuch-test-show-advance-not-eobp ()
  ;; Find a particular thread.
  (notmuch-show "id:20091117190054.GU3165@dottiness.seas.harvard.edu")
  ;; From here `advance' should never cause us to leave the buffer.
  (not (notmuch-show-advance)))

(defun notmuch-test-show-advance-eobp ()
  ;; Find a particular thread.
  (notmuch-show "id:20091117190054.GU3165@dottiness.seas.harvard.edu")
  (goto-char (point-max))
  ;; From here `advance' should always cause us to leave the buffer.
  (notmuch-show-advance))

;;

(provide 'notmuch-test)

debug log:

solving 307adfa ...
found 307adfa in https://yhetil.org/notmuch/1325160490-23472-2-git-send-email-dme@dme.org/

applying [1/1] https://yhetil.org/notmuch/1325160490-23472-2-git-send-email-dme@dme.org/
diff --git a/emacs/notmuch-test.el b/emacs/notmuch-test.el
new file mode 100644
index 0000000..307adfa

Checking patch emacs/notmuch-test.el...
Applied patch emacs/notmuch-test.el cleanly.

index at:
100644 307adfa7719b9542e8e2ea51d871c97e21035cc5	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).