Skip to content

Commit d1cf0e9

Browse files
committed
Add test for issue 651
1 parent 0ef34e4 commit d1cf0e9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/datetime/tests.rs

+12
Original file line numberDiff line numberDiff line change
@@ -1264,6 +1264,18 @@ fn test_datetime_from_timestamp_millis() {
12641264
);
12651265
}
12661266

1267+
#[test]
1268+
#[cfg(feature = "clock")]
1269+
fn test_datetime_before_windows_api_limits() {
1270+
// dt corresponds to `FILETIME = 147221225472` from issue 651.
1271+
// (https://github.com/chronotope/chrono/issues/651)
1272+
// This used to fail on Windows for timezones with an offset of -5:00 or greater.
1273+
// The API limits years to 1601..=30827.
1274+
let dt = NaiveDate::from_ymd_opt(1601, 1, 1).unwrap().and_hms_milli_opt(4, 5, 22, 122).unwrap();
1275+
let local_dt = Local.from_utc_datetime(&dt);
1276+
dbg!(local_dt);
1277+
}
1278+
12671279
#[test]
12681280
#[cfg(feature = "clock")]
12691281
fn test_years_elapsed() {

0 commit comments

Comments
 (0)