Lay out the structure of nettests
This commit is contained in:
parent
6586166282
commit
7cf5bd2718
8 changed files with 126 additions and 5 deletions
28
nettests/groups/groups.go
Normal file
28
nettests/groups/groups.go
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
package groups
|
||||
|
||||
import (
|
||||
"github.com/openobservatory/gooni/nettests"
|
||||
"github.com/openobservatory/gooni/nettests/websites"
|
||||
)
|
||||
|
||||
// NettestGroups that can be run by the user
|
||||
var NettestGroups = map[string]nettests.NettestGroup{
|
||||
"websites": nettests.NettestGroup{
|
||||
Label: "Websites",
|
||||
Nettests: []nettests.Nettest{
|
||||
websites.WebConnectivity{},
|
||||
},
|
||||
},
|
||||
"performance": nettests.NettestGroup{
|
||||
Label: "Performance",
|
||||
Nettests: []nettests.Nettest{},
|
||||
},
|
||||
"middleboxes": nettests.NettestGroup{
|
||||
Label: "Middleboxes",
|
||||
Nettests: []nettests.Nettest{},
|
||||
},
|
||||
"im": nettests.NettestGroup{
|
||||
Label: "Instant Messaging",
|
||||
Nettests: []nettests.Nettest{},
|
||||
},
|
||||
}
|
||||
Loading…
Reference in a new issue