blob: 1174b3fb0afb77407de34e19d5a58c36027c5297 (
plain)
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
|
package sub
import (
"fmt"
"golang.flu0r1ne.net/planr"
)
func Evaluate(params []string) {
rd := planr.RubricDir()
tcs := Runner().Evaluate(rd)
fmt.Printf("\n\nREPORT:\n=======\n\n")
earned := 0.0
total := 0.0
for _, tc := range tcs {
cfg := tc.Config
name := tc.Cname
if cfg.Title != nil {
name = *cfg.Title
}
var points float64 = 0.0
if cfg.Points != nil {
points = float64(*cfg.Points)
}
status := "SILENT"
if tc.Result != nil {
if tc.Result.Pass {
status = "PASS"
earned += points
} else {
status = "FAIL"
}
}
total += points
fmt.Printf("[%s] %s (%f)\n", status, name, points)
if cfg.Description != nil {
fmt.Printf("> %s\n", *cfg.Description)
}
fmt.Println()
}
fmt.Printf("Score: %f (%f%%)\n", earned, (earned / total) * 100)
}
|