forked from jtarchie/ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
51 lines (40 loc) · 1.02 KB
/
main_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
package main_test
import (
"os"
"os/exec"
"path/filepath"
"testing"
"github.com/bmatcuk/doublestar/v4"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/gexec"
)
func TestExamples(t *testing.T) {
t.Parallel()
assert := NewGomegaWithT(t)
path, err := gexec.Build("github.com/jtarchie/ci")
assert.Expect(err).ToNot(HaveOccurred())
matches, err := doublestar.FilepathGlob("examples/*.{js,ts,yml,yaml}")
assert.Expect(err).ToNot(HaveOccurred())
drivers := []string{
// "docker",
"native",
}
for _, match := range matches {
examplePath, err := filepath.Abs(match)
assert.Expect(err).ToNot(HaveOccurred())
for _, driver := range drivers {
t.Run(driver+": "+match, func(t *testing.T) {
t.Parallel()
assert := NewGomegaWithT(t)
session, err := gexec.Start(
exec.Command(
path, "runner",
"--orchestrator", driver,
examplePath,
), os.Stderr, os.Stderr)
assert.Expect(err).ToNot(HaveOccurred())
assert.Eventually(session, "5s").Should(gexec.Exit(0))
})
}
}
}