-
Notifications
You must be signed in to change notification settings - Fork 779
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[API Proposal]: FakeTimeProvider, option to allow going backwards #5072
Comments
@stephentoub I presume it's possible for the normal time provider's idea of current time to move backwards? And this presumably doesn't affect any outstanding timers (since they are created with relative time), and presumably wouldn't affect the value returned by GetTimestamp? |
The internal property storing the time for FakeTimeProvider is called _now and is simply a DateTimeOffset value. |
If this is for testing how your application would react to a server administrator abruptly setting the clock -- then I think the method should also support setting a future wall-clock time without affecting elapsed time. var fake = new FakeTimeProvider(new DateTimeOffset(1970, 1, 1, 0, 0, 0, TimeSpan.Zero));
long startStamp = fake.GetTimestamp();
// simulate 1 second passing
fake.Advance(TimeSpan.FromSeconds(1));
Debug.Assert(fake.GetElapsedTime(startStamp) == TimeSpan.FromSeconds(1));
// simulate 59 more seconds passing
fake.SetUtcNow(new DateTimeOffset(1970, 1, 1, 0, 1, 0, TimeSpan.Zero));
Debug.Assert(fake.GetElapsedTime(startStamp) == TimeSpan.FromMinutes(1));
// NEW: simulate an administrator setting the clock forward
// no effect on elapsed time
fake.SetUtcNow(new DateTimeOffset(1970, 1, 1, 0, 2, 0, TimeSpan.Zero), abrupt: true);
Debug.Assert(fake.GetElapsedTime(startStamp) == TimeSpan.FromMinutes(1));
// simulate 60 more seconds passing
fake.SetUtcNow(new DateTimeOffset(1970, 1, 1, 0, 3, 0, TimeSpan.Zero));
Debug.Assert(fake.GetElapsedTime(startStamp) == TimeSpan.FromMinutes(2));
// NEW: simulate an administrator setting the clock backward
// no effect on elapsed time
fake.SetUtcNow(new DateTimeOffset(1970, 1, 1, 0, 2, 50, TimeSpan.Zero), abrupt: true);
Debug.Assert(fake.GetElapsedTime(startStamp) == TimeSpan.FromMinutes(2)); |
Should be fine. If we find some place it's not, I'd consider that a bug. |
This addresses #5072 by allowing time to be adjusted forwards and backwards in order to simulate the system's clock being adjusted. Messing around with the time in this way doesn't affect outstanding timers.
This addresses #5072 by allowing time to be adjusted forwards and backwards in order to simulate the system's clock being adjusted. Messing around with the time in this way doesn't affect outstanding timers.
This addresses #5072 by allowing time to be adjusted forwards and backwards in order to simulate the system's clock being adjusted. Messing around with the time in this way doesn't affect outstanding timers. Co-authored-by: Martin Taillefer <mataille@microsoft.com>
The AdjustTime method still has an ExperimentalAttribute. Are issues in this repository usually closed before APIs are reviewed and declared stable? |
@evgenyfedorov2 We need an API review to approve the new API, so we can remove the experimental attribute, and then we can close this issue. |
I've sent a request to API Review Board for a review, so we can go out of experimental stage for that method. |
Background and motivation
I'm using reflection to get around FakeTimeProvider inability to go backwards. Would be nice if a bool could be added to allow setting time earlier.
Thanks for considering.
API Proposal
API Usage
Alternative Designs
No response
Risks
None I can think of. This new property will default to false.
The text was updated successfully, but these errors were encountered: