forked from TrueCloudLab/frostfs-sdk-go
[#332] client/status: Support RESOURCE_EXHAUSTED
status
Signed-off-by: Aleksey Savchuk <a.savchuk@yadro.com>
This commit is contained in:
parent
cf0bbd03ae
commit
7bdc78f2b5
4 changed files with 102 additions and 0 deletions
|
@ -65,6 +65,8 @@ const (
|
||||||
NodeUnderMaintenance
|
NodeUnderMaintenance
|
||||||
// InvalidArgument is a local Code value for INVALID_ARGUMENT status.
|
// InvalidArgument is a local Code value for INVALID_ARGUMENT status.
|
||||||
InvalidArgument
|
InvalidArgument
|
||||||
|
// ResourceExhausted is a local Code value for RESOURCE_EXHAUSTED status.
|
||||||
|
ResourceExhausted
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -296,3 +296,62 @@ func (x *InvalidArgument) SetMessage(v string) {
|
||||||
func (x InvalidArgument) Message() string {
|
func (x InvalidArgument) Message() string {
|
||||||
return x.v2.Message()
|
return x.v2.Message()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ResourceExhausted is a failure status indicating that
|
||||||
|
// the operation cannot be performed due to a lack of resources.
|
||||||
|
// Instances provide Status and StatusV2 interfaces.
|
||||||
|
type ResourceExhausted struct {
|
||||||
|
v2 status.Status
|
||||||
|
}
|
||||||
|
|
||||||
|
const defaultResourceExhaustedMsg = "resource exhausted"
|
||||||
|
|
||||||
|
// Error implements the error interface.
|
||||||
|
func (x *ResourceExhausted) Error() string {
|
||||||
|
msg := x.v2.Message()
|
||||||
|
if msg == "" {
|
||||||
|
msg = defaultResourceExhaustedMsg
|
||||||
|
}
|
||||||
|
|
||||||
|
return errMessageStatusV2(
|
||||||
|
globalizeCodeV2(status.ResourceExhausted, status.GlobalizeCommonFail),
|
||||||
|
msg,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// implements local interface defined in FromStatusV2 func.
|
||||||
|
func (x *ResourceExhausted) fromStatusV2(st *status.Status) {
|
||||||
|
x.v2 = *st
|
||||||
|
}
|
||||||
|
|
||||||
|
// ToStatusV2 implements StatusV2 interface method.
|
||||||
|
// If the value was returned by FromStatusV2, returns the source message.
|
||||||
|
// Otherwise, returns message with
|
||||||
|
// - code: RESOURCE_EXHAUSTED;
|
||||||
|
// - string message: written message via SetMessage or
|
||||||
|
// "resource exhausted" as a default message;
|
||||||
|
// - details: empty.
|
||||||
|
func (x ResourceExhausted) ToStatusV2() *status.Status {
|
||||||
|
x.v2.SetCode(globalizeCodeV2(status.ResourceExhausted, status.GlobalizeCommonFail))
|
||||||
|
if x.v2.Message() == "" {
|
||||||
|
x.v2.SetMessage(defaultResourceExhaustedMsg)
|
||||||
|
}
|
||||||
|
|
||||||
|
return &x.v2
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetMessage writes invalid argument failure message.
|
||||||
|
// Message should be used for debug purposes only.
|
||||||
|
//
|
||||||
|
// See also Message.
|
||||||
|
func (x *ResourceExhausted) SetMessage(v string) {
|
||||||
|
x.v2.SetMessage(v)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Message returns status message. Zero status returns empty message.
|
||||||
|
// Message should be used for debug purposes only.
|
||||||
|
//
|
||||||
|
// See also SetMessage.
|
||||||
|
func (x ResourceExhausted) Message() string {
|
||||||
|
return x.v2.Message()
|
||||||
|
}
|
||||||
|
|
|
@ -167,3 +167,42 @@ func TestInvalidArgument(t *testing.T) {
|
||||||
require.Equal(t, msg, stV2.Message())
|
require.Equal(t, msg, stV2.Message())
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestResourceExhausted(t *testing.T) {
|
||||||
|
t.Run("default", func(t *testing.T) {
|
||||||
|
var st apistatus.ResourceExhausted
|
||||||
|
|
||||||
|
require.Empty(t, st.Message())
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("custom message", func(t *testing.T) {
|
||||||
|
var st apistatus.ResourceExhausted
|
||||||
|
msg := "some message"
|
||||||
|
|
||||||
|
st.SetMessage(msg)
|
||||||
|
|
||||||
|
stV2 := st.ToStatusV2()
|
||||||
|
|
||||||
|
require.Equal(t, msg, st.Message())
|
||||||
|
require.Equal(t, msg, stV2.Message())
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("empty to V2", func(t *testing.T) {
|
||||||
|
var st apistatus.ResourceExhausted
|
||||||
|
|
||||||
|
stV2 := st.ToStatusV2()
|
||||||
|
|
||||||
|
require.Equal(t, "resource exhausted", stV2.Message())
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("non-empty to V2", func(t *testing.T) {
|
||||||
|
var st apistatus.ResourceExhausted
|
||||||
|
msg := "some other msg"
|
||||||
|
|
||||||
|
st.SetMessage(msg)
|
||||||
|
|
||||||
|
stV2 := st.ToStatusV2()
|
||||||
|
|
||||||
|
require.Equal(t, msg, stV2.Message())
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
|
@ -80,6 +80,8 @@ func FromStatusV2(st *status.Status) Status {
|
||||||
decoder = new(NodeUnderMaintenance)
|
decoder = new(NodeUnderMaintenance)
|
||||||
case status.InvalidArgument:
|
case status.InvalidArgument:
|
||||||
decoder = new(InvalidArgument)
|
decoder = new(InvalidArgument)
|
||||||
|
case status.ResourceExhausted:
|
||||||
|
decoder = new(ResourceExhausted)
|
||||||
}
|
}
|
||||||
case object.LocalizeFailStatus(&code):
|
case object.LocalizeFailStatus(&code):
|
||||||
switch code {
|
switch code {
|
||||||
|
|
Loading…
Add table
Reference in a new issue