-
Notifications
You must be signed in to change notification settings - Fork 0
/
builder.go
161 lines (138 loc) · 3.99 KB
/
builder.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
package gucumber
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"strings"
"text/template"
)
const (
importMarkerFile = "importmarker__.go"
testFile = "gucumbertest__.go"
)
// BuildAndRunDir builds the given director's features into Go Code.
// Using the filters provided. An error is returned if the build fails.
func BuildAndRunDir(dir string, filters []string) error {
return buildAndRunDir(dir, filters, "")
}
// BuildAndRunDirWithGoBuildTags builds the given director's features into Go
// Code using the filters provided. Also takes a string for the build tags to
// be passed to the go command. An error is returned if the build fails.
//
// If goBuildTags is empty, the param will be ignored.
func BuildAndRunDirWithGoBuildTags(dir string, filters []string, goBuildTags string) error {
return buildAndRunDir(dir, filters, goBuildTags)
}
func buildAndRunDir(dir string, filters []string, goBuildTags string) error {
defer buildCleanup(dir)
info := buildInfo{
Imports: []string{},
FeaturesPath: fmt.Sprintf("%q", dir),
Filters: filters,
}
goFiles, _ := filepath.Glob(filepath.Join(dir, "*.go"))
goFiles2, _ := filepath.Glob(filepath.Join(dir, "**", "*.go"))
goFiles = append(goFiles, goFiles2...)
// write special constants to packages so they can be imported
for _, file := range goFiles {
ifile := filepath.Join(filepath.Dir(file), importMarkerFile)
if _, err := os.Stat(ifile); err != nil {
pkgName := filepath.Base(filepath.Dir(file))
if pkgName == "_test" {
continue
}
fullPkg := assembleImportPath(file)
if fullPkg == "" {
return fmt.Errorf("could not determine package path for %s", file)
}
info.Imports = append(info.Imports, fullPkg)
src := fmt.Sprintf("package %s\nvar IMPORT_MARKER = true\n", pkgName)
err = ioutil.WriteFile(ifile, []byte(src), 0664)
if err != nil {
return err
}
}
}
// write main test stub
os.MkdirAll(filepath.Join(dir, "_test"), 0777)
f, err := os.Create(filepath.Join(dir, "_test", testFile))
if err != nil {
return err
}
tplMain.Execute(f, info)
f.Close()
// now run the command
tfile := "./" + filepath.ToSlash(dir) + "/_test/" + testFile
var cmd *exec.Cmd
if len(goBuildTags) > 0 {
cmd = exec.Command("go", "run", "-tags", goBuildTags, tfile)
} else {
cmd = exec.Command("go", "run", tfile)
}
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
if err := cmd.Run(); err != nil {
buildCleanup(dir)
os.Exit(1)
}
return nil
}
// ToSlash is being used to coerce the different
// os PathSeparators into the forward slash
// as the forward slash is required by Go's import statement
func assembleImportPath(file string) string {
a, _ := filepath.Abs(filepath.Dir(file))
absPath, fullPkg := filepath.ToSlash(a), ""
greedy := 0
for _, p := range filepath.SplitList(os.Getenv("GOPATH")) {
a, _ = filepath.Abs(p)
p = filepath.ToSlash(a)
symlink, _ := filepath.EvalSymlinks(p)
if (strings.HasPrefix(absPath, p) || strings.HasPrefix(absPath, symlink)) && len(p) > greedy {
prefixPath := filepath.ToSlash(filepath.Join(p, "src"))
fullPkg, _ = filepath.Rel(prefixPath, absPath)
greedy = len(p)
}
}
return filepath.ToSlash(fullPkg)
}
type buildInfo struct {
Imports []string
FeaturesPath string
Filters []string
}
func buildCleanup(dir string) {
g, _ := filepath.Glob(filepath.Join(dir, importMarkerFile))
g2, _ := filepath.Glob(filepath.Join(dir, "**", importMarkerFile))
g = append(g, g2...)
for _, d := range g {
os.Remove(d)
}
p := filepath.Join(dir, "_test")
if _, err := os.Stat(p); err == nil {
os.RemoveAll(p)
}
}
var tplMain = template.Must(template.New("main").Parse(`
package main
import (
"github.com/gucumber/gucumber"
{{range $n, $i := .Imports}}_i{{$n}} "{{$i}}"
{{end}}
)
var (
{{range $n, $i := .Imports}}_ci{{$n}} = _i{{$n}}.IMPORT_MARKER
{{end}}
)
func main() {
{{if .Filters}}
gucumber.GlobalContext.Filters = []string{
{{range $_, $f := .Filters}}"{{$f}}",
{{end}}
}
{{end}}
gucumber.GlobalContext.RunDir({{.FeaturesPath}})
}
`))