-
Notifications
You must be signed in to change notification settings - Fork 3
/
scenes_test.go
168 lines (144 loc) · 3.44 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
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
package main
import (
"context"
"encoding/csv"
"errors"
"flag"
"fmt"
"os"
"os/exec"
"path/filepath"
"strconv"
"strings"
"testing"
"time"
"go.viam.com/rdk/motionplan"
"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 {
for i := 1; i <= numTests; i++ {
if err := initScene(sceneNum); err != nil {
return err
}
options["rseed"] = i
options["timeout"] = timeout
if err := runPlanner(filepath.Join(outputFolder, "scene"+strconv.Itoa(sceneNum)+"_"+strconv.Itoa(i)), options); err != nil {
return err
}
}
}
// Create SHA-containing file for this execution in the output folder
err := generateHashFile(outputFolder)
if err != nil {
return err
}
return nil
}
func runPlanner(fileName string, options map[string]interface{}) error {
start := time.Now()
// run planning query
scene.Options = options
scene.Logger = logger
plan, err := motionplan.PlanMotion(context.Background(), scene)
// 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 := plan.Trajectory().GetFrameInputs(scene.Frame.Name())
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
}
func generateHashFile(folder string) error {
hashFile, err := os.Create(filepath.Join(folder, "hash"))
if err != nil {
return err
}
defer hashFile.Close()
//nolint:gosec
cmd := exec.Command("git", "rev-parse", "HEAD")
out, err := cmd.CombinedOutput()
if err != nil {
if len(out) != 0 {
return fmt.Errorf("error running git rev-parse HEAD")
}
return err
}
hash := strings.TrimSpace(string(out))
_, err = hashFile.WriteString(hash)
if err != nil {
return err
}
return nil
}