refactor: signal et al. are now experimental nettests (#243)

* refactor: signal et al. are now experimental nettests

We move signal into the experimental nettests group. While there,
also start adding dnscheck and stunreachability as well.

It seems there's more work to be done to correctly represent
the results of dnscheck, but this is fine!

The experimental section is here exactly for this reason!

In terms of UI, the new command is `ooniprobe run experimental`.

We will most likely move signal out of experimental soon, since it's
already working quite well. We need to keep it here for one more
cycle because the desktop app is not ready for it.

See the following issues:

1. https://github.com/ooni/probe/issues/1378

2. https://github.com/ooni/probe/issues/1262

* fix(dnscheck): spell check

* fix: improve documentation
This commit is contained in:
Simone Basso
2021-03-08 13:38:34 +01:00
committed by GitHub
parent f5461323db
commit da95fa9365
6 changed files with 93 additions and 7 deletions
+2 -1
View File
@@ -69,7 +69,8 @@ func init() {
})
})
easyRuns := []string{"im", "performance", "circumvention", "middlebox"}
easyRuns := []string{
"im", "performance", "circumvention", "middlebox", "experimental"}
for _, name := range easyRuns {
cmd.Command(name, "").Action(genRunWithGroupName(name))
}