aboutsummaryrefslogtreecommitdiff
path: root/cmd/planr/sub/evaluate.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/planr/sub/evaluate.go')
-rw-r--r--cmd/planr/sub/evaluate.go52
1 files changed, 52 insertions, 0 deletions
diff --git a/cmd/planr/sub/evaluate.go b/cmd/planr/sub/evaluate.go
new file mode 100644
index 0000000..1174b3f
--- /dev/null
+++ b/cmd/planr/sub/evaluate.go
@@ -0,0 +1,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)
+}