forked from TrueCloudLab/frostfs-api-go
38 lines
907 B
Go
38 lines
907 B
Go
|
package audittest
|
||
|
|
||
|
import (
|
||
|
"github.com/nspcc-dev/neofs-api-go/pkg/audit"
|
||
|
cidtest "github.com/nspcc-dev/neofs-api-go/pkg/container/id/test"
|
||
|
"github.com/nspcc-dev/neofs-api-go/pkg/object"
|
||
|
objecttest "github.com/nspcc-dev/neofs-api-go/pkg/object/test"
|
||
|
refstest "github.com/nspcc-dev/neofs-api-go/pkg/test"
|
||
|
)
|
||
|
|
||
|
// Generate returns random audit.Result.
|
||
|
func Generate() *audit.Result {
|
||
|
x := audit.NewResult()
|
||
|
|
||
|
x.SetVersion(refstest.Version())
|
||
|
x.SetContainerID(cidtest.Generate())
|
||
|
x.SetPublicKey([]byte("key"))
|
||
|
x.SetComplete(true)
|
||
|
x.SetAuditEpoch(44)
|
||
|
x.SetHit(55)
|
||
|
x.SetMiss(66)
|
||
|
x.SetFail(77)
|
||
|
x.SetRetries(88)
|
||
|
x.SetRequests(99)
|
||
|
x.SetFailNodes([][]byte{
|
||
|
[]byte("node1"),
|
||
|
[]byte("node2"),
|
||
|
})
|
||
|
x.SetPassNodes([][]byte{
|
||
|
[]byte("node3"),
|
||
|
[]byte("node4"),
|
||
|
})
|
||
|
x.SetPassSG([]*object.ID{objecttest.ID(), objecttest.ID()})
|
||
|
x.SetFailSG([]*object.ID{objecttest.ID(), objecttest.ID()})
|
||
|
|
||
|
return x
|
||
|
}
|