-
Notifications
You must be signed in to change notification settings - Fork 23
/
script_test.go
60 lines (51 loc) · 1.17 KB
/
script_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
package main
import (
"fmt"
"os"
"testing"
"github.com/rogpeppe/go-internal/goproxytest"
"github.com/rogpeppe/go-internal/gotooltest"
"github.com/rogpeppe/go-internal/testscript"
)
var proxyURL string
func TestMain(m *testing.M) {
os.Exit(testscript.RunMain(gohackMain{m}, map[string]func() int{
"gohack": main1,
}))
}
type gohackMain struct {
m *testing.M
}
func (m gohackMain) Run() int {
if os.Getenv("GO_GCFLAGS") != "" {
fmt.Fprintf(os.Stderr, "testing: warning: no tests to run\n") // magic string for cmd/go
fmt.Printf("cmd/go test is not compatible with $GO_GCFLAGS being set\n")
fmt.Printf("SKIP\n")
return 0
}
os.Unsetenv("GOROOT_FINAL")
// Start the Go proxy server running for all tests.
srv, err := goproxytest.NewServer("testdata/mod", "")
if err != nil {
errorf("cannot start proxy: %v", err)
return 1
}
proxyURL = srv.URL
return m.m.Run()
}
func TestScripts(t *testing.T) {
p := testscript.Params{
Dir: "testdata",
Setup: func(e *testscript.Env) error {
e.Vars = append(e.Vars,
"GOPROXY="+proxyURL,
"GONOSUMDB=*",
)
return nil
},
}
if err := gotooltest.Setup(&p); err != nil {
t.Fatal(err)
}
testscript.Run(t, p)
}