From: Ulf Jasper Date: Wed, 23 Nov 2022 19:31:42 +0000 (+0100) Subject: icalendar.el: Add test(s) for bug#56241 X-Git-Tag: emacs-29.0.90~1565 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b42cd524b46a4f29ef13e9d03be9d3df917f9aa3;p=emacs.git icalendar.el: Add test(s) for bug#56241 * test/lisp/calendar/icalendar-tests.el (icalendar-tests--get-error-string-for-export): new. * icalendar-tests.el (icalendar-export-bug-56241-dotted-pair): new --- diff --git a/test/lisp/calendar/icalendar-tests.el b/test/lisp/calendar/icalendar-tests.el index 2e9353a09b8..d9631310ae3 100644 --- a/test/lisp/calendar/icalendar-tests.el +++ b/test/lisp/calendar/icalendar-tests.el @@ -61,6 +61,15 @@ (ert-resource-file filename)) (buffer-string)))) +(defun icalendar-tests--get-error-string-for-export (diary-string) + "Call icalendar-export for DIARY-STRING and return resulting error-string." + (let ((file (make-temp-file "export.ics"))) + (with-temp-buffer + (insert diary-string) + (icalendar-export-region (point-min) (point-max) file)) + (with-current-buffer (get-buffer "*icalendar-errors*") + (buffer-string)))) + ;; ====================================================================== ;; Tests of functions ;; ====================================================================== @@ -981,6 +990,40 @@ END:VALARM " '(2 ((email ("att.one@email.com" "att.two@email.com")) (audio) (display))))) +;; ====================================================================== +;; #bug56241 +;; ====================================================================== +(defun icalendar-tests--diary-float (&rest args) + (apply #'diary-float args)) + +(ert-deftest icalendar-export-bug-56241-dotted-pair () + "See https://debbugs.gnu.org/cgi/bugreport.cgi?bug=56241#5" + (let ((icalendar-export-sexp-enumeration-days 366)) + (mapc (lambda (diary-string) + (should (string= "" (icalendar-tests--get-error-string-for-export + diary-string)))) + '("%%(diary-float 7 0 1) First Sunday in July 1" + "%%(icalendar-tests--diary-float 7 0 1) First Sunday in July 2")))) + + +;; (ert-deftest icalendar-export-bug-56241-sexp-does-not-match () +;; "Reported in #bug56241 -- needs to be fixed!" +;; (let ((icalendar-export-sexp-enumeration-days 0)) +;; (mapc (lambda (diary-string) +;; (should (string= "" (icalendar-tests--get-error-string-for-export +;; diary-string)))) +;; '("%%(diary-float 7 0 1) First Sunday in July 1" +;; "%%(icalendar-tests--diary-float 7 0 1) First Sunday in July 2")))) +;; +;; (ert-deftest icalendar-export-bug-56241-nested-sexps () +;; "Reported in #bug56241 -- needs to be fixed!" +;; (let ((icalendar-export-sexp-enumeration-days 366)) +;; (mapc (lambda (diary-string) +;; (should (string= "" (icalendar-tests--get-error-string-for-export +;; diary-string)))) +;; '("%%(= (calendar-day-of-week date) 0) Sunday 1" +;; "%%(= 0 (calendar-day-of-week date)) Sunday 2")))) + ;; ====================================================================== ;; Import tests ;; ======================================================================