github.com/rakyll/go@v0.0.0-20170216000551-64c02460d703/src/go/types/stdlib_test.go (about) 1 // Copyright 2013 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // This file tests types.Check by using it to 6 // typecheck the standard library and tests. 7 8 package types_test 9 10 import ( 11 "fmt" 12 "go/ast" 13 "go/build" 14 "go/importer" 15 "go/parser" 16 "go/scanner" 17 "go/token" 18 "internal/testenv" 19 "io/ioutil" 20 "os" 21 "path/filepath" 22 "runtime" 23 "strings" 24 "testing" 25 "time" 26 27 . "go/types" 28 ) 29 30 var ( 31 pkgCount int // number of packages processed 32 start time.Time 33 34 // Use the same importer for all std lib tests to 35 // avoid repeated importing of the same packages. 36 stdLibImporter = importer.Default() 37 ) 38 39 func TestStdlib(t *testing.T) { 40 testenv.MustHaveGoBuild(t) 41 42 start = time.Now() 43 walkDirs(t, filepath.Join(runtime.GOROOT(), "src")) 44 if testing.Verbose() { 45 fmt.Println(pkgCount, "packages typechecked in", time.Since(start)) 46 } 47 } 48 49 // firstComment returns the contents of the first comment in 50 // the given file, assuming there's one within the first KB. 51 func firstComment(filename string) string { 52 f, err := os.Open(filename) 53 if err != nil { 54 return "" 55 } 56 defer f.Close() 57 58 var src [1 << 10]byte // read at most 1KB 59 n, _ := f.Read(src[:]) 60 61 var s scanner.Scanner 62 s.Init(fset.AddFile("", fset.Base(), n), src[:n], nil, scanner.ScanComments) 63 for { 64 _, tok, lit := s.Scan() 65 switch tok { 66 case token.COMMENT: 67 // remove trailing */ of multi-line comment 68 if lit[1] == '*' { 69 lit = lit[:len(lit)-2] 70 } 71 return strings.TrimSpace(lit[2:]) 72 case token.EOF: 73 return "" 74 } 75 } 76 } 77 78 func testTestDir(t *testing.T, path string, ignore ...string) { 79 files, err := ioutil.ReadDir(path) 80 if err != nil { 81 t.Fatal(err) 82 } 83 84 excluded := make(map[string]bool) 85 for _, filename := range ignore { 86 excluded[filename] = true 87 } 88 89 fset := token.NewFileSet() 90 for _, f := range files { 91 // filter directory contents 92 if f.IsDir() || !strings.HasSuffix(f.Name(), ".go") || excluded[f.Name()] { 93 continue 94 } 95 96 // get per-file instructions 97 expectErrors := false 98 filename := filepath.Join(path, f.Name()) 99 if cmd := firstComment(filename); cmd != "" { 100 switch cmd { 101 case "skip", "compiledir": 102 continue // ignore this file 103 case "errorcheck": 104 expectErrors = true 105 } 106 } 107 108 // parse and type-check file 109 file, err := parser.ParseFile(fset, filename, nil, 0) 110 if err == nil { 111 conf := Config{Importer: stdLibImporter} 112 _, err = conf.Check(filename, fset, []*ast.File{file}, nil) 113 } 114 115 if expectErrors { 116 if err == nil { 117 t.Errorf("expected errors but found none in %s", filename) 118 } 119 } else { 120 if err != nil { 121 t.Error(err) 122 } 123 } 124 } 125 } 126 127 func TestStdTest(t *testing.T) { 128 testenv.MustHaveGoBuild(t) 129 130 if testing.Short() && testenv.Builder() == "" { 131 t.Skip("skipping in short mode") 132 } 133 134 // test/recover4.go is only built for Linux and Darwin. 135 // TODO(gri) Remove once tests consider +build tags (issue 10370). 136 if runtime.GOOS != "linux" && runtime.GOOS != "darwin" { 137 return 138 } 139 140 testTestDir(t, filepath.Join(runtime.GOROOT(), "test"), 141 "cmplxdivide.go", // also needs file cmplxdivide1.go - ignore 142 "sigchld.go", // don't work on Windows; testTestDir should consult build tags 143 ) 144 } 145 146 func TestStdFixed(t *testing.T) { 147 testenv.MustHaveGoBuild(t) 148 149 if testing.Short() && testenv.Builder() == "" { 150 t.Skip("skipping in short mode") 151 } 152 153 testTestDir(t, filepath.Join(runtime.GOROOT(), "test", "fixedbugs"), 154 "bug248.go", "bug302.go", "bug369.go", // complex test instructions - ignore 155 "issue6889.go", // gc-specific test 156 "issue7746.go", // large constants - consumes too much memory 157 "issue11362.go", // canonical import path check 158 "issue15002.go", // uses Mmap; testTestDir should consult build tags 159 "issue16369.go", // go/types handles this correctly - not an issue 160 "issue18459.go", // go/types doesn't check validity of //go:xxx directives 161 "issue18882.go", // go/types doesn't check validity of //go:xxx directives 162 ) 163 } 164 165 func TestStdKen(t *testing.T) { 166 testenv.MustHaveGoBuild(t) 167 168 testTestDir(t, filepath.Join(runtime.GOROOT(), "test", "ken")) 169 } 170 171 // Package paths of excluded packages. 172 var excluded = map[string]bool{ 173 "builtin": true, 174 } 175 176 // typecheck typechecks the given package files. 177 func typecheck(t *testing.T, path string, filenames []string) { 178 fset := token.NewFileSet() 179 180 // parse package files 181 var files []*ast.File 182 for _, filename := range filenames { 183 file, err := parser.ParseFile(fset, filename, nil, parser.AllErrors) 184 if err != nil { 185 // the parser error may be a list of individual errors; report them all 186 if list, ok := err.(scanner.ErrorList); ok { 187 for _, err := range list { 188 t.Error(err) 189 } 190 return 191 } 192 t.Error(err) 193 return 194 } 195 196 if testing.Verbose() { 197 if len(files) == 0 { 198 fmt.Println("package", file.Name.Name) 199 } 200 fmt.Println("\t", filename) 201 } 202 203 files = append(files, file) 204 } 205 206 // typecheck package files 207 conf := Config{ 208 Error: func(err error) { t.Error(err) }, 209 Importer: stdLibImporter, 210 } 211 info := Info{Uses: make(map[*ast.Ident]Object)} 212 conf.Check(path, fset, files, &info) 213 pkgCount++ 214 215 // Perform checks of API invariants. 216 217 // All Objects have a package, except predeclared ones. 218 errorError := Universe.Lookup("error").Type().Underlying().(*Interface).ExplicitMethod(0) // (error).Error 219 for id, obj := range info.Uses { 220 predeclared := obj == Universe.Lookup(obj.Name()) || obj == errorError 221 if predeclared == (obj.Pkg() != nil) { 222 posn := fset.Position(id.Pos()) 223 if predeclared { 224 t.Errorf("%s: predeclared object with package: %s", posn, obj) 225 } else { 226 t.Errorf("%s: user-defined object without package: %s", posn, obj) 227 } 228 } 229 } 230 } 231 232 // pkgFilenames returns the list of package filenames for the given directory. 233 func pkgFilenames(dir string) ([]string, error) { 234 ctxt := build.Default 235 ctxt.CgoEnabled = false 236 pkg, err := ctxt.ImportDir(dir, 0) 237 if err != nil { 238 if _, nogo := err.(*build.NoGoError); nogo { 239 return nil, nil // no *.go files, not an error 240 } 241 return nil, err 242 } 243 if excluded[pkg.ImportPath] { 244 return nil, nil 245 } 246 var filenames []string 247 for _, name := range pkg.GoFiles { 248 filenames = append(filenames, filepath.Join(pkg.Dir, name)) 249 } 250 for _, name := range pkg.TestGoFiles { 251 filenames = append(filenames, filepath.Join(pkg.Dir, name)) 252 } 253 return filenames, nil 254 } 255 256 // Note: Could use filepath.Walk instead of walkDirs but that wouldn't 257 // necessarily be shorter or clearer after adding the code to 258 // terminate early for -short tests. 259 260 func walkDirs(t *testing.T, dir string) { 261 // limit run time for short tests 262 if testing.Short() && time.Since(start) >= 10*time.Millisecond { 263 return 264 } 265 266 fis, err := ioutil.ReadDir(dir) 267 if err != nil { 268 t.Error(err) 269 return 270 } 271 272 // typecheck package in directory 273 // but ignore files directly under $GOROOT/src (might be temporary test files). 274 if dir != filepath.Join(runtime.GOROOT(), "src") { 275 files, err := pkgFilenames(dir) 276 if err != nil { 277 t.Error(err) 278 return 279 } 280 if files != nil { 281 typecheck(t, dir, files) 282 } 283 } 284 285 // traverse subdirectories, but don't walk into testdata 286 for _, fi := range fis { 287 if fi.IsDir() && fi.Name() != "testdata" { 288 walkDirs(t, filepath.Join(dir, fi.Name())) 289 } 290 } 291 }