Files
wireguard-go/tai64n/tai64n_test.go
T

27 lines
473 B
Go
Raw Normal View History

2019-01-02 01:55:51 +01:00
/* SPDX-License-Identifier: MIT
2018-05-03 15:04:00 +02:00
*
2019-01-02 01:55:51 +01:00
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
2018-05-03 15:04:00 +02:00
*/
2018-02-12 22:29:11 +01:00
package tai64n
2018-02-11 22:53:39 +01:00
import (
"testing"
"time"
)
/* Testing the essential property of the timestamp
* as used by WireGuard.
*/
func TestMonotonic(t *testing.T) {
2018-02-12 22:29:11 +01:00
old := Now()
2018-02-11 22:53:39 +01:00
for i := 0; i < 10000; i++ {
time.Sleep(time.Nanosecond)
2018-02-12 22:29:11 +01:00
next := Now()
2018-02-11 22:53:39 +01:00
if !next.After(old) {
t.Error("TAI64N, not monotonically increasing on nano-second scale")
}
old = next
}
}