Alex Vanin
94476f9055
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
39 lines
981 B
Go
39 lines
981 B
Go
package containertest
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/acl"
|
|
cidtest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id/test"
|
|
netmaptest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/netmap/test"
|
|
usertest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/user/test"
|
|
)
|
|
|
|
// Container returns random container.Container.
|
|
func Container() (x container.Container) {
|
|
owner := usertest.ID()
|
|
|
|
x.Init()
|
|
x.SetAttribute("some attribute", "value")
|
|
x.SetOwner(*owner)
|
|
x.SetBasicACL(BasicACL())
|
|
x.SetPlacementPolicy(netmaptest.PlacementPolicy())
|
|
|
|
return x
|
|
}
|
|
|
|
// SizeEstimation returns random container.SizeEstimation.
|
|
func SizeEstimation() (x container.SizeEstimation) {
|
|
x.SetContainer(cidtest.ID())
|
|
x.SetEpoch(rand.Uint64())
|
|
x.SetValue(rand.Uint64())
|
|
|
|
return x
|
|
}
|
|
|
|
// BasicACL returns random acl.Basic.
|
|
func BasicACL() (x acl.Basic) {
|
|
x.FromBits(rand.Uint32())
|
|
return
|
|
}
|