diff options
Diffstat (limited to 'tai64n_test.go')
-rw-r--r-- | tai64n_test.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tai64n_test.go b/tai64n_test.go new file mode 100644 index 0000000..a9e22b0 --- /dev/null +++ b/tai64n_test.go @@ -0,0 +1,21 @@ +package main + +import ( + "testing" + "time" +) + +/* Testing the essential property of the timestamp + * as used by WireGuard. + */ +func TestMonotonic(t *testing.T) { + old := TimestampNow() + for i := 0; i < 10000; i++ { + time.Sleep(time.Nanosecond) + next := TimestampNow() + if !next.After(old) { + t.Error("TAI64N, not monotonically increasing on nano-second scale") + } + old = next + } +} |