-
Notifications
You must be signed in to change notification settings - Fork 118
/
datetime_test.go
70 lines (61 loc) · 1.9 KB
/
datetime_test.go
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//go:build darwin && !ios
// +build darwin,!ios
package keychain
import (
"testing"
"time"
)
// Test time is 2018-09-13T06:08:49+00:00
const (
// Number of seconds between the test time and the Unix epoch
// (1970-01-01T00:00:00+00:00).
testTimeUnixSeconds = 1536818929
// Number of seconds between the test time and
// Core Foundation's absolute reference date
// (2001-01-01T00:00:00+00:00). See
// https://developer.apple.com/documentation/corefoundation/cfabsolutetime?language=objc
testTimeAbsoluteTimeSeconds = 558511729
)
func TestUnixToAbsoluteTime(t *testing.T) {
var testNano int64 = 123456789
abs := unixToAbsoluteTime(testTimeUnixSeconds, testNano)
const expectedAbs = testTimeAbsoluteTimeSeconds + 0.123456789
if abs != expectedAbs {
t.Fatalf("expected %f, got %f", expectedAbs, abs)
}
}
func TestAbsoluteTimeToUnix(t *testing.T) {
const abs = testTimeAbsoluteTimeSeconds + 0.123456789
s, ns := absoluteTimeToUnix(abs)
if s != testTimeUnixSeconds {
t.Fatalf("expected %d, got %d", testTimeUnixSeconds, s)
}
// Some precision loss from floating point.
const expectedNano = 123456835
if ns != expectedNano {
t.Fatalf("expected %d, got %d", expectedNano, ns)
}
}
func TestTimeToCFDate(t *testing.T) {
var testNano int64 = 123456789
tm := time.Unix(testTimeUnixSeconds, testNano)
d := TimeToCFDate(tm)
defer releaseCFDate(d)
abs := cfDateToAbsoluteTime(d)
const expectedAbs = testTimeAbsoluteTimeSeconds + 0.123456789
if abs != expectedAbs {
t.Fatalf("expected %f, got %f", expectedAbs, abs)
}
}
func TestCFDateToTime(t *testing.T) {
const abs = testTimeAbsoluteTimeSeconds + 0.123456789
d := absoluteTimeToCFDate(abs)
defer releaseCFDate(d)
tm := CFDateToTime(d)
// Some precision loss from floating point.
const expectedNano = testTimeUnixSeconds*nsPerSec + 123456835
nano := tm.UnixNano()
if nano != expectedNano {
t.Fatalf("expected %d, got %d", expectedNano, nano)
}
}