unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob fa7d547c5ab6a9b0b479d57665ae988dc82493eb 3552 bytes (raw)
name: test/T490-parse-time-string.sh 	 # 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
 
#!/usr/bin/env bash
test_description="date/time parser module"
. $(dirname "$0")/test-lib.sh || exit 1

if [[ -n ${NOTMUCH_TEST_INSTALLED} ]]; then
    test_done
fi

# Sanity/smoke tests for the date/time parser independent of notmuch

_date () {
    date -d "$*" +%s
}

_parse_time () {
    ${TEST_DIRECTORY}/parse-time --format=%s "$*"
}

test_begin_subtest "date(1) default format without TZ code"
test_expect_equal "$(_parse_time Fri Aug 3 23:06:06 2012)" "$(_date Fri Aug 3 23:06:06 2012)"

test_begin_subtest "date(1) --rfc-2822 format"
test_expect_equal "$(_parse_time Fri, 03 Aug 2012 23:07:46 +0100)" "$(_date Fri, 03 Aug 2012 23:07:46 +0100)"

test_begin_subtest "date(1) --rfc=3339=seconds format"
test_expect_equal "$(_parse_time 2012-08-03 23:09:37+03:00)" "$(_date 2012-08-03 23:09:37+03:00)"

test_begin_subtest "Date parser tests"
REFERENCE=$(_date Tue Jan 11 12:13:14 +0000 2011)
cat <<EOF > INPUT
now          ==> Tue Jan 11 12:13:14 +0000 2011
2010-1-1     ==> ERROR: DATEFORMAT
Jan 2        ==> Sun Jan 02 12:13:14 +0000 2011
Mon          ==> Mon Jan 10 12:13:14 +0000 2011
last Friday  ==> ERROR: FORMAT
2 hours ago  ==> Tue Jan 11 10:13:14 +0000 2011
last month   ==> Sat Dec 11 12:13:14 +0000 2010
month ago    ==> Sat Dec 11 12:13:14 +0000 2010
two mo       ==> Thu Nov 11 12:13:14 +0000 2010
3M           ==> Mon Oct 11 12:13:14 +0000 2010
4-mont       ==> Sat Sep 11 12:13:14 +0000 2010
5m           ==> Tue Jan 11 12:08:14 +0000 2011
dozen mi     ==> Tue Jan 11 12:01:14 +0000 2011
8am          ==> Tue Jan 11 08:00:00 +0000 2011
monday       ==> Mon Jan 10 12:13:14 +0000 2011
yesterday    ==> Mon Jan 10 12:13:14 +0000 2011
tomorrow     ==> ERROR: KEYWORD
             ==> Tue Jan 11 12:13:14 +0000 2011 # empty string is reference time

Aug 3 23:06:06 2012             ==> Fri Aug 03 23:06:06 +0000 2012 # date(1) default format without TZ code
Fri, 03 Aug 2012 23:07:46 +0100 ==> Fri Aug 03 22:07:46 +0000 2012 # rfc-2822
2012-08-03 23:09:37+03:00       ==> Fri Aug 03 20:09:37 +0000 2012 # rfc-3339 seconds

10:30:40     ==> Tue Jan 11 10:30:40 +0000 2011
10:30:40     ==^> Tue Jan 11 10:30:40 +0000 2011
10:30:40     ==^^> Tue Jan 11 10:30:40 +0000 2011
10:30:40     ==_> Tue Jan 11 10:30:40 +0000 2011

10s           ==> Tue Jan 11 12:13:04 +0000 2011
19701223s     ==> Fri May 28 11:39:31 +0000 2010
19701223      ==> Wed Dec 23 12:13:14 +0000 1970

19701223 +0100 ==> Wed Dec 23 12:13:14 +0000 1970 # Timezone is ignored without an error

today ==^^> Wed Jan 12 00:00:00 +0000 2011
today ==^> Tue Jan 11 23:59:59 +0000 2011
today ==_> Tue Jan 11 00:00:00 +0000 2011

this week ==^^> Sun Jan 16 00:00:00 +0000 2011
this week ==^> Sat Jan 15 23:59:59 +0000 2011
this week ==_> Sun Jan 09 00:00:00 +0000 2011

two months ago ==> Thu Nov 11 12:13:14 +0000 2010
two months ==> Thu Nov 11 12:13:14 +0000 2010

@1348569850 ==> Tue Sep 25 10:44:10 +0000 2012
@10 ==> Thu Jan 01 00:00:10 +0000 1970
EOF

${TEST_DIRECTORY}/parse-time --ref=${REFERENCE} < INPUT > OUTPUT
test_expect_equal_file INPUT OUTPUT

test_begin_subtest "Second rounding tests"
REFERENCE=$(_date Tue Jan 11 12:13:14 +0000 2011)
cat <<EOF > INPUT
9:15         ==> Tue Jan 11 09:15:14 +0000 2011
12:34        ==> Tue Jan 11 12:34:14 +0000 2011
10:30        ==> Tue Jan 11 10:30:14 +0000 2011
10:30        ==^> Tue Jan 11 10:30:59 +0000 2011
10:30        ==^^> Tue Jan 11 10:31:00 +0000 2011
10:30        ==_> Tue Jan 11 10:30:00 +0000 2011
EOF
${TEST_DIRECTORY}/parse-time --ref=${REFERENCE} < INPUT > OUTPUT
test_expect_equal_file INPUT OUTPUT

test_done

debug log:

solving fa7d547c ...
found fa7d547c in https://yhetil.org/notmuch/20211025145753.3031094-2-david@tethera.net/ ||
	https://yhetil.org/notmuch/20230104124145.2882983-4-david@tethera.net/ ||
	https://yhetil.org/notmuch/20230409142627.2216080-5-david@tethera.net/
found f89755ed in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100755 f89755ed0e42cfe7d87040f85410e77b8002adfd	test/T490-parse-time-string.sh

applying [1/1] https://yhetil.org/notmuch/20211025145753.3031094-2-david@tethera.net/
diff --git a/test/T490-parse-time-string.sh b/test/T490-parse-time-string.sh
index f89755ed..fa7d547c 100755

Checking patch test/T490-parse-time-string.sh...
Applied patch test/T490-parse-time-string.sh cleanly.

skipping https://yhetil.org/notmuch/20230104124145.2882983-4-david@tethera.net/ for fa7d547c
skipping https://yhetil.org/notmuch/20230409142627.2216080-5-david@tethera.net/ for fa7d547c
index at:
100755 fa7d547c5ab6a9b0b479d57665ae988dc82493eb	test/T490-parse-time-string.sh

(*) 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).