2021-03-24 06:04:26 +00:00
|
|
|
package reputationtest
|
|
|
|
|
|
|
|
import (
|
2021-04-01 14:39:29 +00:00
|
|
|
refstest "github.com/nspcc-dev/neofs-api-go/v2/refs/test"
|
2021-03-24 06:04:26 +00:00
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/reputation"
|
|
|
|
sessiontest "github.com/nspcc-dev/neofs-api-go/v2/session/test"
|
|
|
|
)
|
|
|
|
|
2021-04-01 14:39:29 +00:00
|
|
|
func GeneratePeerID(empty bool) *reputation.PeerID {
|
|
|
|
m := new(reputation.PeerID)
|
|
|
|
|
|
|
|
if !empty {
|
|
|
|
m.SetValue([]byte{1, 2, 3})
|
|
|
|
}
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2021-03-24 06:04:26 +00:00
|
|
|
func GenerateTrust(empty bool) *reputation.Trust {
|
|
|
|
m := new(reputation.Trust)
|
|
|
|
|
|
|
|
if !empty {
|
|
|
|
m.SetValue(1)
|
|
|
|
}
|
|
|
|
|
2021-04-01 14:39:29 +00:00
|
|
|
m.SetPeer(GeneratePeerID(empty))
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2021-04-09 08:28:06 +00:00
|
|
|
func GeneratePeerToPeerTrust(empty bool) *reputation.PeerToPeerTrust {
|
|
|
|
m := new(reputation.PeerToPeerTrust)
|
|
|
|
|
|
|
|
m.SetTrustingPeer(GeneratePeerID(empty))
|
|
|
|
m.SetTrust(GenerateTrust(empty))
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2021-04-01 14:39:29 +00:00
|
|
|
func GenerateGlobalTrustBody(empty bool) *reputation.GlobalTrustBody {
|
|
|
|
m := new(reputation.GlobalTrustBody)
|
|
|
|
|
|
|
|
m.SetManager(GeneratePeerID(empty))
|
|
|
|
m.SetTrust(GenerateTrust(empty))
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateGlobalTrust(empty bool) *reputation.GlobalTrust {
|
|
|
|
m := new(reputation.GlobalTrust)
|
|
|
|
|
|
|
|
m.SetVersion(refstest.GenerateVersion(empty))
|
|
|
|
m.SetBody(GenerateGlobalTrustBody(empty))
|
|
|
|
m.SetSignature(refstest.GenerateSignature(empty))
|
|
|
|
|
2021-03-24 06:04:26 +00:00
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateTrusts(empty bool) (res []*reputation.Trust) {
|
|
|
|
if !empty {
|
|
|
|
res = append(res,
|
|
|
|
GenerateTrust(false),
|
|
|
|
GenerateTrust(false),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateSendLocalTrustRequestBody(empty bool) *reputation.SendLocalTrustRequestBody {
|
|
|
|
m := new(reputation.SendLocalTrustRequestBody)
|
|
|
|
|
|
|
|
if !empty {
|
|
|
|
m.SetEpoch(13)
|
|
|
|
}
|
|
|
|
|
|
|
|
m.SetTrusts(GenerateTrusts(empty))
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateSendLocalTrustRequest(empty bool) *reputation.SendLocalTrustRequest {
|
|
|
|
m := new(reputation.SendLocalTrustRequest)
|
|
|
|
|
|
|
|
m.SetBody(GenerateSendLocalTrustRequestBody(empty))
|
|
|
|
m.SetMetaHeader(sessiontest.GenerateRequestMetaHeader(empty))
|
|
|
|
m.SetVerificationHeader(sessiontest.GenerateRequestVerificationHeader(empty))
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateSendLocalTrustResponseBody(empty bool) *reputation.SendLocalTrustResponseBody {
|
|
|
|
m := new(reputation.SendLocalTrustResponseBody)
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateSendLocalTrustResponse(empty bool) *reputation.SendLocalTrustResponse {
|
|
|
|
m := new(reputation.SendLocalTrustResponse)
|
|
|
|
|
|
|
|
m.SetBody(GenerateSendLocalTrustResponseBody(empty))
|
|
|
|
m.SetMetaHeader(sessiontest.GenerateResponseMetaHeader(empty))
|
|
|
|
m.SetVerificationHeader(sessiontest.GenerateResponseVerificationHeader(empty))
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
2021-04-01 14:39:29 +00:00
|
|
|
|
|
|
|
func GenerateSendIntermediateResultRequestBody(empty bool) *reputation.SendIntermediateResultRequestBody {
|
|
|
|
m := new(reputation.SendIntermediateResultRequestBody)
|
|
|
|
|
|
|
|
if !empty {
|
2021-04-22 07:40:12 +00:00
|
|
|
m.SetEpoch(123)
|
2021-04-01 14:39:29 +00:00
|
|
|
m.SetIteration(564)
|
2021-04-27 06:52:23 +00:00
|
|
|
m.SetTrust(GeneratePeerToPeerTrust(empty))
|
2021-04-01 14:39:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateSendIntermediateResultRequest(empty bool) *reputation.SendIntermediateResultRequest {
|
|
|
|
m := new(reputation.SendIntermediateResultRequest)
|
|
|
|
|
|
|
|
m.SetBody(GenerateSendIntermediateResultRequestBody(empty))
|
|
|
|
m.SetMetaHeader(sessiontest.GenerateRequestMetaHeader(empty))
|
|
|
|
m.SetVerificationHeader(sessiontest.GenerateRequestVerificationHeader(empty))
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateSendIntermediateResultResponseBody(empty bool) *reputation.SendIntermediateResultResponseBody {
|
|
|
|
m := new(reputation.SendIntermediateResultResponseBody)
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateSendIntermediateResultResponse(empty bool) *reputation.SendIntermediateResultResponse {
|
|
|
|
m := new(reputation.SendIntermediateResultResponse)
|
|
|
|
|
|
|
|
m.SetBody(GenerateSendIntermediateResultResponseBody(empty))
|
|
|
|
m.SetMetaHeader(sessiontest.GenerateResponseMetaHeader(empty))
|
|
|
|
m.SetVerificationHeader(sessiontest.GenerateResponseVerificationHeader(empty))
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|