feat(oonirun): improve tests (#915)
See https://github.com/ooni/probe/issues/2184 While there, rename `runtimex.PanicIfFalse` to `runtimex.Assert` (it was about time...)
This commit is contained in:
parent
a8a29cc0dd
commit
d0da224a2a
32 changed files with 1837 additions and 112 deletions
27
internal/model/mocks/experimentinputloader_test.go
Normal file
27
internal/model/mocks/experimentinputloader_test.go
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
package mocks
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"testing"
|
||||
|
||||
"github.com/ooni/probe-cli/v3/internal/model"
|
||||
)
|
||||
|
||||
func TestExperimentInputLoader(t *testing.T) {
|
||||
t.Run("Load", func(t *testing.T) {
|
||||
expected := errors.New("mocked error")
|
||||
eil := &ExperimentInputLoader{
|
||||
MockLoad: func(ctx context.Context) ([]model.OOAPIURLInfo, error) {
|
||||
return nil, expected
|
||||
},
|
||||
}
|
||||
out, err := eil.Load(context.Background())
|
||||
if !errors.Is(err, expected) {
|
||||
t.Fatal("unexpected err", err)
|
||||
}
|
||||
if len(out) > 0 {
|
||||
t.Fatal("unexpected length")
|
||||
}
|
||||
})
|
||||
}
|
||||
Loading…
Reference in a new issue