frostfs-sdk-go/api/status/test/generate.go
Pavel Pogodaev 6ce73790ea
All checks were successful
DCO / DCO (pull_request) Successful in 38s
Tests and linters / Tests (pull_request) Successful in 1m13s
Tests and linters / Lint (pull_request) Successful in 2m36s
[#276] Merge repo with frostfs-api-go
Signed-off-by: Pavel Pogodaev <p.pogodaev@yadro.com>
2024-10-22 14:05:12 +00:00

44 lines
809 B
Go

package statustest
import (
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/api/status"
)
// Detail returns status.Detail filled with static random values.
func Detail(empty bool) *status.Detail {
m := new(status.Detail)
if !empty {
m.SetID(345)
m.SetValue([]byte("value"))
}
return m
}
// Details returns several status.Detail messages filled with static random values.
func Details(empty bool) []status.Detail {
var res []status.Detail
if !empty {
res = append(res,
*Detail(false),
*Detail(false),
)
}
return res
}
// Status returns status.Status messages filled with static random values.
func Status(empty bool) *status.Status {
m := new(status.Status)
if !empty {
m.SetCode(765)
m.SetMessage("some string")
status.SetStatusDetails(m, Details(false))
}
return m
}