mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Previously, we were using our own `FromStatusCode` function to map HTTP status codes to Docker error types. Switch to the containerd code. Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
94 lines
1.7 KiB
Go
94 lines
1.7 KiB
Go
package errdefs
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestFromStatusCode(t *testing.T) {
|
|
testErr := fmt.Errorf("some error occurred")
|
|
|
|
testCases := []struct {
|
|
err error
|
|
status int
|
|
check func(error) bool
|
|
}{
|
|
{
|
|
err: testErr,
|
|
status: http.StatusNotFound,
|
|
check: IsNotFound,
|
|
},
|
|
{
|
|
err: testErr,
|
|
status: http.StatusBadRequest,
|
|
check: IsInvalidParameter,
|
|
},
|
|
{
|
|
err: testErr,
|
|
status: http.StatusConflict,
|
|
check: IsConflict,
|
|
},
|
|
{
|
|
err: testErr,
|
|
status: http.StatusUnauthorized,
|
|
check: IsUnauthorized,
|
|
},
|
|
{
|
|
err: testErr,
|
|
status: http.StatusServiceUnavailable,
|
|
check: IsUnavailable,
|
|
},
|
|
{
|
|
err: testErr,
|
|
status: http.StatusForbidden,
|
|
check: IsForbidden,
|
|
},
|
|
{
|
|
err: testErr,
|
|
status: http.StatusNotModified,
|
|
check: IsNotModified,
|
|
},
|
|
{
|
|
err: testErr,
|
|
status: http.StatusNotImplemented,
|
|
check: IsNotImplemented,
|
|
},
|
|
{
|
|
err: testErr,
|
|
status: http.StatusInternalServerError,
|
|
check: IsSystem,
|
|
},
|
|
{
|
|
err: Unknown(testErr),
|
|
status: http.StatusInternalServerError,
|
|
check: IsUnknown,
|
|
},
|
|
{
|
|
err: DataLoss(testErr),
|
|
status: http.StatusInternalServerError,
|
|
check: IsDataLoss,
|
|
},
|
|
{
|
|
err: Deadline(testErr),
|
|
status: http.StatusInternalServerError,
|
|
check: IsDeadline,
|
|
},
|
|
{
|
|
err: Cancelled(testErr),
|
|
status: http.StatusInternalServerError,
|
|
check: IsCancelled,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(http.StatusText(tc.status), func(t *testing.T) {
|
|
//nolint:staticcheck // ignore SA1019: FromStatusCode is deprecated
|
|
err := FromStatusCode(tc.err, tc.status)
|
|
if !tc.check(err) {
|
|
t.Errorf("unexpected error-type %T", err)
|
|
}
|
|
})
|
|
}
|
|
}
|