unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
blob 5b798077ff995246b25e725e45d33a87df5acaa7 8954 bytes (raw)
name: test/lisp/mail/ietf-drums-date-tests.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
 
;;; ietf-drums-date-tests.el --- Test suite for ietf-drums-date.el  -*- lexical-binding:t -*-

;; Copyright (C) 2022 Free Software Foundation, Inc.

;; Author: Bob Rogers <rogers@rgrjr.com>

;; This file is part of GNU Emacs.

;; GNU Emacs 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.

;; GNU Emacs 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 GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;;; Code:

(require 'ert)
(require 'ietf-drums)
(require 'ietf-drums-date)

(ert-deftest ietf-drums-date-tests ()
  "Test basic ietf-drums-parse-date-string functionality."

  ;; Test tokenization.
  (should (equal (ietf-drums-date--tokenize-string " ") '()))
  (should (equal (ietf-drums-date--tokenize-string " a b") '("a" "b")))
  (should (equal (ietf-drums-date--tokenize-string "a bbc dde")
                 '("a" "bbc" "dde")))
  (should (equal (ietf-drums-date--tokenize-string " , a 27 b,, c 14:32 ")
                 '("a" 27 "b" "c" "14:32")))
  ;; Some folding whitespace tests.
  (should (equal (ietf-drums-date--tokenize-string " a b (end) c" t)
                 '("a" "b")))
  (should (equal (ietf-drums-date--tokenize-string "(quux)a (foo (bar)) b(baz)")
                 '("a" "b")))
  (should (equal (ietf-drums-date--tokenize-string "a b\\cde")
                 ;; Strictly incorrect, but strictly unnecessary syntax.
                 '("a" "b\\cde")))
  (should (equal (ietf-drums-date--tokenize-string "a b\\ de")
                 '("a" "b\\ de")))
  (should (equal (ietf-drums-date--tokenize-string "a \\de \\(f")
                 '("a" "\\de" "\\(f")))

  ;; Start with some compatible RFC822 dates.
  (dolist (case '(("Mon, 22 Feb 2016 19:35:42 +0100"
                   (42 35 19 22 2 2016 1 -1 3600)
                   (22219 21758))
                  ("22 Feb 2016 19:35:42 +0100"
                   (42 35 19 22 2 2016 nil -1 3600)
                   (22219 21758))
                  ("Mon, 22 February 2016 19:35:42 +0100"
                   (42 35 19 22 2 2016 1 -1 3600)
                   (22219 21758))
                  ("Mon, 22 feb 2016 19:35:42 +0100"
                   (42 35 19 22 2 2016 1 -1 3600)
                   (22219 21758))
                  ("Monday, 22 february 2016 19:35:42 +0100"
                   (42 35 19 22 2 2016 1 -1 3600)
                   (22219 21758))
                  ("Monday, 22 february 2016 19:35:42 PST"
                   (42 35 19 22 2 2016 1 nil -28800)
                   (22219 54158))
                  ("Friday, 21 Sep 2018 13:47:58 PDT"
                   (58 47 13 21 9 2018 5 t -25200)
                   (23461 22782))
                  ("Friday, 21 Sep 2018 13:47:58 EDT"
                   (58 47 13 21 9 2018 5 t -14400)
                   (23461 11982))))
    (let* ((input (car case))
           (parsed (cadr case))
           (encoded (caddr case)))
      ;; The input should parse the same without RFC822.
      (should (equal (ietf-drums-parse-date-string input) parsed))
      (should (equal (ietf-drums-parse-date-string input nil t) parsed))
      ;; Check the encoded date (the official output, though the
      ;; decoded-time is easier to debug).
      (should (equal (ietf-drums-parse-date input) encoded))))

  ;; Test a few without timezones.
  (dolist (case '(("Mon, 22 Feb 2016 19:35:42"
                   (42 35 19 22 2 2016 1 -1 nil))
                  ("Friday, 21 Sep 2018 13:47:58"
                   (58 47 13 21 9 2018 5 -1 nil))))
    (let* ((input (car case))
           (parsed (cadr case)))
      ;; The input should parse the same without RFC822.
      (should (equal (ietf-drums-parse-date-string input) parsed))
      (should (equal (ietf-drums-parse-date-string input nil t) parsed))
      ;; We can't check the encoded date here because it will differ
      ;; depending on the TZ of the test environment.
      ))

  ;; Two-digit years are not allowed by the "modern" format.
  (should (equal (ietf-drums-parse-date-string "22 Feb 16 19:35:42 +0100")
                 '(42 35 19 22 2 2016 nil -1 3600)))
  (should (equal (ietf-drums-parse-date-string "22 Feb 16 19:35:42 +0100" nil t)
                 '(nil nil nil 22 2 nil nil -1 nil)))
  (should (equal (should-error (ietf-drums-parse-date-string
                                "22 Feb 16 19:35:42 +0100" t t))
                 '(date-parse-error "Four-digit years are required" 16)))
  (should (equal (ietf-drums-parse-date-string "22 Feb 96 19:35:42 +0100")
                 '(42 35 19 22 2 1996 nil -1 3600)))
  (should (equal (ietf-drums-parse-date-string "22 Feb 96 19:35:42 +0100" nil t)
                 '(nil nil nil 22 2 nil nil -1 nil)))
  (should (equal (should-error (ietf-drums-parse-date-string
                                "22 Feb 96 19:35:42 +0100" t t))
                 '(date-parse-error "Four-digit years are required" 96)))

  ;; Try some dates with comments.
  (should (equal (ietf-drums-parse-date-string
                  "22 Feb (today) 16 19:35:42 +0100")
                 '(42 35 19 22 2 2016 nil -1 3600)))
  (should (equal (ietf-drums-parse-date-string
                  "22 Feb (today) 16 19:35:42 +0100" nil t)
                 '(nil nil nil 22 2 nil nil -1 nil)))
  (should (equal (should-error (ietf-drums-parse-date-string
                                "22 Feb (today) 16 19:35:42 +0100" t t))
                 '(date-parse-error "Expected a year" nil)))
  (should (equal (ietf-drums-parse-date-string
                  "22 Feb 96 (long ago) 19:35:42 +0100")
                 '(42 35 19 22 2 1996 nil -1 3600)))
  (should (equal (ietf-drums-parse-date-string
                  "Friday, 21 Sep(comment \\) with \\( parens)18 19:35:42")
                 '(42 35 19 21 9 2018 5 -1 nil)))
  (should (equal (ietf-drums-parse-date-string
                  "Friday, 21 Sep 18 19:35:42 (unterminated comment")
                 '(42 35 19 21 9 2018 5 -1 nil)))

  ;; Test some RFC822 error cases
  (dolist (test '(("33 1 2022" ("Slot out of range" day 33 1 31))
                  ("0 1 2022" ("Slot out of range" day 0 1 31))
                  ("1 1 2020 2021" ("Expected an alphabetic month" 1))
                  ("1 Jan 2020 2021" ("Expected a time" 2021))
                  ("1 Jan 2020 20:21 2000" ("Expected a timezone" 2000))
                  ("1 Jan 2020 20:21 +0200 33" ("Extra token(s)" 33))))
    (should (equal (should-error (ietf-drums-parse-date-string (car test) t))
                   (cons 'date-parse-error (cadr test)))))

  (dolist (test '(("22 Feb 196" nil		;; bad year
                   ("Four-digit years are required" 196))
                  ("22 Feb 16 19:35:24" t	;; two-digit year
                   ("Four-digit years are required" 16))
                  ("22 Feb 96 19:35:42" t	;; two-digit year
                   ("Four-digit years are required" 96))
                  ("2 Feb 2021 1996" nil
                   ("Expected a time" 1996))
                  ("22 Fub 1996" nil
                   ("Expected an alphabetic month" "fub"))
                  ("1 Jan 2020 30" nil
                   ("Expected a time" 30))
                  ("1 Jan 2020 16:47 15:15" nil
                   ("Expected a timezone" "15:15"))
                  ("1 Jan 2020 16:47 +0800 -0800" t
                   ("Extra token(s)" "-0800"))
                  ;; Range tests
                  ("32 Dec 2021" nil
                   ("Slot out of range" day 32 1 31))
                  ("0 Dec 2021" nil
                   ("Slot out of range" day 0 1 31))
                  ("3 13 2021" nil
                   ("Expected an alphabetic month" 13))
                  ("3 Dec 0000" t
                   ("Four-digit years are required" 0))
                  ("3 Dec 20021" nil
                   ("Slot out of range" year 20021 1 9999))
                  ("1 Jan 2020 24:21:14" nil
                   ("Slot out of range" hour "24:21:14" 0 23))
                  ("1 Jan 2020 14:60:21" nil
                   ("Slot out of range" minute "14:60:21" 0 59))
                  ("1 Jan 2020 14:21:61" nil
                   ("Slot out of range" second "14:21:61" 0 60))))
    (should (equal (should-error
                    (ietf-drums-parse-date-string (car test) t (cadr test)))
                   (cons 'date-parse-error (caddr test)))))
  (should (equal (ietf-drums-parse-date-string
                  "1 Jan 2020 14:21:60")	;; a leap second!
                 '(60 21 14 1 1 2020 nil -1 nil))))

(provide 'ietf-drums-date-tests)

;;; ietf-drums-date-tests.el ends here

debug log:

solving 5b798077ff ...
found 5b798077ff in https://git.savannah.gnu.org/cgit/emacs.git

(*) 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://git.savannah.gnu.org/cgit/emacs.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).