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
#![forbid(unsafe_code)]
use std::error;
use std::fmt::{self, Display, Formatter};
use std::io;
use std::time::SystemTime;
pub use date::HttpDate;
mod date;
#[derive(Debug)]
pub struct Error(());
impl error::Error for Error {}
impl Display for Error {
fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
f.write_str("string contains no or an invalid date")
}
}
impl From<Error> for io::Error {
fn from(e: Error) -> io::Error {
io::Error::new(io::ErrorKind::Other, e)
}
}
pub fn parse_http_date(s: &str) -> Result<SystemTime, Error> {
s.parse::<HttpDate>().map(|d| d.into())
}
pub fn fmt_http_date(d: SystemTime) -> String {
format!("{}", HttpDate::from(d))
}
#[cfg(test)]
mod tests {
use std::str;
use std::time::{Duration, UNIX_EPOCH};
use super::{fmt_http_date, parse_http_date, HttpDate};
#[test]
fn test_rfc_example() {
let d = UNIX_EPOCH + Duration::from_secs(784111777);
assert_eq!(
d,
parse_http_date("Sun, 06 Nov 1994 08:49:37 GMT").expect("#1")
);
assert_eq!(
d,
parse_http_date("Sunday, 06-Nov-94 08:49:37 GMT").expect("#2")
);
assert_eq!(d, parse_http_date("Sun Nov 6 08:49:37 1994").expect("#3"));
}
#[test]
fn test2() {
let d = UNIX_EPOCH + Duration::from_secs(1475419451);
assert_eq!(
d,
parse_http_date("Sun, 02 Oct 2016 14:44:11 GMT").expect("#1")
);
assert!(parse_http_date("Sun Nov 10 08:00:00 1000").is_err());
assert!(parse_http_date("Sun Nov 10 08*00:00 2000").is_err());
assert!(parse_http_date("Sunday, 06-Nov-94 08+49:37 GMT").is_err());
}
#[test]
fn test3() {
let mut d = UNIX_EPOCH;
assert_eq!(d, parse_http_date("Thu, 01 Jan 1970 00:00:00 GMT").unwrap());
d += Duration::from_secs(3600);
assert_eq!(d, parse_http_date("Thu, 01 Jan 1970 01:00:00 GMT").unwrap());
d += Duration::from_secs(86400);
assert_eq!(d, parse_http_date("Fri, 02 Jan 1970 01:00:00 GMT").unwrap());
d += Duration::from_secs(2592000);
assert_eq!(d, parse_http_date("Sun, 01 Feb 1970 01:00:00 GMT").unwrap());
d += Duration::from_secs(2592000);
assert_eq!(d, parse_http_date("Tue, 03 Mar 1970 01:00:00 GMT").unwrap());
d += Duration::from_secs(31536005);
assert_eq!(d, parse_http_date("Wed, 03 Mar 1971 01:00:05 GMT").unwrap());
d += Duration::from_secs(15552000);
assert_eq!(d, parse_http_date("Mon, 30 Aug 1971 01:00:05 GMT").unwrap());
d += Duration::from_secs(6048000);
assert_eq!(d, parse_http_date("Mon, 08 Nov 1971 01:00:05 GMT").unwrap());
d += Duration::from_secs(864000000);
assert_eq!(d, parse_http_date("Fri, 26 Mar 1999 01:00:05 GMT").unwrap());
}
#[test]
fn test_fmt() {
let d = UNIX_EPOCH;
assert_eq!(fmt_http_date(d), "Thu, 01 Jan 1970 00:00:00 GMT");
let d = UNIX_EPOCH + Duration::from_secs(1475419451);
assert_eq!(fmt_http_date(d), "Sun, 02 Oct 2016 14:44:11 GMT");
}
#[allow(dead_code)]
fn testcase(data: &[u8]) {
if let Ok(s) = str::from_utf8(data) {
println!("{:?}", s);
if let Ok(d) = parse_http_date(s) {
let o = fmt_http_date(d);
assert!(!o.is_empty());
}
}
}
#[test]
fn size_of() {
assert_eq!(::std::mem::size_of::<HttpDate>(), 8);
}
#[test]
fn test_date_comparison() {
let a = UNIX_EPOCH + Duration::from_secs(784111777);
let b = a + Duration::from_secs(30);
assert!(a < b);
let a_date: HttpDate = a.into();
let b_date: HttpDate = b.into();
assert!(a_date < b_date);
assert_eq!(a_date.cmp(&b_date), ::std::cmp::Ordering::Less)
}
#[test]
fn test_parse_bad_date() {
let parsed = "Sun, 07 Nov 1994 08:48:37 GMT".parse::<HttpDate>();
assert!(parsed.is_err())
}
}