forked from jetify-com/devbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevbox_test.go
177 lines (143 loc) · 5.98 KB
/
devbox_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
package devbox
import (
"encoding/json"
"fmt"
"os"
"path/filepath"
"testing"
"github.com/bmatcuk/doublestar/v4"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.jetpack.io/devbox/planner/plansdk"
)
func TestDevbox(t *testing.T) {
t.Setenv("TMPDIR", "/tmp")
testPaths, err := doublestar.FilepathGlob("./testdata/**/devbox.json")
assert.NoError(t, err, "Reading testdata/ should not fail")
examplePaths, err := doublestar.FilepathGlob("./examples/**/devbox.json")
assert.NoError(t, err, "Reading examples/ should not fail")
testPaths = append(testPaths, examplePaths...)
assert.Greater(t, len(testPaths), 0, "testdata/ and examples/ should contain at least 1 test")
for _, testPath := range testPaths {
testShell(t, testPath)
testBuild(t, testPath)
}
}
func testShell(t *testing.T, testPath string) {
currentDir, err := os.Getwd()
require.New(t).NoError(err)
baseDir := filepath.Dir(testPath)
testName := fmt.Sprintf("%s_shell_plan", baseDir)
t.Run(testName, func(t *testing.T) {
assert := assert.New(t)
shellPlanFile := filepath.Join(baseDir, "shell_plan.json")
hasShellPlanFile := fileExists(shellPlanFile)
box, err := Open(baseDir, os.Stdout)
assert.NoErrorf(err, "%s should be a valid devbox project", baseDir)
// Just for tests, we make srcDir be a relative path so that the paths in plan.json
// of various test cases have relative paths. Absolute paths are a no-go because they'd
// be of the form `/Users/savil/...`, which are not generalized and cannot be checked in.
box.srcDir, err = filepath.Rel(currentDir, box.srcDir)
assert.NoErrorf(err, "expect to construct relative path from %s relative to base %s", box.srcDir, currentDir)
shellPlan, err := box.ShellPlan()
assert.NoError(err, "devbox shell plan should not fail")
err = box.generateShellFiles()
assert.NoError(err, "devbox generate should not fail")
if !hasShellPlanFile {
assert.NotEmpty(shellPlan.DevPackages, "the plan should have dev packages")
return
}
data, err := os.ReadFile(shellPlanFile)
assert.NoError(err, "shell_plan.json should be readable")
expected := &plansdk.ShellPlan{}
err = json.Unmarshal(data, &expected)
assert.NoError(err, "plan.json should parse correctly")
assertShellPlansMatch(t, expected, shellPlan)
})
}
func testBuild(t *testing.T, testPath string) {
currentDir, err := os.Getwd()
require.New(t).NoError(err)
baseDir := filepath.Dir(testPath)
testName := fmt.Sprintf("%s_build_plan", baseDir)
t.Run(testName, func(t *testing.T) {
assert := assert.New(t)
buildPlanFile := filepath.Join(baseDir, "build_plan.json")
hasBuildPlanFile := fileExists(buildPlanFile)
box, err := Open(baseDir, os.Stdout)
assert.NoErrorf(err, "%s should be a valid devbox project", baseDir)
// Just for tests, we make srcDir be a relative path so that the paths in plan.json
// of various test cases have relative paths. Absolute paths are a no-go because they'd
// be of the form `/Users/savil/...`, which are not generalized and cannot be checked in.
box.srcDir, err = filepath.Rel(currentDir, box.srcDir)
assert.NoErrorf(err, "expect to construct relative path from %s relative to base %s", box.srcDir, currentDir)
buildPlan, err := box.BuildPlan()
buildErrorExpectedFile := filepath.Join(baseDir, "build_error_expected")
hasBuildErrorExpectedFile := fileExists(buildErrorExpectedFile)
if hasBuildErrorExpectedFile {
assert.NotNil(err)
// Since build error is expected, skip the rest of the test
return
}
assert.NoError(err, "devbox plan should not fail")
err = box.generateBuildFiles()
assert.NoError(err, "devbox generate should not fail")
if !hasBuildPlanFile {
assert.NotEmpty(buildPlan.DevPackages, "the plan should have dev packages")
return
}
data, err := os.ReadFile(buildPlanFile)
assert.NoError(err, "plan.json should be readable")
expected := &plansdk.BuildPlan{}
err = json.Unmarshal(data, &expected)
assert.NoError(err, "plan.json should parse correctly")
assertBuildPlansMatch(t, expected, buildPlan)
})
}
func assertShellPlansMatch(t *testing.T, expected *plansdk.ShellPlan, actual *plansdk.ShellPlan) {
assert := assert.New(t)
assert.ElementsMatch(expected.DevPackages, actual.DevPackages, "DevPackages should match")
assert.ElementsMatch(expected.NixOverlays, actual.NixOverlays, "NixOverlays should match")
}
func assertBuildPlansMatch(t *testing.T, expected *plansdk.BuildPlan, actual *plansdk.BuildPlan) {
assert := assert.New(t)
assert.ElementsMatch(expected.DevPackages, actual.DevPackages, "DevPackages should match")
assert.ElementsMatch(expected.RuntimePackages, actual.RuntimePackages, "RuntimePackages should match")
assert.Equal(expected.InstallStage.GetCommand(), actual.InstallStage.GetCommand(), "Install stage should match")
assert.Equal(expected.BuildStage.GetCommand(), actual.BuildStage.GetCommand(), "Build stage should match")
assert.Equal(expected.StartStage.GetCommand(), actual.StartStage.GetCommand(), "Start stage should match")
// Check that input files are the same for all stages.
// Depending on where the test command is invoked, the input file paths can be different.
// We will compare the file name only.
assert.ElementsMatch(
expected.InstallStage.GetInputFiles(),
getFileNames(actual.InstallStage.GetInputFiles()),
"InstallStage.InputFiles should match",
)
assert.ElementsMatch(
expected.BuildStage.GetInputFiles(),
getFileNames(actual.BuildStage.GetInputFiles()),
"BuildStage.InputFiles should match",
)
assert.ElementsMatch(
expected.StartStage.GetInputFiles(),
actual.StartStage.GetInputFiles(),
"StartStage.InputFiles should match",
)
assert.ElementsMatch(expected.Definitions, actual.Definitions, "Definitions should match")
}
func fileExists(path string) bool {
_, err := os.Stat(path)
return err == nil
}
func getFileNames(paths []string) []string {
names := []string{}
for _, path := range paths {
if path == "." {
names = append(names, path)
} else {
names = append(names, filepath.Base(path))
}
}
return names
}