-
Notifications
You must be signed in to change notification settings - Fork 6
/
rostime_test.go
71 lines (65 loc) · 1.06 KB
/
rostime_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
71
package rosbag
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestROSTimeRoundtrip(t *testing.T) {
cases := []struct {
assertion string
input uint64
}{
{
"nanoseconds",
100,
},
{
"seconds",
100e9 + 1000,
},
{
"nanos",
1693705645329000000,
},
}
for _, c := range cases {
c := c
t.Run(c.assertion, func(t *testing.T) {
rosTime := toRostime(c.input)
normalTime := fromRostime(rosTime)
assert.Equal(t, c.input, normalTime)
buf := make([]byte, 8)
putU64(buf, uint64(rosTime))
assert.Equal(t, c.input, parseROSTime(buf))
})
}
}
func TestROSTimeString(t *testing.T) {
cases := []struct {
assertion string
input uint64
output string
}{
{
"nanoseconds",
100,
"0.000000100",
},
{
"seconds",
100e9 + 1000,
"100.000001000",
},
{
"nanos",
1693705645329000000,
"1693705645.329000000",
},
}
for _, c := range cases {
c := c
t.Run(c.assertion, func(t *testing.T) {
rosTime := toRostime(c.input)
assert.Equal(t, c.output, rosTime.String())
})
}
}