wireguard-go/tai64n/tai64n_test.go

27 lines
500 B
Go
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0
*
* Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*/
package tai64n
2018-02-11 21:53:39 +00:00
import (
"testing"
"time"
)
/* Testing the essential property of the timestamp
* as used by WireGuard.
*/
func TestMonotonic(t *testing.T) {
old := Now()
2018-02-11 21:53:39 +00:00
for i := 0; i < 10000; i++ {
time.Sleep(time.Nanosecond)
next := Now()
2018-02-11 21:53:39 +00:00
if !next.After(old) {
t.Error("TAI64N, not monotonically increasing on nano-second scale")
}
old = next
}
}