forked from viamrobotics/motion-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scenes_test.go
143 lines (125 loc) · 3.01 KB
/
scenes_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
package main
import (
"context"
"encoding/csv"
"errors"
"flag"
"fmt"
"os"
"path/filepath"
"strconv"
"testing"
"time"
"go.viam.com/rdk/motionplan"
"go.viam.com/rdk/referenceframe"
"go.viam.com/test"
)
const numTests = 10
const timeout = 5.0 // seconds
var nameFlag = flag.String("name", "", "name of test to run")
var resultsDirectory = "results"
func TestDefault(t *testing.T) {
name := *nameFlag
if name == "" {
name = "default"
}
err := runScenes(t, name, map[string]interface{}{})
test.That(t, err, test.ShouldBeNil)
}
func TestCBiRRT(t *testing.T) {
name := *nameFlag
if name == "" {
name = "cbirrt"
}
err := runScenes(t, name, map[string]interface{}{
"motion_profile": motionplan.FreeMotionProfile,
"planning_alg": "cbirrt",
})
test.That(t, err, test.ShouldBeNil)
}
func TestRRTStar(t *testing.T) {
name := *nameFlag
if name == "" {
name = "rrt-star"
}
err := runScenes(t, name, map[string]interface{}{
"planning_alg": "rrtstar",
})
test.That(t, err, test.ShouldBeNil)
}
func runScenes(t *testing.T, name string, options map[string]interface{}) error {
outputFolder := filepath.Join(resultsDirectory, name)
if _, err := os.Stat(outputFolder); errors.Is(err, os.ErrNotExist) {
// TODO(rb): potentially create a temp directory to be storing these files
err := os.MkdirAll(outputFolder, os.ModePerm)
if err != nil {
return err
}
}
for sceneNum := range allScenes {
if err := initScene(sceneNum); err != nil {
return err
}
for i := 1; i <= numTests; i++ {
options["rseed"] = i
options["timeout"] = timeout
if err := runPlanner(filepath.Join(outputFolder, "scene"+strconv.Itoa(sceneNum)+"_"+strconv.Itoa(i)), options); err != nil {
return err
}
}
}
return nil
}
func runPlanner(fileName string, options map[string]interface{}) error {
start := time.Now()
// run planning query
startMap := referenceframe.StartPositions(sceneFS)
startMap[testArmFrame] = scene.Start
planMap, err := motionplan.PlanMotion(
context.Background(),
logger,
referenceframe.NewPoseInFrame("world", scene.Goal),
sceneFS.Frame(testArmFrame),
startMap,
sceneFS,
scene.WorldState,
options,
)
// parse output
success := "true"
if err != nil {
success = "false"
}
took := time.Since(start)
// write stats file
statsFile, err := os.Create(fileName + "_stats.txt")
if err != nil {
return err
}
defer statsFile.Close()
w := csv.NewWriter(statsFile)
defer w.Flush()
w.Write([]string{success, fmt.Sprintf("%f", float64(took)/float64(time.Second))})
// write solution to file
csvFile, err := os.Create(fileName + ".csv")
if err != nil {
return err
}
defer csvFile.Close()
if success == "true" {
path, err := motionplan.FrameStepsFromRobotPath(testArmFrame, planMap)
if err != nil {
return err
}
w = csv.NewWriter(csvFile)
defer w.Flush()
for _, step := range path {
stepStr := make([]string, 0, len(path))
for _, joint := range step {
stepStr = append(stepStr, fmt.Sprintf("%f", joint.Value))
}
w.Write(stepStr)
}
}
return nil
}