2917dd6c76
See https://github.com/ooni/probe/issues/2088 (issue) and https://github.com/ooni/spec/pull/236 (spec).
122 lines
2.8 KiB
Go
122 lines
2.8 KiB
Go
package tlsping
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"net/url"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ooni/probe-cli/v3/internal/engine/mockable"
|
|
"github.com/ooni/probe-cli/v3/internal/model"
|
|
)
|
|
|
|
func TestConfig_alpn(t *testing.T) {
|
|
c := Config{}
|
|
if c.alpn() != "h2 http/1.1" {
|
|
t.Fatal("invalid default alpn list")
|
|
}
|
|
}
|
|
|
|
func TestConfig_repetitions(t *testing.T) {
|
|
c := Config{}
|
|
if c.repetitions() != 10 {
|
|
t.Fatal("invalid default number of repetitions")
|
|
}
|
|
}
|
|
|
|
func TestConfig_delay(t *testing.T) {
|
|
c := Config{}
|
|
if c.delay() != time.Second {
|
|
t.Fatal("invalid default delay")
|
|
}
|
|
}
|
|
|
|
func TestMeasurer_run(t *testing.T) {
|
|
// expectedPings is the expected number of pings
|
|
const expectedPings = 4
|
|
|
|
// runHelper is an helper function to run this set of tests.
|
|
runHelper := func(input string) (*model.Measurement, model.ExperimentMeasurer, error) {
|
|
m := NewExperimentMeasurer(Config{
|
|
ALPN: "http/1.1",
|
|
Delay: 1, // millisecond
|
|
Repetitions: expectedPings,
|
|
})
|
|
if m.ExperimentName() != "tlsping" {
|
|
t.Fatal("invalid experiment name")
|
|
}
|
|
if m.ExperimentVersion() != "0.1.0" {
|
|
t.Fatal("invalid experiment version")
|
|
}
|
|
ctx := context.Background()
|
|
meas := &model.Measurement{
|
|
Input: model.MeasurementTarget(input),
|
|
}
|
|
sess := &mockable.Session{
|
|
MockableLogger: model.DiscardLogger,
|
|
}
|
|
callbacks := model.NewPrinterCallbacks(model.DiscardLogger)
|
|
err := m.Run(ctx, sess, meas, callbacks)
|
|
return meas, m, err
|
|
}
|
|
|
|
t.Run("with empty input", func(t *testing.T) {
|
|
_, _, err := runHelper("")
|
|
if !errors.Is(err, errNoInputProvided) {
|
|
t.Fatal("unexpected error", err)
|
|
}
|
|
})
|
|
|
|
t.Run("with invalid URL", func(t *testing.T) {
|
|
_, _, err := runHelper("\t")
|
|
if !errors.Is(err, errInputIsNotAnURL) {
|
|
t.Fatal("unexpected error", err)
|
|
}
|
|
})
|
|
|
|
t.Run("with invalid scheme", func(t *testing.T) {
|
|
_, _, err := runHelper("https://8.8.8.8:443/")
|
|
if !errors.Is(err, errInvalidScheme) {
|
|
t.Fatal("unexpected error", err)
|
|
}
|
|
})
|
|
|
|
t.Run("with missing port", func(t *testing.T) {
|
|
_, _, err := runHelper("tlshandshake://8.8.8.8")
|
|
if !errors.Is(err, errMissingPort) {
|
|
t.Fatal("unexpected error", err)
|
|
}
|
|
})
|
|
|
|
t.Run("with local listener", func(t *testing.T) {
|
|
srvr := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(200)
|
|
}))
|
|
defer srvr.Close()
|
|
URL, err := url.Parse(srvr.URL)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
URL.Scheme = "tlshandshake"
|
|
meas, m, err := runHelper(URL.String())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
tk := meas.TestKeys.(*TestKeys)
|
|
if len(tk.Pings) != expectedPings {
|
|
t.Fatal("unexpected number of pings")
|
|
}
|
|
ask, err := m.GetSummaryKeys(meas)
|
|
if err != nil {
|
|
t.Fatal("cannot obtain summary")
|
|
}
|
|
summary := ask.(SummaryKeys)
|
|
if summary.IsAnomaly {
|
|
t.Fatal("expected no anomaly")
|
|
}
|
|
})
|
|
}
|