-
Notifications
You must be signed in to change notification settings - Fork 13
/
main.go
585 lines (493 loc) · 13 KB
/
main.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
package main
import (
"bufio"
"encoding/json"
"flag"
"fmt"
"go/ast"
"go/types"
"io"
"os"
"os/exec"
"path/filepath"
"strings"
)
var exit = os.Exit
func main() {
exit(gobcoMain(os.Stdout, os.Stderr, os.Args...))
}
func gobcoMain(stdout, stderr io.Writer, args ...string) int {
g := newGobco(stdout, stderr)
g.parseCommandLine(args)
g.prepareTmp()
if g.instrument() {
g.runGoTest()
g.printOutput()
} else {
_, _ = io.WriteString(g.stdout, "nothing to instrument\n")
}
g.cleanUp()
return g.exitCode
}
type gobco struct {
branch bool
listAll bool
immediately bool
keep bool
coverTest bool
goTestArgs []string
args []argInfo
statsFilename string
exitCode int
logger
buildEnv
}
func newGobco(stdout io.Writer, stderr io.Writer) *gobco {
var g gobco
g.logger.init(stdout, stderr)
g.buildEnv.init(&g.logger)
return &g
}
func (g *gobco) parseCommandLine(argv []string) {
args := g.parseOptions(argv)
g.parseArgs(args)
}
func (g *gobco) parseOptions(argv []string) []string {
var help, ver bool
flags := flag.NewFlagSet(filepath.Base(argv[0]), flag.ContinueOnError)
flags.BoolVar(&help, "help", false,
"print the available command line options")
flags.BoolVar(&g.branch, "branch", false,
"cover branches, not conditions")
flags.BoolVar(&g.immediately, "immediately", false,
"persist the coverage immediately at each check point")
flags.BoolVar(&g.keep, "keep", false,
"don't remove the temporary working directory")
flags.BoolVar(&g.listAll, "list-all", false,
"at finish, print also those conditions that are fully covered")
flags.StringVar(&g.statsFilename, "stats", "",
"load and persist the JSON coverage data to this `file`")
flags.Var(newSliceFlag(&g.goTestArgs), "test",
"pass the `option` to \"go test\", such as -vet=off")
flags.BoolVar(&g.verbose, "verbose", false,
"show progress messages")
flags.BoolVar(&g.coverTest, "cover-test", false,
"cover the test code as well")
flags.BoolVar(&ver, "version", false,
"print the gobco version")
flags.SetOutput(g.stderr)
flags.Usage = func() {
_, _ = fmt.Fprintf(flags.Output(),
"usage: %s [options] package...\n", flags.Name())
flags.PrintDefaults()
g.exitCode = 2
}
err := flags.Parse(argv[1:])
if g.exitCode != 0 {
exit(g.exitCode)
}
g.check(err)
if help {
flags.SetOutput(g.stdout)
flags.Usage()
exit(0)
}
if ver {
g.outf("%s", version)
exit(0)
}
return flags.Args()
}
func (g *gobco) parseArgs(args []string) {
if len(args) == 0 {
args = []string{"."}
}
assert(len(args) <= 1, "checking multiple packages doesn't work yet")
for _, arg := range args {
arg = filepath.FromSlash(arg)
g.args = append(g.args, g.classify(arg))
}
}
// classify determines how to handle the argument, depending on whether it is
// a single file or directory, and whether it is located in a Go module or not.
func (g *gobco) classify(arg string) argInfo {
st, err := os.Stat(arg)
isDir := err == nil && st.IsDir()
dir := arg
base := ""
if !isDir {
dir = filepath.Dir(dir)
base = filepath.Base(arg)
}
if moduleRoot, moduleRel := g.findInModule(dir); moduleRoot != "" {
copyDst := "module-" + randomHex(8) // Must be outside 'gopath/'.
packageDir := filepath.Join(copyDst, moduleRel)
return argInfo{
arg: arg,
argDir: dir,
module: true,
copySrc: moduleRoot,
copyDst: copyDst,
instrFile: base,
instrDir: packageDir,
}
}
if relDir := g.findInGopath(dir); relDir != "" {
relDir := filepath.Join("gopath", relDir)
return argInfo{
arg: arg,
argDir: dir,
module: false,
copySrc: dir,
copyDst: relDir,
instrFile: base,
instrDir: relDir,
}
}
g.check(fmt.Errorf("error: argument %q must be inside GOPATH", arg))
panic("unreachable")
}
// findInGopath returns the directory relative to the enclosing GOPATH, if any.
func (g *gobco) findInGopath(arg string) string {
gopaths := g.gopaths()
abs, err := filepath.Abs(arg)
g.check(err)
for _, gopath := range filepath.SplitList(gopaths) {
rel, err := filepath.Rel(gopath, abs)
g.check(err)
if strings.HasPrefix(rel, "src") {
return rel
}
}
return ""
}
func (g *gobco) gopaths() string {
gopaths := os.Getenv("GOPATH")
if gopaths != "" {
return gopaths
}
home, err := os.UserHomeDir()
g.check(err)
return filepath.Join(home, "go")
}
func (g *gobco) findInModule(dir string) (moduleRoot, moduleRel string) {
absDir, err := filepath.Abs(dir)
g.check(err)
abs := absDir
for {
if _, err := os.Lstat(filepath.Join(abs, "go.mod")); err == nil {
rel, err := filepath.Rel(abs, absDir)
g.check(err)
root := abs
if rel == "." {
root = dir
}
return root, rel
}
parent := filepath.Dir(abs)
if parent == abs {
return "", ""
}
abs = parent
}
}
// prepareTmp copies the source files to the temporary directory.
//
// Later, gobco.instrumenter will overwrite some of these files.
func (g *gobco) prepareTmp() {
if g.statsFilename != "" {
var err error
g.statsFilename, err = filepath.Abs(g.statsFilename)
g.check(err)
} else {
g.statsFilename = g.file("gobco-counts.json")
}
// TODO: Research how "package/..." is handled by other go commands.
for _, arg := range g.args {
dstDir := g.file(arg.copyDst)
g.check(copyDir(arg.copySrc, dstDir))
}
}
func (g *gobco) instrument() bool {
in := instrumenter{
g.branch,
g.coverTest,
g.immediately,
g.listAll,
false,
nil,
map[*ast.Package]*types.Package{},
map[ast.Expr]types.Type{},
nil,
0,
map[ast.Expr]bool{},
map[ast.Expr]*exprSubst{},
map[ast.Stmt]*ast.Stmt{},
map[ast.Stmt]ast.Stmt{},
false,
nil,
}
found := false
for _, arg := range g.args {
instrDst := g.file(arg.instrDir)
if in.instrument(arg.argDir, arg.instrFile, instrDst) {
found = true
g.verbosef("Instrumented %s to %s", arg.arg, instrDst)
}
}
return found
}
func (g *gobco) runGoTest() {
for _, arg := range g.args {
gopaths := ""
if !arg.module {
gopaths = g.gopaths()
}
g.exitCode = goTest{}.run(
arg,
g.goTestArgs,
g.verbose,
gopaths,
g.statsFilename,
&g.buildEnv,
)
}
}
func (g *gobco) printOutput() {
conds, err := g.load(g.statsFilename)
if err != nil && g.exitCode != 0 {
return // skip silently
}
if err != nil {
g.logger.errf("%s", err)
}
cnt := 0
for _, c := range conds {
if c.TrueCount > 0 {
cnt++
}
if c.FalseCount > 0 {
cnt++
}
}
kind := "Condition coverage"
if g.branch {
kind = "Branch coverage"
}
g.outf("")
g.outf("%s: %d/%d", kind, cnt, len(conds)*2)
for _, cond := range conds {
g.printCond(cond)
}
}
func (g *gobco) cleanUp() {
if g.keep {
g.errf("")
g.errf("gobco: the temporary files are in %s", g.tmpdir)
} else {
err := os.RemoveAll(g.tmpdir)
if err != nil {
g.verbosef("%s", err)
}
}
}
func (g *gobco) load(filename string) ([]condition, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
}
defer func() {
closeErr := file.Close()
g.check(closeErr)
}()
var data []condition
decoder := json.NewDecoder(bufio.NewReader(file))
decoder.DisallowUnknownFields()
g.check(decoder.Decode(&data))
return data, nil
}
func (g *gobco) printCond(cond condition) {
trueCount := cond.TrueCount
falseCount := cond.FalseCount
if !g.listAll && trueCount > 0 && falseCount > 0 {
return
}
start := cond.Start
code := cond.Code
switch {
case trueCount == 0 && falseCount == 0:
g.outf("%s: condition %q was never evaluated",
start, code)
case trueCount == 0 && falseCount == 1:
g.outf("%s: condition %q was once false but never true",
start, code)
case trueCount == 0:
g.outf("%s: condition %q was %d times false but never true",
start, code, falseCount)
case trueCount == 1 && falseCount == 0:
g.outf("%s: condition %q was once true but never false",
start, code)
case trueCount == 1 && falseCount == 1:
g.outf("%s: condition %q was once true and once false",
start, code)
case trueCount == 1:
g.outf("%s: condition %q was once true and %d times false",
start, code, falseCount)
case falseCount == 0:
g.outf("%s: condition %q was %d times true but never false",
start, code, trueCount)
case falseCount == 1:
g.outf("%s: condition %q was %d times true and once false",
start, code, trueCount)
default:
g.outf("%s: condition %q was %d times true and %d times false",
start, code, trueCount, falseCount)
}
}
// goTest groups the functions that run 'go test' with the proper arguments.
type goTest struct{}
func (t goTest) run(
arg argInfo,
extraArgs []string,
verbose bool,
gopaths string,
statsFilename string,
e *buildEnv,
) int {
args := t.args(verbose, extraArgs)
goTest := exec.Command("go", args[1:]...)
goTest.Stdout = e.stdout
goTest.Stderr = e.stderr
goTest.Dir = e.file(arg.instrDir)
goTest.Env = t.env(e.tmpdir, gopaths, statsFilename)
cmdline := strings.Join(args, " ")
e.verbosef("Running %q in %q", cmdline, goTest.Dir)
err := goTest.Run()
if err != nil {
e.errf("go test %s: %s", arg.arg, err)
return 1
} else {
e.verbosef("Finished %s", cmdline)
return 0
}
}
func (goTest) args(verbose bool, extraArgs []string) []string {
args := []string{"go", "test"}
if verbose {
// The -v is necessary to produce any output at all.
// Without it, most of the log output is suppressed.
args = append(args, "-v")
}
// Work around test result caching which does not apply anyway,
// since the instrumented files are written to a new directory
// each time.
//
// Without this option, 'go test' sometimes needs twice the time.
args = append(args, "-test.count", "1")
args = append(args, ".")
// 'go test' allows flags even after packages.
args = append(args, extraArgs...)
return args
}
func (goTest) env(tmpdir, gopaths, statsFilename string) []string {
var env []string
for _, envVar := range os.Environ() {
if gopaths == "" && strings.HasPrefix(envVar, "GOPATH=") {
continue
}
env = append(env, envVar)
}
if gopaths != "" {
gopathDir := filepath.Join(tmpdir, "gopath")
gopath := gopathDir + string(filepath.ListSeparator) + gopaths
env = append(env, "GOPATH="+gopath)
env = append(env, "GO111MODULE=off")
}
env = append(env, "GOBCO_STATS="+statsFilename)
return env
}
// buildEnv describes the environment in which all interesting pieces of code
// are collected and instrumented.
type buildEnv struct {
tmpdir string
*logger
}
func (e *buildEnv) init(l *logger) {
tmpdir := filepath.Join(os.TempDir(), "gobco-"+randomHex(8))
l.check(os.MkdirAll(tmpdir, 0o777))
l.verbosef("The temporary working directory is %s", tmpdir)
*e = buildEnv{tmpdir, l}
}
// file returns the absolute path of the given path, which is interpreted
// relative to the temporary directory.
func (e *buildEnv) file(rel string) string {
return filepath.Join(e.tmpdir, filepath.FromSlash(rel))
}
// logger provides basic logging and error checking.
type logger struct {
stdout io.Writer
stderr io.Writer
verbose bool
}
func (l *logger) init(stdout io.Writer, stderr io.Writer) {
l.stdout = stdout
l.stderr = stderr
}
func (l *logger) check(err error) {
if err != nil {
l.errf("%s", err)
exit(1)
}
}
func (l *logger) outf(format string, args ...interface{}) {
_, _ = fmt.Fprintf(l.stdout, format+"\n", args...)
}
func (l *logger) errf(format string, args ...interface{}) {
_, _ = fmt.Fprintf(l.stderr, format+"\n", args...)
}
func (l *logger) verbosef(format string, args ...interface{}) {
if l.verbose {
l.errf(format, args...)
}
}
// argInfo describes the properties of an item that will be instrumented.
//
// If it is inside GOPATH, it or its containing directory is copied, otherwise
// the whole Go module will be copied.
//
// If it is a file, only that file is instrumented, otherwise the whole package
// is instrumented. Even in case of a single file, the whole directory is
// copied though.
type argInfo struct {
// From the command line, using either '/' or '\\' as separator.
arg string
// Either arg if it is a directory, or its containing directory.
// Either absolute, or relative to the current working directory.
//
// This is the directory from which the code is instrumented. The paths
// to the files in this directory will end up in the coverage output.
argDir string
// Whether arg is a module (true) or a traditional package (false).
module bool
// The directory that will be copied to the build environment.
// Either absolute, or relative to the current working directory.
// For modules, it is the module root, so that go.mod is copied as well.
// For other packages it is the package directory itself.
copySrc string
// The copy destination, relative to tmpdir.
// For modules, it is some directory outside 'gopath/src',
// traditional packages are copied to 'gopath/src/$pkgname'.
copyDst string
// The single file in which to instrument the code, relative to instrDir,
// or "" to instrument the whole package.
instrFile string
// The directory where the instrumented code is saved, relative to tmpdir.
// The directory in which to run 'go test', relative to tmpdir.
instrDir string
}
type condition struct {
Start string
Code string
TrueCount int
FalseCount int
}