2018-03-21 12:18:45 +01:00
|
|
|
package im
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/measurement-kit/go-measurement-kit"
|
2018-05-03 14:59:55 +02:00
|
|
|
"github.com/ooni/probe-cli/nettests"
|
2018-03-21 12:18:45 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// WhatsApp test implementation
|
|
|
|
type WhatsApp struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run starts the test
|
|
|
|
func (h WhatsApp) Run(ctl *nettests.Controller) error {
|
|
|
|
mknt := mk.NewNettest("Whatsapp")
|
|
|
|
ctl.Init(mknt)
|
|
|
|
return mknt.Run()
|
|
|
|
}
|
|
|
|
|
2018-09-10 12:41:28 +02:00
|
|
|
// WhatsAppTestKeys for the test
|
|
|
|
type WhatsAppTestKeys struct {
|
|
|
|
RegistrationServerBlocking bool `json:"registration_server_blocking"`
|
|
|
|
WebBlocking bool `json:"whatsapp_web_blocking"`
|
|
|
|
EndpointsBlocking bool `json:"whatsapp_endpoints_blocking"`
|
|
|
|
IsAnomaly bool `json:"-"`
|
2018-03-21 12:18:45 +01:00
|
|
|
}
|
|
|
|
|
2018-09-10 12:41:28 +02:00
|
|
|
// GetTestKeys generates a summary for a test run
|
2018-09-27 11:40:57 +02:00
|
|
|
func (h WhatsApp) GetTestKeys(tk map[string]interface{}) (interface{}, error) {
|
2018-03-23 15:22:58 +01:00
|
|
|
var (
|
|
|
|
webBlocking bool
|
|
|
|
registrationBlocking bool
|
|
|
|
endpointsBlocking bool
|
|
|
|
)
|
|
|
|
|
|
|
|
var computeBlocking = func(key string) bool {
|
|
|
|
const blk = "blocked"
|
|
|
|
if tk[key] == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if tk[key].(string) == blk {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
registrationBlocking = computeBlocking("registration_server_status")
|
|
|
|
webBlocking = computeBlocking("whatsapp_web_status")
|
|
|
|
endpointsBlocking = computeBlocking("whatsapp_endpoints_status")
|
2018-03-21 12:18:45 +01:00
|
|
|
|
2018-09-10 12:41:28 +02:00
|
|
|
return WhatsAppTestKeys{
|
2018-03-23 15:22:58 +01:00
|
|
|
RegistrationServerBlocking: registrationBlocking,
|
|
|
|
WebBlocking: webBlocking,
|
|
|
|
EndpointsBlocking: endpointsBlocking,
|
2018-09-10 12:41:28 +02:00
|
|
|
IsAnomaly: registrationBlocking || webBlocking || endpointsBlocking,
|
2018-09-27 11:40:57 +02:00
|
|
|
}, nil
|
2018-03-21 12:18:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// LogSummary writes the summary to the standard output
|
|
|
|
func (h WhatsApp) LogSummary(s string) error {
|
|
|
|
return nil
|
|
|
|
}
|