aboutsummaryrefslogtreecommitdiffstats
path: root/tai64n/tai64n_test.go
blob: 36b0c57d6ea23879b08c4fba9fedb219a2e3f862 (plain) (blame)
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
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
 */

package tai64n

import (
	"testing"
	"time"
)

/* Testing the essential property of the timestamp
 * as used by WireGuard.
 */
func TestMonotonic(t *testing.T) {
	old := Now()
	for i := 0; i < 10000; i++ {
		time.Sleep(time.Nanosecond)
		next := Now()
		if !next.After(old) {
			t.Error("TAI64N, not monotonically increasing on nano-second scale")
		}
		old = next
	}
}