forked from TrueCloudLab/frostfs-sdk-go
23 lines
448 B
Go
23 lines
448 B
Go
package tombstonetest
|
|
|
|
import (
|
|
"crypto/rand"
|
|
|
|
refstest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/api/refs/test"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/api/tombstone"
|
|
)
|
|
|
|
func GenerateTombstone(empty bool) *tombstone.Tombstone {
|
|
m := new(tombstone.Tombstone)
|
|
|
|
if !empty {
|
|
id := make([]byte, 16)
|
|
_, _ = rand.Read(id)
|
|
|
|
m.SetExpirationEpoch(89)
|
|
m.SetSplitID(id)
|
|
m.SetMembers(refstest.GenerateObjectIDs(false))
|
|
}
|
|
|
|
return m
|
|
}
|