580f6c5554
Define `subnet.Info` structure of corresponding message from NeoFS API protocol. Provide field getters and setters. Implement `StableMarshal` / `StableSize` methods of binary encoding. Implement `ToGRPCMessage` / `FromGRPCMessage` method for testing and potential transport. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
15 lines
389 B
Go
15 lines
389 B
Go
package subnet_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/rpc/message"
|
|
messagetest "github.com/nspcc-dev/neofs-api-go/v2/rpc/message/test"
|
|
subnettest "github.com/nspcc-dev/neofs-api-go/v2/subnet/test"
|
|
)
|
|
|
|
func TestMessageConvert(t *testing.T) {
|
|
messagetest.TestRPCMessage(t,
|
|
func(empty bool) message.Message { return subnettest.GenerateSubnetInfo(empty) },
|
|
)
|
|
}
|