-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathrestorer_std_test.go
106 lines (90 loc) · 2.6 KB
/
restorer_std_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
package decorator
import (
"bytes"
"fmt"
"go/build"
"go/format"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"strings"
"testing"
"github.com/dave/dst/decorator/resolver/gobuild"
)
func TestLoadStdLibAll(t *testing.T) {
if testing.Short() {
t.Skip("skipping standard library load test in short mode.")
}
home, err := os.UserHomeDir()
if err != nil {
t.Fatal(err)
}
cmd := exec.Command("go", "list", "./...")
cmd.Env = []string{
fmt.Sprintf("GOPATH=%s", build.Default.GOPATH),
fmt.Sprintf("GOROOT=%s", build.Default.GOROOT),
fmt.Sprintf("HOME=%s", home),
}
cmd.Dir = filepath.Join(build.Default.GOROOT, "src")
b, err := cmd.CombinedOutput()
if err != nil {
t.Fatalf("%s: %v", string(b), err)
}
all := strings.Split(strings.TrimSpace(string(b)), "\n")
testPackageRestoresCorrectlyWithImports(t, all...)
}
func testPackageRestoresCorrectlyWithImports(t *testing.T, path ...string) {
t.Helper()
pkgs, err := Load(nil, path...)
if err != nil {
t.Fatal(err)
}
if len(pkgs) == 0 {
t.Fatal("No packages loaded")
}
// we skip some packages because they have no source:
skip := map[string]bool{
"unsafe": true,
"embed/internal/embedtest": true,
"os/signal/internal/pty": true,
}
for _, p := range pkgs {
if skip[p.PkgPath] {
continue
}
if len(p.Syntax) == 0 {
t.Fatalf("Package %s has no syntax", p.PkgPath)
}
t.Run(p.PkgPath, func(t *testing.T) {
// must use go/build package resolver for standard library because of https://github.com/golang/go/issues/26924
r := NewRestorer()
r.Path = p.PkgPath
r.Resolver = &gobuild.RestorerResolver{Dir: p.Dir}
for _, file := range p.Syntax {
fpath := p.Decorator.Filenames[file]
_, fname := filepath.Split(fpath)
t.Run(fname, func(t *testing.T) {
if (p.PkgPath == "net/http" && (fname == "server.go" || fname == "request.go")) || (p.PkgPath == "crypto/x509" && fname == "x509.go") {
t.Skip("TODO: In net/http/server.go, net/http/request.go, and crypto/x509/x509.go we multiple imports with the same path and different aliases. This edge case would need a complete rewrite of the import management block to support - see see https://github.com/dave/dst/issues/45")
}
buf := &bytes.Buffer{}
if err := r.Fprint(buf, file); err != nil {
t.Fatal(err)
}
existing, err := ioutil.ReadFile(fpath)
if err != nil {
t.Fatal(err)
}
expect, err := format.Source(existing)
if err != nil {
t.Fatal(err)
}
if string(expect) != buf.String() {
t.Errorf("diff:\n%s", diff(string(expect), buf.String()))
}
})
}
})
}
}