forked from TrueCloudLab/frostfs-api-go
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>
17 lines
332 B
Go
17 lines
332 B
Go
package subnettest
|
|
|
|
import (
|
|
refstest "github.com/nspcc-dev/neofs-api-go/v2/refs/test"
|
|
"github.com/nspcc-dev/neofs-api-go/v2/subnet"
|
|
)
|
|
|
|
func GenerateSubnetInfo(empty bool) *subnet.Info {
|
|
m := new(subnet.Info)
|
|
|
|
if !empty {
|
|
m.SetID(refstest.GenerateSubnetID(false))
|
|
m.SetOwner(refstest.GenerateOwnerID(false))
|
|
}
|
|
|
|
return m
|
|
}
|