]> Cypherpunks.ru repositories - gotai64n.git/blob - tai64n_test.go
Unify copyright comment format
[gotai64n.git] / tai64n_test.go
1 // go.cypherpunks.ru/tai64n -- Pure Go TAI64/TAI64N implementation
2 // Copyright (C) 2020-2024 Sergey Matveev <stargrave@stargrave.org>
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, version 3 of the License.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 package tai64n
17
18 import (
19         "testing"
20         "time"
21 )
22
23 func TestVector(t *testing.T) {
24         tm, err := Decode("400000002a2b2c2d")
25         if err != nil {
26                 t.Fatal(err)
27         }
28
29         ref := time.Date(1992, 6, 2, 8, 7, 9, 0, time.UTC).Add(-Leapsecs1972 * time.Second)
30         if !tm.Equal(ref) {
31                 t.Fatal("TAI64 != reference")
32         }
33
34         tm = LeapsecsSub(tm)
35         ref = time.Date(1992, 6, 2, 8, 6, 43, 0, time.UTC)
36         if !tm.Equal(ref) {
37                 t.Fatal("UTC != reference")
38         }
39 }
40
41 func BenchmarkTAI64(b *testing.B) {
42         now := time.Now()
43         now = time.Unix(now.Unix(), 0)
44         tai := new(TAI64)
45         b.ResetTimer()
46         for i := 0; i < b.N; i++ {
47                 tai.FromTime(now)
48                 if !ToTime(tai[:]).Equal(now) {
49                         b.FailNow()
50                 }
51         }
52 }
53
54 func BenchmarkTAI64N(b *testing.B) {
55         now := time.Now()
56         now = time.Unix(now.Unix(), now.UnixNano())
57         tai := new(TAI64N)
58         b.ResetTimer()
59         for i := 0; i < b.N; i++ {
60                 tai.FromTime(now)
61                 if !ToTime(tai[:]).Equal(now) {
62                         b.FailNow()
63                 }
64         }
65 }