28 lines
526 B
Go
28 lines
526 B
Go
|
package v2
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"forge.cadoles.com/cadoles/go-emlid/reach/client/protocol"
|
||
|
"forge.cadoles.com/cadoles/go-emlid/reach/client/protocol/testsuite"
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
func TestProtocolV2Operations(t *testing.T) {
|
||
|
proto := &Protocol{}
|
||
|
|
||
|
factory := func(addr string) (protocol.Operations, error) {
|
||
|
ctx := context.Background()
|
||
|
|
||
|
ops, err := proto.Available(ctx, addr)
|
||
|
if err != nil {
|
||
|
return nil, errors.WithStack(err)
|
||
|
}
|
||
|
|
||
|
return ops, nil
|
||
|
}
|
||
|
|
||
|
testsuite.TestOperations(t, factory)
|
||
|
}
|