use crate::MAX_TIMESTAMP_DELTA_IN_SECS;
use snarkvm::prelude::{Result, bail};
use time::OffsetDateTime;
pub fn now() -> i64 {
OffsetDateTime::now_utc().unix_timestamp()
}
pub fn now_utc() -> OffsetDateTime {
OffsetDateTime::now_utc()
}
pub fn to_utc_datetime(timestamp: i64) -> OffsetDateTime {
OffsetDateTime::from_unix_timestamp(timestamp).unwrap_or_else(|_| OffsetDateTime::now_utc())
}
pub fn check_timestamp_for_liveness(timestamp: i64) -> Result<()> {
if timestamp > (now() + MAX_TIMESTAMP_DELTA_IN_SECS) {
bail!("Timestamp {timestamp} is too far in the future")
}
Ok(())
}
#[cfg(test)]
mod prop_tests {
use super::*;
use crate::MAX_TIMESTAMP_DELTA_IN_SECS;
use proptest::prelude::*;
use test_strategy::proptest;
fn any_valid_timestamp() -> BoxedStrategy<i64> {
(Just(now()), 0..MAX_TIMESTAMP_DELTA_IN_SECS).prop_map(|(now, delta)| now + delta).boxed()
}
fn any_invalid_timestamp() -> BoxedStrategy<i64> {
(Just(now()), MAX_TIMESTAMP_DELTA_IN_SECS..).prop_map(|(now, delta)| now + delta).boxed()
}
#[proptest]
fn test_check_timestamp_for_liveness(#[strategy(any_valid_timestamp())] timestamp: i64) {
check_timestamp_for_liveness(timestamp).unwrap();
}
#[proptest]
fn test_check_timestamp_for_liveness_too_far_in_future(#[strategy(any_invalid_timestamp())] timestamp: i64) {
assert!(check_timestamp_for_liveness(timestamp).is_err());
}
}