| | |
| | |
| | |
| |
|
| | package syntax |
| |
|
| | import ( |
| | "bytes" |
| | "flag" |
| | "fmt" |
| | "internal/testenv" |
| | "os" |
| | "path/filepath" |
| | "regexp" |
| | "runtime" |
| | "strings" |
| | "sync" |
| | "testing" |
| | "time" |
| | ) |
| |
|
| | var ( |
| | fast = flag.Bool("fast", false, "parse package files in parallel") |
| | verify = flag.Bool("verify", false, "verify idempotent printing") |
| | src_ = flag.String("src", "parser.go", "source file to parse") |
| | skip = flag.String("skip", "", "files matching this regular expression are skipped by TestStdLib") |
| | ) |
| |
|
| | func TestParse(t *testing.T) { |
| | ParseFile(*src_, func(err error) { t.Error(err) }, nil, 0) |
| | } |
| |
|
| | func TestVerify(t *testing.T) { |
| | ast, err := ParseFile(*src_, func(err error) { t.Error(err) }, nil, 0) |
| | if err != nil { |
| | return |
| | } |
| | verifyPrint(t, *src_, ast) |
| | } |
| |
|
| | func TestStdLib(t *testing.T) { |
| | if testing.Short() { |
| | t.Skip("skipping test in short mode") |
| | } |
| |
|
| | var skipRx *regexp.Regexp |
| | if *skip != "" { |
| | var err error |
| | skipRx, err = regexp.Compile(*skip) |
| | if err != nil { |
| | t.Fatalf("invalid argument for -skip (%v)", err) |
| | } |
| | } |
| |
|
| | var m1 runtime.MemStats |
| | runtime.ReadMemStats(&m1) |
| | start := time.Now() |
| |
|
| | type parseResult struct { |
| | filename string |
| | lines uint |
| | } |
| |
|
| | goroot := testenv.GOROOT(t) |
| |
|
| | results := make(chan parseResult) |
| | go func() { |
| | defer close(results) |
| | for _, dir := range []string{ |
| | filepath.Join(goroot, "src"), |
| | filepath.Join(goroot, "misc"), |
| | } { |
| | if filepath.Base(dir) == "misc" { |
| | |
| | |
| | |
| | if _, err := os.Stat(dir); os.IsNotExist(err) { |
| | if _, err := os.Stat(filepath.Join(testenv.GOROOT(t), "VERSION")); err == nil { |
| | fmt.Printf("%s not present; skipping\n", dir) |
| | continue |
| | } |
| | } |
| | } |
| |
|
| | walkDirs(t, dir, func(filename string) { |
| | if skipRx != nil && skipRx.MatchString(filename) { |
| | |
| | |
| | fmt.Printf("skipping %s\n", filename) |
| | return |
| | } |
| | if debug { |
| | fmt.Printf("parsing %s\n", filename) |
| | } |
| | ast, err := ParseFile(filename, nil, nil, 0) |
| | if err != nil { |
| | t.Error(err) |
| | return |
| | } |
| | if *verify { |
| | verifyPrint(t, filename, ast) |
| | } |
| | results <- parseResult{filename, ast.EOF.Line()} |
| | }) |
| | } |
| | }() |
| |
|
| | var count, lines uint |
| | for res := range results { |
| | count++ |
| | lines += res.lines |
| | if testing.Verbose() { |
| | fmt.Printf("%5d %s (%d lines)\n", count, res.filename, res.lines) |
| | } |
| | } |
| |
|
| | dt := time.Since(start) |
| | var m2 runtime.MemStats |
| | runtime.ReadMemStats(&m2) |
| | dm := float64(m2.TotalAlloc-m1.TotalAlloc) / 1e6 |
| |
|
| | fmt.Printf("parsed %d lines (%d files) in %v (%d lines/s)\n", lines, count, dt, int64(float64(lines)/dt.Seconds())) |
| | fmt.Printf("allocated %.3fMb (%.3fMb/s)\n", dm, dm/dt.Seconds()) |
| | } |
| |
|
| | func walkDirs(t *testing.T, dir string, action func(string)) { |
| | entries, err := os.ReadDir(dir) |
| | if err != nil { |
| | t.Error(err) |
| | return |
| | } |
| |
|
| | var files, dirs []string |
| | for _, entry := range entries { |
| | if entry.Type().IsRegular() { |
| | if strings.HasSuffix(entry.Name(), ".go") { |
| | path := filepath.Join(dir, entry.Name()) |
| | files = append(files, path) |
| | } |
| | } else if entry.IsDir() && entry.Name() != "testdata" { |
| | path := filepath.Join(dir, entry.Name()) |
| | if !strings.HasSuffix(path, string(filepath.Separator)+"test") { |
| | dirs = append(dirs, path) |
| | } |
| | } |
| | } |
| |
|
| | if *fast { |
| | var wg sync.WaitGroup |
| | wg.Add(len(files)) |
| | for _, filename := range files { |
| | go func(filename string) { |
| | defer wg.Done() |
| | action(filename) |
| | }(filename) |
| | } |
| | wg.Wait() |
| | } else { |
| | for _, filename := range files { |
| | action(filename) |
| | } |
| | } |
| |
|
| | for _, dir := range dirs { |
| | walkDirs(t, dir, action) |
| | } |
| | } |
| |
|
| | func verifyPrint(t *testing.T, filename string, ast1 *File) { |
| | var buf1 bytes.Buffer |
| | _, err := Fprint(&buf1, ast1, LineForm) |
| | if err != nil { |
| | panic(err) |
| | } |
| | bytes1 := buf1.Bytes() |
| |
|
| | ast2, err := Parse(NewFileBase(filename), &buf1, nil, nil, 0) |
| | if err != nil { |
| | panic(err) |
| | } |
| |
|
| | var buf2 bytes.Buffer |
| | _, err = Fprint(&buf2, ast2, LineForm) |
| | if err != nil { |
| | panic(err) |
| | } |
| | bytes2 := buf2.Bytes() |
| |
|
| | if !bytes.Equal(bytes1, bytes2) { |
| | fmt.Printf("--- %s ---\n", filename) |
| | fmt.Printf("%s\n", bytes1) |
| | fmt.Println() |
| |
|
| | fmt.Printf("--- %s ---\n", filename) |
| | fmt.Printf("%s\n", bytes2) |
| | fmt.Println() |
| |
|
| | t.Error("printed syntax trees do not match") |
| | } |
| | } |
| |
|
| | func TestIssue17697(t *testing.T) { |
| | _, err := Parse(nil, bytes.NewReader(nil), nil, nil, 0) |
| | if err == nil { |
| | t.Errorf("no error reported") |
| | } |
| | } |
| |
|
| | func TestParseFile(t *testing.T) { |
| | _, err := ParseFile("", nil, nil, 0) |
| | if err == nil { |
| | t.Error("missing io error") |
| | } |
| |
|
| | var first error |
| | _, err = ParseFile("", func(err error) { |
| | if first == nil { |
| | first = err |
| | } |
| | }, nil, 0) |
| | if err == nil || first == nil { |
| | t.Error("missing io error") |
| | } |
| | if err != first { |
| | t.Errorf("got %v; want first error %v", err, first) |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | var tooLarge int = PosMax + 1 |
| |
|
| | func TestLineDirectives(t *testing.T) { |
| | |
| | const valid = "syntax error: package statement must be first" |
| | const filename = "directives.go" |
| |
|
| | for _, test := range []struct { |
| | src, msg string |
| | filename string |
| | line, col uint |
| | }{ |
| | |
| | {"//\n", valid, filename, 2, 1}, |
| | {"//line\n", valid, filename, 2, 1}, |
| | {"//line foo\n", valid, filename, 2, 1}, |
| | {" //line foo:\n", valid, filename, 2, 1}, |
| | {"// line foo:\n", valid, filename, 2, 1}, |
| |
|
| | |
| | {"//line :\n", "invalid line number: ", filename, 1, 9}, |
| | {"//line :x\n", "invalid line number: x", filename, 1, 9}, |
| | {"//line foo :\n", "invalid line number: ", filename, 1, 13}, |
| | {"//line foo:x\n", "invalid line number: x", filename, 1, 12}, |
| | {"//line foo:0\n", "invalid line number: 0", filename, 1, 12}, |
| | {"//line foo:1 \n", "invalid line number: 1 ", filename, 1, 12}, |
| | {"//line foo:-12\n", "invalid line number: -12", filename, 1, 12}, |
| | {"//line C:foo:0\n", "invalid line number: 0", filename, 1, 14}, |
| | {fmt.Sprintf("//line foo:%d\n", tooLarge), fmt.Sprintf("invalid line number: %d", tooLarge), filename, 1, 12}, |
| |
|
| | |
| | {"//line ::\n", "invalid line number: ", filename, 1, 10}, |
| | {"//line ::x\n", "invalid line number: x", filename, 1, 10}, |
| | {"//line foo::123abc\n", "invalid line number: 123abc", filename, 1, 13}, |
| | {"//line foo::0\n", "invalid line number: 0", filename, 1, 13}, |
| | {"//line foo:0:1\n", "invalid line number: 0", filename, 1, 12}, |
| |
|
| | {"//line :123:0\n", "invalid column number: 0", filename, 1, 13}, |
| | {"//line foo:123:0\n", "invalid column number: 0", filename, 1, 16}, |
| | {fmt.Sprintf("//line foo:10:%d\n", tooLarge), fmt.Sprintf("invalid column number: %d", tooLarge), filename, 1, 15}, |
| |
|
| | |
| | {"//line foo:123\n foo", valid, "foo", 123, 0}, |
| | {"//line foo:123\n foo", valid, " foo", 123, 0}, |
| | {"//line foo:123\n//line bar:345\nfoo", valid, "bar", 345, 0}, |
| | {"//line C:foo:123\n", valid, "C:foo", 123, 0}, |
| | {"//line /src/a/a.go:123\n foo", valid, "/src/a/a.go", 123, 0}, |
| | {"//line :x:1\n", valid, ":x", 1, 0}, |
| | {"//line foo ::1\n", valid, "foo :", 1, 0}, |
| | {"//line foo:123abc:1\n", valid, "foo:123abc", 1, 0}, |
| | {"//line foo :123:1\n", valid, "foo ", 123, 1}, |
| | {"//line ::123\n", valid, ":", 123, 0}, |
| |
|
| | |
| | {"//line :x:1:10\n", valid, ":x", 1, 10}, |
| | {"//line foo ::1:2\n", valid, "foo :", 1, 2}, |
| | {"//line foo:123abc:1:1000\n", valid, "foo:123abc", 1, 1000}, |
| | {"//line foo :123:1000\n\n", valid, "foo ", 124, 1}, |
| | {"//line ::123:1234\n", valid, ":", 123, 1234}, |
| |
|
| | |
| | {"//line :10\n", valid, "", 10, 0}, |
| | {"//line :10:20\n", valid, filename, 10, 20}, |
| | {"//line bar:1\n//line :10\n", valid, "", 10, 0}, |
| | {"//line bar:1\n//line :10:20\n", valid, "bar", 10, 20}, |
| |
|
| | |
| | {"/**/", valid, filename, 1, 5}, |
| | {"/*line*/", valid, filename, 1, 9}, |
| | {"/*line foo*/", valid, filename, 1, 13}, |
| | {" //line foo:*/", valid, filename, 1, 16}, |
| | {"/* line foo:*/", valid, filename, 1, 16}, |
| |
|
| | |
| | {"/*line :*/", "invalid line number: ", filename, 1, 9}, |
| | {"/*line :x*/", "invalid line number: x", filename, 1, 9}, |
| | {"/*line foo :*/", "invalid line number: ", filename, 1, 13}, |
| | {"/*line foo:x*/", "invalid line number: x", filename, 1, 12}, |
| | {"/*line foo:0*/", "invalid line number: 0", filename, 1, 12}, |
| | {"/*line foo:1 */", "invalid line number: 1 ", filename, 1, 12}, |
| | {"/*line C:foo:0*/", "invalid line number: 0", filename, 1, 14}, |
| | {fmt.Sprintf("/*line foo:%d*/", tooLarge), fmt.Sprintf("invalid line number: %d", tooLarge), filename, 1, 12}, |
| |
|
| | |
| | {"/*line ::*/", "invalid line number: ", filename, 1, 10}, |
| | {"/*line ::x*/", "invalid line number: x", filename, 1, 10}, |
| | {"/*line foo::123abc*/", "invalid line number: 123abc", filename, 1, 13}, |
| | {"/*line foo::0*/", "invalid line number: 0", filename, 1, 13}, |
| | {"/*line foo:0:1*/", "invalid line number: 0", filename, 1, 12}, |
| |
|
| | {"/*line :123:0*/", "invalid column number: 0", filename, 1, 13}, |
| | {"/*line foo:123:0*/", "invalid column number: 0", filename, 1, 16}, |
| | {fmt.Sprintf("/*line foo:10:%d*/", tooLarge), fmt.Sprintf("invalid column number: %d", tooLarge), filename, 1, 15}, |
| |
|
| | |
| | {"/*line foo:123*/ foo", valid, "foo", 123, 0}, |
| | {"/*line foo:123*/\n//line bar:345\nfoo", valid, "bar", 345, 0}, |
| | {"/*line C:foo:123*/", valid, "C:foo", 123, 0}, |
| | {"/*line /src/a/a.go:123*/ foo", valid, "/src/a/a.go", 123, 0}, |
| | {"/*line :x:1*/", valid, ":x", 1, 0}, |
| | {"/*line foo ::1*/", valid, "foo :", 1, 0}, |
| | {"/*line foo:123abc:1*/", valid, "foo:123abc", 1, 0}, |
| | {"/*line foo :123:10*/", valid, "foo ", 123, 10}, |
| | {"/*line ::123*/", valid, ":", 123, 0}, |
| |
|
| | |
| | {"/*line :x:1:10*/", valid, ":x", 1, 10}, |
| | {"/*line foo ::1:2*/", valid, "foo :", 1, 2}, |
| | {"/*line foo:123abc:1:1000*/", valid, "foo:123abc", 1, 1000}, |
| | {"/*line foo :123:1000*/\n", valid, "foo ", 124, 1}, |
| | {"/*line ::123:1234*/", valid, ":", 123, 1234}, |
| |
|
| | |
| | {"/*line :10*/", valid, "", 10, 0}, |
| | {"/*line :10:20*/", valid, filename, 10, 20}, |
| | {"//line bar:1\n/*line :10*/", valid, "", 10, 0}, |
| | {"//line bar:1\n/*line :10:20*/", valid, "bar", 10, 20}, |
| | } { |
| | base := NewFileBase(filename) |
| | _, err := Parse(base, strings.NewReader(test.src), nil, nil, 0) |
| | if err == nil { |
| | t.Errorf("%s: no error reported", test.src) |
| | continue |
| | } |
| | perr, ok := err.(Error) |
| | if !ok { |
| | t.Errorf("%s: got %v; want parser error", test.src, err) |
| | continue |
| | } |
| | if msg := perr.Msg; msg != test.msg { |
| | t.Errorf("%s: got msg = %q; want %q", test.src, msg, test.msg) |
| | } |
| |
|
| | pos := perr.Pos |
| | if filename := pos.RelFilename(); filename != test.filename { |
| | t.Errorf("%s: got filename = %q; want %q", test.src, filename, test.filename) |
| | } |
| | if line := pos.RelLine(); line != test.line { |
| | t.Errorf("%s: got line = %d; want %d", test.src, line, test.line) |
| | } |
| | if col := pos.RelCol(); col != test.col { |
| | t.Errorf("%s: got col = %d; want %d", test.src, col, test.col) |
| | } |
| | } |
| | } |
| |
|
| | |
| | func TestUnpackListExprAllocs(t *testing.T) { |
| | var x Expr = NewName(Pos{}, "x") |
| | allocs := testing.AllocsPerRun(1000, func() { |
| | list := UnpackListExpr(x) |
| | if len(list) != 1 || list[0] != x { |
| | t.Fatalf("unexpected result") |
| | } |
| | }) |
| |
|
| | if allocs > 0 { |
| | errorf := t.Errorf |
| | if testenv.OptimizationOff() { |
| | errorf = t.Logf |
| | } |
| | errorf("UnpackListExpr allocated %v times", allocs) |
| | } |
| | } |
| |
|