-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdump.go
82 lines (65 loc) · 1.42 KB
/
dump.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
package main
import (
"fmt"
"io"
"strings"
"text/tabwriter"
)
func dump(out io.Writer, file string, showCovered bool) error {
profs, err := makeProfiles(file)
if err != nil {
return err
}
if len(profs) == 0 {
fmt.Fprintln(out, "No files covered.")
return nil
}
base := profs.getBase()
fmt.Fprintf(out, "\nBase: %s\n\n", base)
w := newWriter(out)
defer w.Flush()
w.print("File", "Lines", "Exec", "Cover", "Missing")
w.blank()
totalLines := 0
totalExec := 0
for _, prof := range profs {
if len(prof.missing) > 0 || showCovered {
w.summary(
strings.TrimPrefix(prof.filename, base),
prof.total, prof.exec,
strings.Join(prof.missing, ","))
}
totalLines += prof.total
totalExec += prof.exec
}
w.blank()
w.summary(
"TOTAL",
totalLines, totalExec,
"")
return nil
}
type writer struct {
*tabwriter.Writer
}
func newWriter(w io.Writer) writer {
return writer{tabwriter.NewWriter(w, 0, 4, 2, ' ', 0)}
}
func (w writer) blank() {
w.print("", "", "", "", "")
}
func (w writer) print(file, total, exec, cover, missing string) {
fmt.Fprintf(w, "%s\t%s\t%s\t%s\t%s\n", file, total, exec, cover, missing)
}
func (w writer) summary(name string, total, exec int, missing string) {
covered := float64(exec) / float64(total)
if exec == 0 && total == 0 {
covered = 1
}
w.print(
name,
fmt.Sprintf("%d", total),
fmt.Sprintf("%d", exec),
fmt.Sprintf("%0.1f%%", covered*100),
missing)
}