forked from viam-modules/viam-cartographer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viam_cartographer_test.go
471 lines (371 loc) · 16 KB
/
viam_cartographer_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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
// Package viamcartographer_test tests the functions that require injected components (such as robot and camera)
// in order to be run. It utilizes the internal package located in testhelper.go to access
// certain exported functions which we do not want to make available to the user. It also runs integration tests
// that test the interaction with the core C++ viam-cartographer code and the Golang implementation of the
// cartographer slam service.
package viamcartographer_test
import (
"context"
"os"
"testing"
"time"
"github.com/edaniels/golog"
"github.com/pkg/errors"
viamgrpc "go.viam.com/rdk/grpc"
"go.viam.com/rdk/services/slam"
"go.viam.com/test"
viamcartographer "github.com/viamrobotics/viam-cartographer"
"github.com/viamrobotics/viam-cartographer/cartofacade"
vcConfig "github.com/viamrobotics/viam-cartographer/config"
"github.com/viamrobotics/viam-cartographer/testhelper"
)
const (
testExecutableName = "true" // the program "true", not the boolean value
testDataRateMsec = 200
)
var (
testMapRateSec = 200
_zeroInt = 0
_zeroTime = time.Time{}
)
func TestNew(t *testing.T) {
logger := golog.NewTestLogger(t)
t.Run("Failed creation of cartographer slam service with more than one sensor", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, err := os.MkdirTemp("", "*")
test.That(t, err, test.ShouldBeNil)
defer func() {
err := os.RemoveAll(dataDirectory)
test.That(t, err, test.ShouldBeNil)
}()
attrCfg := &vcConfig.Config{
Sensors: []string{"lidar", "one-too-many"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
}
_, err = testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeError,
errors.New("configuring lidar camera error: 'sensors' must contain only one "+
"lidar camera, but is 'sensors: [lidar, one-too-many]'"))
})
t.Run("Failed creation of cartographer slam service with non-existing sensor", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, err := os.MkdirTemp("", "*")
test.That(t, err, test.ShouldBeNil)
attrCfg := &vcConfig.Config{
Sensors: []string{"gibberish"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
DataRateMsec: testDataRateMsec,
}
_, err = testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeError,
errors.New("error getting lidar camera "+
"gibberish for slam service: \"rdk:component:camera/gibberish\" missing from dependencies"))
})
t.Run("Successful creation of cartographer slam service with good lidar", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, err := os.MkdirTemp("", "*")
test.That(t, err, test.ShouldBeNil)
attrCfg := &vcConfig.Config{
Sensors: []string{"good_lidar"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
DataRateMsec: testDataRateMsec,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Failed creation of cartographer slam service with invalid sensor "+
"that errors during call to NextPointCloud", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, err := os.MkdirTemp("", "*")
test.That(t, err, test.ShouldBeNil)
attrCfg := &vcConfig.Config{
Sensors: []string{"invalid_sensor"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
DataRateMsec: testDataRateMsec,
}
_, err = testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeError,
errors.New("failed to get data from lidar: ValidateGetData timeout: NextPointCloud error: invalid sensor"))
})
t.Run("Successful creation of cartographer slam service in localization mode", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, fsCleanupFunc := testhelper.InitInternalState(t)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Sensors: []string{"good_lidar"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
MapRateSec: &_zeroInt,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
cs, ok := svc.(*viamcartographer.CartographerService)
test.That(t, ok, test.ShouldBeTrue)
test.That(t, cs.SlamMode, test.ShouldEqual, cartofacade.LocalizingMode)
timestamp1, err := svc.GetLatestMapInfo(context.Background())
test.That(t, err, test.ShouldBeNil)
_, err = svc.GetPointCloudMap(context.Background())
test.That(t, err, test.ShouldBeNil)
timestamp2, err := svc.GetLatestMapInfo(context.Background())
test.That(t, err, test.ShouldBeNil)
test.That(t, timestamp1.After(_zeroTime), test.ShouldBeTrue)
test.That(t, timestamp1, test.ShouldResemble, timestamp2)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Successful creation of cartographer slam service in non localization mode", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, fsCleanupFunc := testhelper.InitInternalState(t)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Sensors: []string{"good_lidar"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
MapRateSec: &testMapRateSec,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
cs, ok := svc.(*viamcartographer.CartographerService)
test.That(t, ok, test.ShouldBeTrue)
test.That(t, cs.SlamMode, test.ShouldEqual, cartofacade.UpdatingMode)
timestamp1, err := svc.GetLatestMapInfo(context.Background())
test.That(t, err, test.ShouldBeNil)
_, err = svc.GetPointCloudMap(context.Background())
test.That(t, err, test.ShouldBeNil)
timestamp2, err := svc.GetLatestMapInfo(context.Background())
test.That(t, err, test.ShouldBeNil)
test.That(t, timestamp1.After(_zeroTime), test.ShouldBeTrue)
test.That(t, timestamp2.After(timestamp1), test.ShouldBeTrue)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Fails to create cartographer slam service with no sensor when feature flag enabled", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, fsCleanupFunc := testhelper.InitInternalState(t)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Sensors: []string{},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeError, errors.New("error validating \"path\": \"sensors\" must not be empty"))
test.That(t, svc, test.ShouldBeNil)
})
t.Run("Failed creation of cartographer slam service with more than one sensor when feature flag enabled", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, fsCleanupFunc := testhelper.InitInternalState(t)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Sensors: []string{"lidar", "one-too-many"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
}
_, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeError,
errors.New("configuring lidar camera error: 'sensors' must contain only one "+
"lidar camera, but is 'sensors: [lidar, one-too-many]'"))
})
t.Run("Failed creation of cartographer slam service with non-existing sensor when feature flag enabled", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, fsCleanupFunc := testhelper.InitInternalState(t)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Sensors: []string{"gibberish"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
DataRateMsec: testDataRateMsec,
}
_, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeError,
errors.New("error getting lidar camera "+
"gibberish for slam service: \"rdk:component:camera/gibberish\" missing from dependencies"))
})
t.Run("Successful creation of cartographer slam service with good lidar when feature flag enabled", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, fsCleanupFunc := testhelper.InitInternalState(t)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Sensors: []string{"good_lidar"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
DataRateMsec: testDataRateMsec,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Failed creation of cartographer slam service with invalid sensor "+
"that errors during call to NextPointCloud when feature flag enabled", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, fsCleanupFunc := testhelper.InitInternalState(t)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Sensors: []string{"invalid_sensor"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
DataRateMsec: testDataRateMsec,
}
_, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeError,
errors.New("failed to get data from lidar: ValidateGetData timeout: NextPointCloud error: invalid sensor"))
})
t.Run("Successful creation of cartographer slam service in localization mode when feature flag enabled", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, fsCleanupFunc := testhelper.InitInternalState(t)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Sensors: []string{"replay_sensor"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
MapRateSec: &_zeroInt,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
_, componentReference, err := svc.GetPosition(context.Background())
test.That(t, err, test.ShouldBeNil)
test.That(t, componentReference, test.ShouldEqual, "replay_sensor")
timestamp1, err := svc.GetLatestMapInfo(context.Background())
test.That(t, err, test.ShouldBeNil)
pcmFunc, err := svc.GetPointCloudMap(context.Background())
test.That(t, err, test.ShouldBeNil)
pcm, err := slam.HelperConcatenateChunksToFull(pcmFunc)
test.That(t, err, test.ShouldBeNil)
test.That(t, pcm, test.ShouldNotBeNil)
isFunc, err := svc.GetInternalState(context.Background())
test.That(t, err, test.ShouldBeNil)
is, err := slam.HelperConcatenateChunksToFull(isFunc)
test.That(t, err, test.ShouldBeNil)
test.That(t, is, test.ShouldNotBeNil)
timestamp2, err := svc.GetLatestMapInfo(context.Background())
test.That(t, err, test.ShouldBeNil)
test.That(t, timestamp1.After(_zeroTime), test.ShouldBeTrue)
test.That(t, timestamp1, test.ShouldResemble, timestamp2)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Successful creation of cartographer slam service in non localization mode when feature flag enabled", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, fsCleanupFunc := testhelper.InitInternalState(t)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Sensors: []string{"good_lidar"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
DataRateMsec: testDataRateMsec,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
_, componentReference, err := svc.GetPosition(context.Background())
test.That(t, err, test.ShouldBeNil)
test.That(t, componentReference, test.ShouldEqual, "good_lidar")
timestamp1, err := svc.GetLatestMapInfo(context.Background())
test.That(t, err, test.ShouldBeNil)
pcmFunc, err := svc.GetPointCloudMap(context.Background())
test.That(t, err, test.ShouldBeNil)
pcm, err := slam.HelperConcatenateChunksToFull(pcmFunc)
test.That(t, err, test.ShouldBeNil)
test.That(t, pcm, test.ShouldNotBeNil)
isFunc, err := svc.GetInternalState(context.Background())
test.That(t, err, test.ShouldBeNil)
is, err := slam.HelperConcatenateChunksToFull(isFunc)
test.That(t, err, test.ShouldBeNil)
test.That(t, is, test.ShouldNotBeNil)
timestamp2, err := svc.GetLatestMapInfo(context.Background())
test.That(t, err, test.ShouldBeNil)
test.That(t, timestamp1.After(_zeroTime), test.ShouldBeTrue)
test.That(t, timestamp2.After(timestamp1), test.ShouldBeTrue)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
}
func TestClose(t *testing.T) {
logger := golog.NewTestLogger(t)
ctx := context.Background()
t.Run("is idempotent and makes all endpoints return closed errors when feature flag enabled", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, err := os.MkdirTemp("", "*")
test.That(t, err, test.ShouldBeNil)
defer func() {
err := os.RemoveAll(dataDirectory)
test.That(t, err, test.ShouldBeNil)
}()
attrCfg := &vcConfig.Config{
Sensors: []string{"replay_sensor"},
ConfigParams: map[string]string{"mode": "2d"},
DataDirectory: dataDirectory,
MapRateSec: &testMapRateSec,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
// call twice, assert result is the same to prove idempotence
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
pose, componentRef, err := svc.GetPosition(ctx)
test.That(t, pose, test.ShouldBeNil)
test.That(t, componentRef, test.ShouldBeEmpty)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrClosed)
gpcmF, err := svc.GetPointCloudMap(ctx)
test.That(t, gpcmF, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrClosed)
gisF, err := svc.GetInternalState(ctx)
test.That(t, gisF, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrClosed)
mapTime, err := svc.GetLatestMapInfo(ctx)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrClosed)
test.That(t, mapTime, test.ShouldResemble, time.Time{})
cmd := map[string]interface{}{}
resp, err := svc.DoCommand(ctx, cmd)
test.That(t, resp, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrClosed)
})
}
func TestDoCommand(t *testing.T) {
logger := golog.NewTestLogger(t)
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
dataDirectory, err := os.MkdirTemp("", "*")
test.That(t, err, test.ShouldBeNil)
defer func() {
err := os.RemoveAll(dataDirectory)
test.That(t, err, test.ShouldBeNil)
}()
test.That(t, err, test.ShouldBeNil)
attrCfg := &vcConfig.Config{
Sensors: []string{"good_lidar"},
ConfigParams: map[string]string{"mode": "2d", "test_param": "viam"},
DataDirectory: dataDirectory,
MapRateSec: &testMapRateSec,
DataRateMsec: testDataRateMsec,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
t.Run("returns UnimplementedError when given other parmeters", func(t *testing.T) {
cmd := map[string]interface{}{"fake_flag": true}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldEqual, viamgrpc.UnimplementedError)
test.That(t, resp, test.ShouldBeNil)
})
t.Run("returns UnimplementedError when given no parmeters", func(t *testing.T) {
cmd := map[string]interface{}{}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldEqual, viamgrpc.UnimplementedError)
test.That(t, resp, test.ShouldBeNil)
})
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
}