-
Notifications
You must be signed in to change notification settings - Fork 17
/
viam_cartographer_test.go
525 lines (443 loc) · 18.9 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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
// 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"
"github.com/pkg/errors"
viamgrpc "go.viam.com/rdk/grpc"
"go.viam.com/rdk/logging"
"go.viam.com/rdk/services/slam"
"go.viam.com/test"
"go.viam.com/utils/artifact"
viamcartographer "github.com/viam-modules/viam-cartographer"
"github.com/viam-modules/viam-cartographer/cartofacade"
vcConfig "github.com/viam-modules/viam-cartographer/config"
"github.com/viam-modules/viam-cartographer/postprocess"
s "github.com/viam-modules/viam-cartographer/sensors"
"github.com/viam-modules/viam-cartographer/testhelper"
)
const (
testExecutableName = "true" // the program "true", not the boolean value
testDataFreqHz = "5"
testIMUDataFreqHz = "20"
testLidarDataFreqHz = "5"
)
var (
_true = true
_false = false
)
func TestNew(t *testing.T) {
logger := logging.NewTestLogger(t)
t.Run("Succeeds if use_cloud_slam is set to true. Causes all endpoints return errors.", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
attrCfg := &vcConfig.Config{
Camera: map[string]string{"name": string(s.GoodLidar), "data_frequency_hz": "5"},
ConfigParams: map[string]string{"mode": "2d"},
UseCloudSlam: &_true,
}
ctx := context.Background()
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
pose, err := svc.Position(ctx)
test.That(t, pose, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrUseCloudSlamEnabled)
gpcmF, err := svc.PointCloudMap(ctx, false)
test.That(t, gpcmF, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrUseCloudSlamEnabled)
gisF, err := svc.InternalState(ctx)
test.That(t, gisF, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrUseCloudSlamEnabled)
cmd := map[string]interface{}{}
resp, err := svc.DoCommand(ctx, cmd)
test.That(t, resp, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrUseCloudSlamEnabled)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Successful creation of cartographer slam service with good lidar without IMU", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
attrCfg := &vcConfig.Config{
Camera: map[string]string{"name": string(s.GoodLidar), "data_frequency_hz": testLidarDataFreqHz},
ConfigParams: map[string]string{"mode": "2d"},
EnableMapping: &_true,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Successful creation of cartographer slam service without mode configured", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
attrCfg := &vcConfig.Config{
Camera: map[string]string{"name": string(s.GoodLidar), "data_frequency_hz": testLidarDataFreqHz},
EnableMapping: &_true,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Successful creation of cartographer slam service with good lidar without IMU name specified", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
attrCfg := &vcConfig.Config{
Camera: map[string]string{"name": string(s.GoodLidar), "data_frequency_hz": testLidarDataFreqHz},
MovementSensor: map[string]string{"name": ""},
ConfigParams: map[string]string{"mode": "2d"},
EnableMapping: &_true,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Successful creation of cartographer slam service with good lidar with IMU", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
attrCfg := &vcConfig.Config{
Camera: map[string]string{"name": string(s.GoodLidar), "data_frequency_hz": testLidarDataFreqHz},
ConfigParams: map[string]string{"mode": "2d"},
MovementSensor: map[string]string{"name": string(s.GoodIMU), "data_frequency_hz": testIMUDataFreqHz},
EnableMapping: &_true,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
prop, err := svc.Properties(context.Background())
test.That(t, err, test.ShouldBeNil)
test.That(t, prop.CloudSlam, test.ShouldBeFalse)
test.That(t, prop.MappingMode, test.ShouldEqual, slam.MappingModeNewMap)
sensorInfo := prop.SensorInfo
test.That(t, len(sensorInfo), test.ShouldEqual, 2)
test.That(t, sensorInfo[0].Name, test.ShouldEqual, string(s.GoodLidar))
test.That(t, sensorInfo[0].Type, test.ShouldEqual, slam.SensorTypeCamera)
test.That(t, sensorInfo[1].Name, test.ShouldEqual, string(s.GoodIMU))
test.That(t, sensorInfo[1].Type, test.ShouldEqual, slam.SensorTypeMovementSensor)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Successful creation of cartographer slam service in localization mode", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
existingMap, fsCleanupFunc := testhelper.InitInternalState(t, false)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Camera: map[string]string{"name": string(s.GoodLidar)},
ConfigParams: map[string]string{"mode": "2d"},
EnableMapping: &_false,
ExistingMap: existingMap,
}
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)
// Test position
pose, err := svc.Position(context.Background())
test.That(t, pose, test.ShouldBeNil)
test.That(t, err, test.ShouldNotBeNil)
test.That(t, err.Error(), test.ShouldContainSubstring, "VIAM_CARTO_GET_POSITION_NOT_INITIALIZED")
// Test pointcloud map
pcmFunc, err := svc.PointCloudMap(context.Background(), false)
test.That(t, err, test.ShouldBeNil)
pcm, err := slam.HelperConcatenateChunksToFull(pcmFunc)
test.That(t, err, test.ShouldBeNil)
test.That(t, pcm, test.ShouldNotBeNil)
// Test internal state
isFunc, err := svc.InternalState(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)
// Test properties
prop, err := svc.Properties(context.Background())
test.That(t, err, test.ShouldBeNil)
test.That(t, prop.CloudSlam, test.ShouldBeFalse)
test.That(t, prop.MappingMode, test.ShouldEqual, slam.MappingModeLocalizationOnly)
sensorInfo := prop.SensorInfo
test.That(t, len(sensorInfo), test.ShouldEqual, 1)
test.That(t, sensorInfo[0].Name, test.ShouldEqual, string(s.GoodLidar))
test.That(t, sensorInfo[0].Type, test.ShouldEqual, slam.SensorTypeCamera)
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()
existingMap, fsCleanupFunc := testhelper.InitInternalState(t, true)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Camera: map[string]string{"name": string(s.GoodLidar)},
ConfigParams: map[string]string{"mode": "2d"},
EnableMapping: &_true,
ExistingMap: existingMap,
}
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)
// Test position
pose, err := svc.Position(context.Background())
test.That(t, pose, test.ShouldBeNil)
test.That(t, err, test.ShouldNotBeNil)
test.That(t, err.Error(), test.ShouldContainSubstring, "VIAM_CARTO_GET_POSITION_NOT_INITIALIZED")
// Test pointcloud map
pcmFunc, err := svc.PointCloudMap(context.Background(), false)
test.That(t, err, test.ShouldBeNil)
pcm, err := slam.HelperConcatenateChunksToFull(pcmFunc)
test.That(t, err, test.ShouldBeNil)
test.That(t, pcm, test.ShouldNotBeNil)
// Test returning edited pointcloud map
pcmEditedFunc, err := svc.PointCloudMap(context.Background(), true)
test.That(t, err, test.ShouldBeNil)
pcmEdited, err := slam.HelperConcatenateChunksToFull(pcmEditedFunc)
test.That(t, err, test.ShouldBeNil)
test.That(t, pcmEdited, test.ShouldNotBeNil)
test.That(t, pcmEdited, test.ShouldNotResemble, pcm)
// Test internal state
isFunc, err := svc.InternalState(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)
// Test properties
prop, err := svc.Properties(context.Background())
test.That(t, err, test.ShouldBeNil)
test.That(t, prop.CloudSlam, test.ShouldBeFalse)
test.That(t, prop.MappingMode, test.ShouldEqual, slam.MappingModeUpdateExistingMap)
sensorInfo := prop.SensorInfo
test.That(t, len(sensorInfo), test.ShouldEqual, 1)
test.That(t, sensorInfo[0].Name, test.ShouldEqual, string(s.GoodLidar))
test.That(t, sensorInfo[0].Type, test.ShouldEqual, slam.SensorTypeCamera)
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
})
t.Run("Failed creation of cartographer slam service with good lidar with movement"+
"sensor that does not support IMU nor odometer", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
attrCfg := &vcConfig.Config{
Camera: map[string]string{"name": string(s.GoodLidar), "data_frequency_hz": testLidarDataFreqHz},
MovementSensor: map[string]string{"name": string(s.MovementSensorNotIMUNotOdometer)},
ConfigParams: map[string]string{"mode": "2d"},
EnableMapping: &_true,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldNotBeNil)
test.That(t, err, test.ShouldBeError, s.ErrMovementSensorNeitherIMUNorOdometer)
test.That(t, svc, test.ShouldBeNil)
})
t.Run("Fails to create cartographer slam service with no sensor", func(t *testing.T) {
termFunc := testhelper.InitTestCL(t, logger)
defer termFunc()
_, fsCleanupFunc := testhelper.InitInternalState(t, false)
defer fsCleanupFunc()
attrCfg := &vcConfig.Config{
Camera: map[string]string{},
ConfigParams: map[string]string{"mode": "2d"},
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeError, errors.New("error validating \"path\": \"camera[name]\" is required"))
test.That(t, svc, test.ShouldBeNil)
})
}
func TestClose(t *testing.T) {
logger := logging.NewTestLogger(t)
ctx := context.Background()
t.Run("is idempotent and makes all endpoints return closed errors", 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{
Camera: map[string]string{"name": string(s.ReplayLidar)},
ConfigParams: map[string]string{"mode": "2d"},
EnableMapping: &_true,
}
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, err := svc.Position(ctx)
test.That(t, pose, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrClosed)
gpcmF, err := svc.PointCloudMap(ctx, false)
test.That(t, gpcmF, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrClosed)
gisF, err := svc.InternalState(ctx)
test.That(t, gisF, test.ShouldBeNil)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrClosed)
prop, err := svc.Properties(ctx)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrClosed)
test.That(t, prop, test.ShouldResemble, slam.Properties{})
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 := logging.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{
Camera: map[string]string{"name": string(s.GoodLidar), "data_frequency_hz": testLidarDataFreqHz},
ConfigParams: map[string]string{"mode": "2d", "test_param": "viam"},
EnableMapping: &_true,
}
svc, err := testhelper.CreateSLAMService(t, attrCfg, logger)
test.That(t, err, test.ShouldBeNil)
t.Run("returns UnimplementedError when given other parameters", 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 parameters", 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)
})
t.Run("returns false when given 'job_done'", func(t *testing.T) {
cmd := map[string]interface{}{viamcartographer.JobDoneCommand: ""}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldBeNil)
test.That(
t,
resp, test.ShouldResemble,
map[string]interface{}{viamcartographer.JobDoneCommand: false},
)
})
t.Run("changes postprocess bool after 'postprocess_toggle'", func(t *testing.T) {
cmd := map[string]interface{}{postprocess.ToggleCommand: ""}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldBeNil)
test.That(
t,
resp, test.ShouldResemble,
map[string]interface{}{viamcartographer.PostprocessToggleResponseKey: true},
)
cmd = map[string]interface{}{postprocess.ToggleCommand: ""}
resp, err = svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldBeNil)
test.That(
t,
resp, test.ShouldResemble,
map[string]interface{}{viamcartographer.PostprocessToggleResponseKey: false},
)
})
t.Run(
"errors if 'postprocess_undo' is called before any postprocessing has occurred",
func(t *testing.T) {
cmd := map[string]interface{}{postprocess.UndoCommand: ""}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldBeError, viamcartographer.ErrNoPostprocessingToUndo)
test.That(t, resp, test.ShouldBeNil)
})
t.Run(
"succeeds if 'postprocess_undo' is called after any postprocessing has occurred",
func(t *testing.T) {
point := map[string]interface{}{"X": float64(1), "Y": float64(1)}
cmd := map[string]interface{}{postprocess.AddCommand: []interface{}{point}}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldBeNil)
test.That(
t,
resp,
test.ShouldResemble,
map[string]interface{}{postprocess.AddCommand: viamcartographer.SuccessMessage},
)
cmd = map[string]interface{}{postprocess.UndoCommand: ""}
resp, err = svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldBeNil)
test.That(
t,
resp,
test.ShouldResemble,
map[string]interface{}{postprocess.UndoCommand: viamcartographer.SuccessMessage},
)
})
t.Run(
"success if 'postprocess_add' is called correctly",
func(t *testing.T) {
point := map[string]interface{}{"X": float64(1), "Y": float64(1)}
cmd := map[string]interface{}{postprocess.AddCommand: []interface{}{point}}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldBeNil)
test.That(
t,
resp,
test.ShouldResemble,
map[string]interface{}{postprocess.AddCommand: viamcartographer.SuccessMessage},
)
})
t.Run(
"errors if 'postprocess_add' is called with incorrect format",
func(t *testing.T) {
cmd := map[string]interface{}{postprocess.AddCommand: "hello"}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err.Error(), test.ShouldContainSubstring, viamcartographer.ErrBadPostprocessingPointsFormat.Error())
test.That(t, resp, test.ShouldBeNil)
})
t.Run(
"success if 'postprocess_remove' is called correctly",
func(t *testing.T) {
point := map[string]interface{}{"X": float64(1), "Y": float64(1)}
cmd := map[string]interface{}{postprocess.RemoveCommand: []interface{}{point}}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldBeNil)
test.That(
t,
resp,
test.ShouldResemble,
map[string]interface{}{postprocess.RemoveCommand: viamcartographer.SuccessMessage},
)
})
t.Run(
"errors if 'postprocess_remove' is called with incorrect format",
func(t *testing.T) {
cmd := map[string]interface{}{postprocess.RemoveCommand: "hello"}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err.Error(), test.ShouldContainSubstring, viamcartographer.ErrBadPostprocessingPointsFormat.Error())
test.That(t, resp, test.ShouldBeNil)
})
t.Run(
"success if 'postprocess_path' is called correctly",
func(t *testing.T) {
path := artifact.MustPath("viam-cartographer/outputs/viam-office-02-22-3/pointcloud/pointcloud_1.pcd")
cmd := map[string]interface{}{postprocess.PathCommand: path}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err, test.ShouldBeNil)
test.That(
t,
resp,
test.ShouldResemble,
map[string]interface{}{postprocess.PathCommand: viamcartographer.SuccessMessage},
)
})
t.Run(
"errors if 'postprocess_path' is called with incorrect format",
func(t *testing.T) {
point := map[string]interface{}{"X": float64(1), "Y": float64(1)}
cmd := map[string]interface{}{postprocess.PathCommand: point}
resp, err := svc.DoCommand(context.Background(), cmd)
test.That(t, err.Error(), test.ShouldContainSubstring, viamcartographer.ErrBadPostprocessingPath.Error())
test.That(t, resp, test.ShouldBeNil)
})
test.That(t, svc.Close(context.Background()), test.ShouldBeNil)
}