ooni-probe-cli/internal/cli/run/run.go

51 lines
1.3 KiB
Go
Raw Normal View History

package run
import (
2018-02-13 17:11:22 +01:00
"time"
"github.com/alecthomas/kingpin"
2018-02-12 16:45:13 +01:00
"github.com/apex/log"
"github.com/openobservatory/gooni/internal/cli/root"
2018-02-13 17:11:22 +01:00
"github.com/openobservatory/gooni/internal/database"
"github.com/openobservatory/gooni/nettests"
2018-02-13 16:16:23 +01:00
"github.com/openobservatory/gooni/nettests/groups"
)
func init() {
cmd := root.Command("run", "Run a test group or OONI Run link")
nettestGroup := cmd.Arg("name", "the nettest group to run").Required().String()
cmd.Action(func(_ *kingpin.ParseContext) error {
log.Infof("Starting %s", *nettestGroup)
2018-02-13 17:11:22 +01:00
_, ctx, err := root.Init()
2018-02-12 16:45:13 +01:00
if err != nil {
log.Errorf("%s", err)
return err
}
2018-02-13 17:11:22 +01:00
group := groups.NettestGroups[*nettestGroup]
log.Debugf("Running test group %s", group.Label)
2018-02-13 16:16:23 +01:00
2018-02-13 17:11:22 +01:00
result, err := database.CreateResult(ctx.DB, database.Result{
Name: *nettestGroup,
StartTime: time.Now().UTC(), // XXX get this from MK
})
if err != nil {
log.Errorf("%s", err)
return err
}
for _, nt := range group.Nettests {
ctl := nettests.NewController(ctx, result)
2018-02-13 17:11:22 +01:00
nt.Run(ctl)
// XXX
// 1. Generate the summary
// 2. Link the measurement to the Result (this should probably happen in
// the nettest class)
// 3. Update the summary of the result and the other metadata in the db
}
result.Update(ctx.DB)
return nil
})
}