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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
|
/*
Copyright 2015 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package testing
import (
"testing"
"time"
"k8s.io/utils/clock"
)
type SettablePassiveClock interface {
clock.PassiveClock
SetTime(time.Time)
}
func exercisePassiveClock(t *testing.T, pc SettablePassiveClock) {
t1 := time.Now()
t2 := t1.Add(time.Hour)
pc.SetTime(t1)
tx := pc.Now()
if tx != t1 {
t.Errorf("SetTime(%#+v); Now() => %#+v", t1, tx)
}
dx := pc.Since(t1)
if dx != 0 {
t.Errorf("Since() => %v", dx)
}
pc.SetTime(t2)
dx = pc.Since(t1)
if dx != time.Hour {
t.Errorf("Since() => %v", dx)
}
tx = pc.Now()
if tx != t2 {
t.Errorf("Now() => %#+v", tx)
}
}
func TestFakePassiveClock(t *testing.T) {
startTime := time.Now()
tc := NewFakePassiveClock(startTime)
exercisePassiveClock(t, tc)
}
func TestFakeClock(t *testing.T) {
startTime := time.Now()
tc := NewFakeClock(startTime)
exercisePassiveClock(t, tc)
tc.SetTime(startTime)
tc.Step(time.Second)
now := tc.Now()
if now.Sub(startTime) != time.Second {
t.Errorf("input: %s now=%s gap=%s expected=%s", startTime, now, now.Sub(startTime), time.Second)
}
}
func TestFakeClockSleep(t *testing.T) {
startTime := time.Now()
tc := NewFakeClock(startTime)
tc.Sleep(time.Duration(1) * time.Hour)
now := tc.Now()
if now.Sub(startTime) != time.Hour {
t.Errorf("Fake sleep failed, expected time to advance by one hour, instead, its %v", now.Sub(startTime))
}
}
func TestFakeAfter(t *testing.T) {
tc := NewFakeClock(time.Now())
if tc.HasWaiters() {
t.Errorf("unexpected waiter?")
}
oneSec := tc.After(time.Second)
if !tc.HasWaiters() {
t.Errorf("unexpected lack of waiter?")
}
oneOhOneSec := tc.After(time.Second + time.Millisecond)
twoSec := tc.After(2 * time.Second)
select {
case <-oneSec:
t.Errorf("unexpected channel read")
case <-oneOhOneSec:
t.Errorf("unexpected channel read")
case <-twoSec:
t.Errorf("unexpected channel read")
default:
}
tc.Step(999 * time.Millisecond)
select {
case <-oneSec:
t.Errorf("unexpected channel read")
case <-oneOhOneSec:
t.Errorf("unexpected channel read")
case <-twoSec:
t.Errorf("unexpected channel read")
default:
}
tc.Step(time.Millisecond)
select {
case <-oneSec:
// Expected!
case <-oneOhOneSec:
t.Errorf("unexpected channel read")
case <-twoSec:
t.Errorf("unexpected channel read")
default:
t.Errorf("unexpected non-channel read")
}
tc.Step(time.Millisecond)
select {
case <-oneSec:
// should not double-trigger!
t.Errorf("unexpected channel read")
case <-oneOhOneSec:
// Expected!
case <-twoSec:
t.Errorf("unexpected channel read")
default:
t.Errorf("unexpected non-channel read")
}
}
func TestFakeAfterFunc(t *testing.T) {
tc := NewFakeClock(time.Now())
if tc.HasWaiters() {
t.Errorf("unexpected waiter?")
}
expectOneSecTimerFire := false
oneSecTimerFire := 0
tc.AfterFunc(time.Second, func() {
if !expectOneSecTimerFire {
t.Errorf("oneSecTimer func fired")
} else {
oneSecTimerFire++
}
})
if !tc.HasWaiters() {
t.Errorf("unexpected lack of waiter?")
}
expectOneOhOneSecTimerFire := false
oneOhOneSecTimerFire := 0
tc.AfterFunc(time.Second+time.Millisecond, func() {
if !expectOneOhOneSecTimerFire {
t.Errorf("oneOhOneSecTimer func fired")
} else {
oneOhOneSecTimerFire++
}
})
expectTwoSecTimerFire := false
twoSecTimerFire := 0
twoSecTimer := tc.AfterFunc(2*time.Second, func() {
if !expectTwoSecTimerFire {
t.Errorf("twoSecTimer func fired")
} else {
twoSecTimerFire++
}
})
tc.Step(999 * time.Millisecond)
expectOneSecTimerFire = true
tc.Step(time.Millisecond)
if oneSecTimerFire != 1 {
t.Errorf("expected oneSecTimerFire=1, got %d", oneSecTimerFire)
}
expectOneSecTimerFire = false
expectOneOhOneSecTimerFire = true
tc.Step(time.Millisecond)
if oneOhOneSecTimerFire != 1 {
// should not double-trigger!
t.Errorf("expected oneOhOneSecTimerFire=1, got %d", oneOhOneSecTimerFire)
}
expectOneOhOneSecTimerFire = false
// ensure a canceled timer doesn't fire
twoSecTimer.Stop()
tc.Step(time.Second)
}
func TestFakeTick(t *testing.T) {
tc := NewFakeClock(time.Now())
if tc.HasWaiters() {
t.Errorf("unexpected waiter?")
}
oneSec := tc.Tick(time.Second)
if !tc.HasWaiters() {
t.Errorf("unexpected lack of waiter?")
}
oneOhOneSec := tc.Tick(time.Second + time.Millisecond)
twoSec := tc.Tick(2 * time.Second)
select {
case <-oneSec:
t.Errorf("unexpected channel read")
case <-oneOhOneSec:
t.Errorf("unexpected channel read")
case <-twoSec:
t.Errorf("unexpected channel read")
default:
}
tc.Step(999 * time.Millisecond) // t=.999
select {
case <-oneSec:
t.Errorf("unexpected channel read")
case <-oneOhOneSec:
t.Errorf("unexpected channel read")
case <-twoSec:
t.Errorf("unexpected channel read")
default:
}
tc.Step(time.Millisecond) // t=1.000
select {
case <-oneSec:
// Expected!
case <-oneOhOneSec:
t.Errorf("unexpected channel read")
case <-twoSec:
t.Errorf("unexpected channel read")
default:
t.Errorf("unexpected non-channel read")
}
tc.Step(time.Millisecond) // t=1.001
select {
case <-oneSec:
// should not double-trigger!
t.Errorf("unexpected channel read")
case <-oneOhOneSec:
// Expected!
case <-twoSec:
t.Errorf("unexpected channel read")
default:
t.Errorf("unexpected non-channel read")
}
tc.Step(time.Second) // t=2.001
tc.Step(time.Second) // t=3.001
tc.Step(time.Second) // t=4.001
tc.Step(time.Second) // t=5.001
// The one second ticker should not accumulate ticks
accumulatedTicks := 0
drained := false
for !drained {
select {
case <-oneSec:
accumulatedTicks++
default:
drained = true
}
}
if accumulatedTicks != 1 {
t.Errorf("unexpected number of accumulated ticks: %d", accumulatedTicks)
}
}
func TestFakeStop(t *testing.T) {
tc := NewFakeClock(time.Now())
timer := tc.NewTimer(time.Second)
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
if !timer.Stop() {
t.Errorf("stop should return true as we are stopping an unexpired timer")
}
if tc.HasWaiters() {
t.Errorf("expected existing waiter to be cleaned up, but it is still present")
}
if timer.Stop() {
t.Errorf("stop should return false as the timer has already been stopped")
}
}
// This tests the pattern documented in the go docs here: https://golang.org/pkg/time/#Timer.Stop
// This pattern is required to safely reset a timer prior to Go 1.23, so should be common.
// This also tests resetting the timer
func TestFakeStopDrain(t *testing.T) {
start := time.Time{}
tc := NewFakeClock(start)
timer := tc.NewTimer(time.Second)
tc.Step(1 * time.Second)
// Effectively `if !timer.Stop { <-t.C }` but with more asserts
if timer.Stop() {
t.Errorf("stop should report the timer had triggered")
}
if readTime := assertReadTime(t, timer.C()); !readTime.Equal(start.Add(1 * time.Second)) {
t.Errorf("timer should have ticked after 1 second, got %v", readTime)
}
if timer.Reset(time.Second) {
t.Errorf("reset should return false as the timer had expired")
}
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
select {
case <-timer.C():
t.Fatal("got time early on clock; haven't stepped yet")
default:
}
tc.Step(1 * time.Second)
if readTime := assertReadTime(t, timer.C()); !readTime.Equal(start.Add(2 * time.Second)) {
t.Errorf("timer should have ticked again after reset + 1 more second, got %v", readTime)
}
}
func TestFakeReset(t *testing.T) {
start := time.Now()
t.Run("reset active timer", func(t *testing.T) {
tc := NewFakeClock(start)
timer := tc.NewTimer(time.Second)
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
tc.Step(999 * time.Millisecond)
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
if !timer.Reset(time.Second) {
t.Errorf("reset should return true as the timer is active")
}
tc.Step(time.Millisecond)
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
tc.Step(999 * time.Millisecond)
if tc.HasWaiters() {
t.Errorf("expected existing waiter to be cleaned up, but it is still present")
}
if readTime := assertReadTime(t, timer.C()); !readTime.Equal(start.Add(1999 * time.Millisecond)) {
t.Errorf("timer should have ticked after reset + 1 second, got %v", readTime)
}
})
t.Run("reset expired timer", func(t *testing.T) {
tc := NewFakeClock(start)
timer := tc.NewTimer(time.Second)
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
tc.Step(time.Second)
if tc.HasWaiters() {
t.Errorf("expected existing waiter to be cleaned up, but it is still present")
}
if readTime := assertReadTime(t, timer.C()); !readTime.Equal(start.Add(time.Second)) {
t.Errorf("timer should have ticked after 1 second, got %v", readTime)
}
if timer.Reset(time.Second) {
t.Errorf("reset should return false as the timer had expired")
}
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
tc.Step(time.Second)
if readTime := assertReadTime(t, timer.C()); !readTime.Equal(start.Add(2 * time.Second)) {
t.Errorf("timer should have ticked again after reset + 1 more second, got %v", readTime)
}
})
t.Run("reset stopped timer", func(t *testing.T) {
tc := NewFakeClock(start)
timer := tc.NewTimer(time.Second)
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
timer.Stop()
if timer.Reset(time.Second) {
t.Errorf("reset should return false as the timer had been stopped")
}
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
tc.Step(time.Second)
if readTime := assertReadTime(t, timer.C()); !readTime.Equal(start.Add(time.Second)) {
t.Errorf("timer should have ticked after reset + 1 second, got %v", readTime)
}
})
}
func TestTimerNegative(t *testing.T) {
tc := NewFakeClock(time.Now())
timer := tc.NewTimer(-1 * time.Second)
if !tc.HasWaiters() {
t.Errorf("expected a waiter to be present, but it is not")
}
// force waiters to be called
tc.Step(0)
tick := assertReadTime(t, timer.C())
if tick != tc.Now() {
t.Errorf("expected -1s to turn into now: %v != %v", tick, tc.Now())
}
}
func TestTickNegative(t *testing.T) {
// The stdlib 'Tick' returns nil for negative and zero values, so our fake
// should too.
tc := NewFakeClock(time.Now())
if tick := tc.Tick(-1 * time.Second); tick != nil {
t.Errorf("expected negative tick to be nil: %v", tick)
}
if tick := tc.Tick(0); tick != nil {
t.Errorf("expected negative tick to be nil: %v", tick)
}
}
// assertReadTime asserts that the channel can be read and returns the time it
// reads from the channel.
func assertReadTime(t testing.TB, c <-chan time.Time) time.Time {
type helper interface {
Helper()
}
if h, ok := t.(helper); ok {
h.Helper()
}
select {
case ti, ok := <-c:
if !ok {
t.Fatalf("expected to read time from channel, but it was closed")
}
return ti
default:
t.Fatalf("expected to read time from channel, but couldn't")
}
panic("unreachable")
}
func TestFakeClockWaiters(t *testing.T) {
startTime := time.Now()
tc := NewFakeClock(startTime)
// Initial state
if count := tc.Waiters(); count != 0 {
t.Errorf("Expected 0 waiters initially, got %d", count)
}
// Add a Timer
timer1 := tc.NewTimer(1 * time.Second)
if count := tc.Waiters(); count != 1 {
t.Errorf("Expected 1 waiter after NewTimer, got %d", count)
}
// Add an After
_ = tc.After(2 * time.Second)
if count := tc.Waiters(); count != 2 {
t.Errorf("Expected 2 waiters after After, got %d", count)
}
// Add a Ticker
ticker := tc.NewTicker(3 * time.Second)
if count := tc.Waiters(); count != 3 {
t.Errorf("Expected 3 waiters after NewTicker, got %d", count)
}
// Step past the first timer
tc.Step(1 * time.Second)
<-timer1.C() // Drain channel
if count := tc.Waiters(); count != 2 {
t.Errorf("Expected 2 waiters after first timer fired, got %d", count)
}
// Step past the After
tc.Step(1 * time.Second)
// Note: After channel is implicitly drained by setTimeLocked
if count := tc.Waiters(); count != 1 {
t.Errorf("Expected 1 waiter after After fired, got %d", count)
}
// Step past the Ticker (it should re-arm)
tc.Step(1 * time.Second)
<-ticker.C() // Drain channel
if count := tc.Waiters(); count != 1 {
t.Errorf("Expected 1 waiter after Ticker fired (should re-arm), got %d", count)
}
// Stop the ticker (Note: fakeTicker.Stop is currently a no-op, so this won't change the count)
// If fakeTicker.Stop were implemented to remove the waiter, the expected count would be 0.
ticker.Stop()
if count := tc.Waiters(); count != 1 {
t.Errorf("Expected 1 waiter after stopping ticker (no-op), got %d", count)
}
// Add another timer and stop it
timer2 := tc.NewTimer(5 * time.Second)
if count := tc.Waiters(); count != 2 {
t.Errorf("Expected 2 waiters after adding second timer, got %d", count)
}
if stopped := timer2.Stop(); !stopped {
t.Errorf("Expected timer2.Stop() to return true")
}
if count := tc.Waiters(); count != 1 {
t.Errorf("Expected 1 waiter after stopping second timer, got %d", count)
}
}
|