omaha_client/time/time_source.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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
// Copyright 2020 The Fuchsia Authors
//
// Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
// This file may not be copied, modified, or distributed except according to
// those terms.
use std::{
sync::{Arc, RwLock},
time::{Duration, Instant, SystemTime},
};
use super::{ComplexTime, TimeSource};
/// A default `TimeSource` implementation that uses `SystemTime::now()` and `Instant::now()` to get
/// the current times.
#[derive(Clone, Debug, Default)]
pub struct StandardTimeSource;
impl TimeSource for StandardTimeSource {
fn now_in_walltime(&self) -> SystemTime {
SystemTime::now()
}
fn now_in_monotonic(&self) -> Instant {
Instant::now()
}
fn now(&self) -> ComplexTime {
ComplexTime::from((SystemTime::now(), Instant::now()))
}
}
/// A mock `TimeSource` that can be manipulated as needed.
///
/// Meant to be used when writing tests. As `SystemTime` is partly opaque and is `Instant`
/// completely are opaque, it needs to be initially constructed from a real source of those objects.
///
/// # Example
/// ```
/// use omaha_client::time::MockTimeSource;
/// let mock_source = MockTimeSource::new_from_now();
/// ```
///
/// The MockTimeSource uses `Clone`-able interior mutability to allow it to be manipulated and used
/// concurrently.
#[derive(Clone, Debug)]
pub struct MockTimeSource {
time: Arc<RwLock<ComplexTime>>,
}
impl TimeSource for MockTimeSource {
fn now_in_walltime(&self) -> SystemTime {
self.time.read().unwrap().wall
}
fn now_in_monotonic(&self) -> Instant {
self.time.read().unwrap().mono
}
fn now(&self) -> ComplexTime {
*(self.time.read().unwrap())
}
}
impl MockTimeSource {
/// Create a new `MockTimeSource` from a `ComplexTime` to be it's initial time.
///
/// # Example
/// ```
/// use omaha_client::time::{ComplexTime, MockTimeSource, TimeSource};
/// use std::time::{Duration, Instant, SystemTime};
/// let mut mock_source = MockTimeSource::new_from_now();
/// mock_source.advance(Duration::from_secs(3600));
/// let next_time = mock_source.now();
/// ```
pub fn new(t: impl Into<ComplexTime>) -> Self {
MockTimeSource {
time: Arc::new(RwLock::new(t.into())),
}
}
/// Create a new `MockTimeSource`, initialized to the values from `SystemTime` and `Instant`
pub fn new_from_now() -> Self {
Self::new(StandardTimeSource.now())
}
/// Advance the mock time source forward (e.g. during a test)
///
/// If the `MockTimeSource` has been Cloned, this will advance both.
///
/// # Example
/// ```
/// use omaha_client::time::{ComplexTime, MockTimeSource, TimeSource};
/// use std::time::{Duration, Instant, SystemTime};
/// let mut one_mock_source = MockTimeSource::new_from_now();
/// let initial_time: ComplexTime = one_mock_source.now();
/// let two_mock_source = one_mock_source.clone();
///
/// let one_hour = Duration::from_secs(3600);
/// one_mock_source.advance(one_hour);
/// let later_time = one_mock_source.now();
///
/// assert_eq!(one_mock_source.now(), two_mock_source.now());
/// assert_eq!(one_mock_source.now(), initial_time + one_hour);
/// assert_eq!(two_mock_source.now(), initial_time + one_hour);
/// ```
///
/// This method uses a mutable reference for `self` for clarity. The interior mutability of the
/// time does not require it.
pub fn advance(&mut self, duration: Duration) {
let mut borrowed_time = self.time.write().unwrap();
*borrowed_time += duration;
}
/// Truncate the submicrosecond part of the walltime in mock time source.
/// This is useful for tests that involves storing time in storage, which will lose
/// submicrosecond precision.
pub fn truncate_submicrosecond_walltime(&mut self) {
let mut borrowed_time = self.time.write().unwrap();
*borrowed_time = borrowed_time.truncate_submicrosecond_walltime();
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_impl_time_source_for_mock_time_source() {
let time = StandardTimeSource.now();
let mock_source = MockTimeSource::new(time);
assert_eq!(mock_source.now(), time);
assert_eq!(mock_source.now_in_walltime(), time.wall);
assert_eq!(mock_source.now_in_monotonic(), time.mono);
}
/// Test that the MockTimeSource doesn't move on it's own.
#[test]
fn test_mock_timesource_doesnt_advance_on_its_own() {
let source = MockTimeSource::new_from_now();
let now = source.now();
std::thread::sleep(Duration::from_millis(100));
let same_as_now = source.now();
assert_eq!(same_as_now, now);
}
/// Test that the mock timesource will advance in the expected way when it's asked to.
#[test]
fn test_mock_timesource_will_advance() {
let mut source = MockTimeSource::new_from_now();
let now = source.now();
let duration = Duration::from_secs(60);
source.advance(duration);
let later = source.now();
let expected = now + duration;
assert_eq!(later, expected);
}
#[test]
fn test_cloned_mock_time_source_also_advances() {
let mut one_mock_source = MockTimeSource::new_from_now();
let initial_time = one_mock_source.now();
let two_mock_source = one_mock_source.clone();
let one_hour = Duration::from_secs(3600);
one_mock_source.advance(one_hour);
let later_time = one_mock_source.now();
assert_eq!(later_time, initial_time + one_hour);
assert_eq!(two_mock_source.now(), initial_time + one_hour);
}
}