aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/emacs-address-cleaning.el
diff options
context:
space:
mode:
authorGravatar David Edmondson <dme@dme.org>2012-01-24 16:14:07 +0000
committerGravatar David Bremner <bremner@debian.org>2012-01-25 07:27:01 -0400
commit3699fedb3accf5fbd8085c0789d43c716d6ad3e9 (patch)
tree44a99420c4f9b02d423f9cea12d17e11d73b2047 /test/emacs-address-cleaning.el
parentf92d7dee8fcf399bda361df82187523598bb09b4 (diff)
test: Add address cleaning tests.
Diffstat (limited to 'test/emacs-address-cleaning.el')
-rw-r--r--test/emacs-address-cleaning.el29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/emacs-address-cleaning.el b/test/emacs-address-cleaning.el
new file mode 100644
index 00000000..19e9e055
--- /dev/null
+++ b/test/emacs-address-cleaning.el
@@ -0,0 +1,29 @@
+(defun notmuch-test-address-cleaning-1 ()
+ (notmuch-test-expect-equal (notmuch-show-clean-address "dme@dme.org")
+ "dme@dme.org"))
+
+(defun notmuch-test-address-cleaning-2 ()
+ (let* ((input '("foo@bar.com"
+ "<foo@bar.com>"
+ "Foo Bar <foo@bar.com>"
+ "foo@bar.com <foo@bar.com>"
+ "\"Foo Bar\" <foo@bar.com>"))
+ (expected '("foo@bar.com"
+ "foo@bar.com"
+ "Foo Bar <foo@bar.com>"
+ "foo@bar.com"
+ "Foo Bar <foo@bar.com>"))
+ (output (mapcar #'notmuch-show-clean-address input)))
+ (notmuch-test-expect-equal output expected)))
+
+(defun notmuch-test-address-cleaning-3 ()
+ (let* ((input '("ДБ <db-uknot@stop.me.uk>"
+ "foo (at home) <foo@bar.com>"
+ "foo [at home] <foo@bar.com>"
+ "Foo Bar"))
+ (expected '("ДБ <db-uknot@stop.me.uk>"
+ "foo (at home) <foo@bar.com>"
+ "foo [at home] <foo@bar.com>"
+ "Foo Bar"))
+ (output (mapcar #'notmuch-show-clean-address input)))
+ (notmuch-test-expect-equal output expected)))