frostfs-api-go/pkg/acl/eacl/test/generate.go
Leonard Lyubich 88a3829b39 [#293] pkg/eacl: Implement and use generator of Target
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2021-06-08 18:59:15 +03:00

18 lines
269 B
Go

package eacltest
import (
"github.com/nspcc-dev/neofs-api-go/pkg/acl/eacl"
)
// Target returns random eacl.Target.
func Target() *eacl.Target {
x := eacl.NewTarget()
x.SetRole(eacl.RoleSystem)
x.SetBinaryKeys([][]byte{
{1, 2, 3},
{4, 5, 6},
})
return x
}