summaryrefslogtreecommitdiff
path: root/cmd/planr/sub/evaluate.go
blob: 0366d4425ea962bf26a311438546dc47873e0c39 (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
package sub

import (
  "golang.flu0r1ne.net/planr"
)

func Evaluate(runner planr.Runner, params []string) {
  tcs := runner.CollectCases()
  tcs = runner.Evaluate(tcs)

  earned := 0.0
  total  := 0.0
  passed := 0
  for _, tc := range tcs {
    cfg := tc.Config

    if cfg.Points != nil {
      points := float64(*cfg.Points)

      total += points

      if tc.Result.Status == planr.PASSING {
        earned += points
        passed++
      }
    }

    tcPprint(tc)
  }

  printResults(
    passed,
    len(tcs),
    earned,
    total,
  );
}