"log"
"os"
"sort"
+ "strings"
"cmd/internal/edit"
"cmd/internal/objabi"
}
}
+ if strings.ContainsAny(name, "\r\n") {
+ log.Fatalf("cover: input path contains newline character: %q", name)
+ }
fmt.Fprintf(fd, "//line %s:1\n", name)
fd.Write(newContent)
t.Fatal(err)
}
}
+
+func TestSrcPathWithNewline(t *testing.T) {
+ t.Parallel()
+ buildCover(t)
+
+ // srcPath is intentionally not clean so that the path passed to testcover
+ // will not normalize the trailing / to a \ on Windows.
+ srcPath := t.TempDir() + string(filepath.Separator) + "\npackage main\nfunc main() { panic(string([]rune{'u', 'h', '-', 'o', 'h'}))\n/*/main.go"
+ mainSrc := ` package main
+
+func main() {
+ /* nothing here */
+ println("ok")
+}
+`
+ if err := os.MkdirAll(filepath.Dir(srcPath), 0777); err != nil {
+ t.Skipf("creating directory with bogus path: %v", err)
+ }
+ if err := os.WriteFile(srcPath, []byte(mainSrc), 0666); err != nil {
+ t.Skipf("writing file with bogus directory: %v", err)
+ }
+
+ cmd := exec.Command(testcover, "-mode=atomic", srcPath)
+ cmd.Stderr = new(bytes.Buffer)
+ out, err := cmd.Output()
+ t.Logf("%v:\n%s", cmd, out)
+ t.Logf("stderr:\n%s", cmd.Stderr)
+ if err == nil {
+ t.Errorf("unexpected success; want failure due to newline in file path")
+ }
+}