forked from TrueCloudLab/frostfs-api-go
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>
20 lines
446 B
Go
20 lines
446 B
Go
package storagegrouptest
|
|
|
|
import (
|
|
refstest "github.com/nspcc-dev/neofs-api-go/v2/refs/test"
|
|
"github.com/nspcc-dev/neofs-api-go/v2/storagegroup"
|
|
)
|
|
|
|
func GenerateStorageGroup(empty bool) *storagegroup.StorageGroup {
|
|
m := new(storagegroup.StorageGroup)
|
|
|
|
if !empty {
|
|
m.SetValidationDataSize(44)
|
|
m.SetExpirationEpoch(55)
|
|
}
|
|
|
|
m.SetValidationHash(refstest.GenerateChecksum(empty))
|
|
m.SetMembers(refstest.GenerateObjectIDs(empty))
|
|
|
|
return m
|
|
}
|