kops/vendor/github.com/jonboulle/clockwork
Justin Santa Barbara 27e68d23f6 Include vendored dependencies
glide just has too many edge-cases still, sadly.
2016-07-05 00:03:07 -04:00
..
.gitignore Include vendored dependencies 2016-07-05 00:03:07 -04:00
.travis.yml Include vendored dependencies 2016-07-05 00:03:07 -04:00
LICENSE Include vendored dependencies 2016-07-05 00:03:07 -04:00
README.md Include vendored dependencies 2016-07-05 00:03:07 -04:00
clockwork.go Include vendored dependencies 2016-07-05 00:03:07 -04:00
clockwork_test.go Include vendored dependencies 2016-07-05 00:03:07 -04:00
example_test.go Include vendored dependencies 2016-07-05 00:03:07 -04:00

README.md

clockwork

Build Status godoc

a simple fake clock for golang

Usage

Replace uses of the time package with the clockwork.Clock interface instead.

For example, instead of using time.Sleep directly:

func my_func() {
	time.Sleep(3 * time.Second)
	do_something()
}

inject a clock and use its Sleep method instead:

func my_func(clock clockwork.Clock) {
	clock.Sleep(3 * time.Second)
	do_something()
}

Now you can easily test my_func with a FakeClock:

func TestMyFunc(t *testing.T) {
	c := clockwork.NewFakeClock()

	// Start our sleepy function
	my_func(c)

	// Ensure we wait until my_func is sleeping
	c.BlockUntil(1)

	assert_state()

	// Advance the FakeClock forward in time
	c.Advance(3)

	assert_state()
}

and in production builds, simply inject the real clock instead:

my_func(clockwork.NewRealClock())

See example_test.go for a full example.

Credits

clockwork is inspired by @wickman's threaded fake clock, and the [Golang playground](http://blog.golang.org/playground#Faking time)