-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.rs
140 lines (134 loc) · 4.61 KB
/
tests.rs
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
#[cfg(test)]
mod tests {
use crate::time_ago::{Config, TimeAgo};
use std::time::{Duration, Instant, SystemTime};
#[test]
fn test_time_ago_with_config() {
let config = Config {
is_years: false,
is_weeks: false,
is_months: false,
};
let custom = Config {
is_years: true,
is_weeks: true,
is_months: true,
};
let a = TimeAgo::with_config(config, SystemTime::now());
assert_eq!(a.convert(), "just now");
let b = TimeAgo::with_config(config, Duration::from_secs(1));
assert_eq!(b.convert(), "just now");
let c = TimeAgo::with_config(config, Instant::now());
assert_eq!(c.convert(), "just now");
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(5)).convert(),
"5 seconds ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(60)).convert(),
"1 minute ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(120)).convert(),
"2 minutes ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(60 * 60)).convert(),
"1 hour ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(60 * 60 * 2)).convert(),
"2 hours ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(60 * 60 * 23)).convert(),
"23 hours ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(60 * 60 * 24)).convert(),
"1 day ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(60 * 60 * 24 * 7)).convert(),
"1 week ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(60 * 60 * 24 * 7 * 3)).convert(),
"3 weeks ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs((60 * 60 * 24 * 7 * 4) - 1)).convert(),
"3 weeks ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(60 * 60 * 24 * 30)).convert(),
"1 month ago"
);
assert_eq!(
TimeAgo::with_config(custom, Duration::from_secs(60 * 60 * 24 * 30 * 2)).convert(),
"2 months ago"
);
assert_eq!(
TimeAgo::with_config(
custom,
Duration::from_secs(60 * 60 * 24 * 30 * 12) // duration calculates 365.25* 60 * 60 * 24 for an year
)
.convert(),
"11 months ago"
);
assert_eq!(
TimeAgo::with_config(
custom,
Duration::from_secs(60 * 60 * 24 * 366) // duration calculates 365.25* 60 * 60 * 24 for an year
)
.convert(),
"1 year ago"
);
assert_eq!(
TimeAgo::with_config(
custom,
Duration::from_secs((60.0 * 60.0 * 24.0 * 365.25 * 2.0) as u64 - 1) // duration calculates 365.25* 60 * 60 * 24 for an year
)
.convert(),
"1 year ago"
);
assert_eq!(
TimeAgo::with_config(
custom,
Duration::from_secs((60.0 * 60.0 * 24.0 * 365.25 * 2.0) as u64) // duration calculates 365.25* 60 * 60 * 24 for an year
)
.convert(),
"2 years ago"
);
assert_eq!(
TimeAgo::with_config(
custom,
Duration::from_secs((60.0 * 60.0 * 24.0 * 365.25 * 51.0) as u64) // duration calculates 365.25* 60 * 60 * 24 for an year
)
.convert(),
"51 years ago"
);
assert_eq!(
TimeAgo::with_config(
custom,
Duration::from_secs((60.0 * 60.0 * 24.0 * 365.25 * 100.0) as u64) // duration calculates 365.25* 60 * 60 * 24 for an year
)
.convert(),
"invalid string"
);
// assert_eq!(
// TimeAgo::with_config(
// Config{
// is_months: false,
// is_weeks: false,
// is_years: false
// },
// Duration::from_secs(
// (60.0 * 60.0 * 24.0 * 365.25 * 50.0) as u64
// ) // duration calculates 365.25* 60 * 60 * 24 for an year
// )
// .convert(),
// "Nov 1970 at 17:07:20"
// );
}
}