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
|
package ntp
import (
"fmt"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestNTPTimeConverstion(t *testing.T) {
for i, cc := range []struct {
ts time.Time
}{
{
ts: time.Now(),
},
{
ts: time.Unix(0, 0),
},
} {
t.Run(fmt.Sprintf("TimeToNTP/%v", i), func(t *testing.T) {
assert.InDelta(t, cc.ts.UnixNano(), ToTime(ToNTP(cc.ts)).UnixNano(), float64(time.Millisecond.Nanoseconds()))
})
}
}
func TestTimeToNTPConverstion(t *testing.T) {
for i, cc := range []struct {
ts uint64
}{
{
ts: 0,
},
{
ts: 65535,
},
{
ts: 16606669245815957503,
},
{
ts: 9487534653230284800,
},
} {
t.Run(fmt.Sprintf("TimeToNTP/%v", i), func(t *testing.T) {
assert.Equal(t, cc.ts, ToNTP(ToTime(cc.ts)))
})
}
}
|