1031f3122e
Implement `message.Message` interface on all structures and use new methods for conversion instead of functions. make `Unmarshal` and JSON methods to use encoding functions from `message` library. Remove all per-service clients and implement `rpc` library of the functions which execute NeoFS API RPC through new RPC client. Remove no longer used gRPC per-service clients. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
21 lines
854 B
Go
21 lines
854 B
Go
package refs_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/rpc/message"
|
|
messagetest "github.com/nspcc-dev/neofs-api-go/rpc/message/test"
|
|
refstest "github.com/nspcc-dev/neofs-api-go/v2/refs/test"
|
|
)
|
|
|
|
func TestMessageConvert(t *testing.T) {
|
|
messagetest.TestRPCMessage(t,
|
|
func(empty bool) message.Message { return refstest.GenerateOwnerID(empty) },
|
|
func(empty bool) message.Message { return refstest.GenerateObjectID(empty) },
|
|
func(empty bool) message.Message { return refstest.GenerateContainerID(empty) },
|
|
func(empty bool) message.Message { return refstest.GenerateAddress(empty) },
|
|
func(empty bool) message.Message { return refstest.GenerateChecksum(empty) },
|
|
func(empty bool) message.Message { return refstest.GenerateSignature(empty) },
|
|
func(empty bool) message.Message { return refstest.GenerateVersion(empty) },
|
|
)
|
|
}
|