Documentation ¶
Overview ¶
Package telegram contains the Telegram network experiment.
See https://github.com/ooni/spec/blob/master/nettests/ts-020-telegram.md.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewExperimentMeasurer ¶
func NewExperimentMeasurer(config Config) model.ExperimentMeasurer
NewExperimentMeasurer creates a new ExperimentMeasurer.
Types ¶
type Measurer ¶
type Measurer struct { // Config contains the experiment settings. If empty we // will be using default settings. Config Config // Getter is an optional getter to be used for testing. Getter urlgetter.MultiGetter }
Measurer performs the measurement
func (Measurer) ExperimentName ¶
ExperimentName implements ExperimentMeasurer.ExperimentName
func (Measurer) ExperimentVersion ¶
ExperimentVersion implements ExperimentMeasurer.ExperimentVersion
func (Measurer) GetSummaryKeys ¶
func (m Measurer) GetSummaryKeys(measurement *model.Measurement) (interface{}, error)
GetSummaryKeys implements model.ExperimentMeasurer.GetSummaryKeys.
type SummaryKeys ¶
type SummaryKeys struct { HTTPBlocking bool `json:"telegram_http_blocking"` TCPBlocking bool `json:"telegram_tcp_blocking"` WebBlocking bool `json:"telegram_web_blocking"` IsAnomaly bool `json:"-"` }
SummaryKeys contains summary keys for this experiment.
Note that this structure is part of the ABI contract with ooniprobe therefore we should be careful when changing it.
type TestKeys ¶
type TestKeys struct { urlgetter.TestKeys TelegramHTTPBlocking bool `json:"telegram_http_blocking"` TelegramTCPBlocking bool `json:"telegram_tcp_blocking"` TelegramWebFailure *string `json:"telegram_web_failure"` TelegramWebStatus string `json:"telegram_web_status"` }
TestKeys contains telegram test keys.
func (*TestKeys) Update ¶
func (tk *TestKeys) Update(v urlgetter.MultiOutput)
Update updates the TestKeys using the given MultiOutput result.