forked from danielgtaylor/huma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error_test.go
139 lines (116 loc) · 3.89 KB
/
error_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package huma_test
import (
"context"
"errors"
"fmt"
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/danielgtaylor/huma/v2"
"github.com/danielgtaylor/huma/v2/humatest"
)
// Ensure the default error models satisfy these interfaces.
var _ huma.StatusError = (*huma.ErrorModel)(nil)
var _ huma.ContentTypeFilter = (*huma.ErrorModel)(nil)
var _ huma.ErrorDetailer = (*huma.ErrorDetail)(nil)
func TestError(t *testing.T) {
err := &huma.ErrorModel{
Status: 400,
Detail: "test err",
}
// Add some children.
err.Add(&huma.ErrorDetail{
Message: "test detail",
Location: "body.foo",
Value: "bar",
})
err.Add(errors.New("plain error"))
// Confirm errors were added.
assert.Equal(t, "test err", err.Error())
assert.Len(t, err.Errors, 2)
assert.Equal(t, "test detail (body.foo: bar)", err.Errors[0].Error())
assert.Equal(t, "plain error", err.Errors[1].Error())
// Ensure problem content types.
assert.Equal(t, "application/problem+json", err.ContentType("application/json"))
assert.Equal(t, "application/problem+cbor", err.ContentType("application/cbor"))
assert.Equal(t, "other", err.ContentType("other"))
}
func TestErrorResponses(t *testing.T) {
// NotModified has a slightly different signature.
assert.Equal(t, 304, huma.Status304NotModified().GetStatus())
for _, item := range []struct {
constructor func(msg string, errs ...error) huma.StatusError
expected int
}{
{huma.Error400BadRequest, 400},
{huma.Error401Unauthorized, 401},
{huma.Error403Forbidden, 403},
{huma.Error404NotFound, 404},
{huma.Error405MethodNotAllowed, 405},
{huma.Error406NotAcceptable, 406},
{huma.Error409Conflict, 409},
{huma.Error410Gone, 410},
{huma.Error412PreconditionFailed, 412},
{huma.Error415UnsupportedMediaType, 415},
{huma.Error422UnprocessableEntity, 422},
{huma.Error429TooManyRequests, 429},
{huma.Error500InternalServerError, 500},
{huma.Error501NotImplemented, 501},
{huma.Error502BadGateway, 502},
{huma.Error503ServiceUnavailable, 503},
{huma.Error504GatewayTimeout, 504},
} {
err := item.constructor("test")
assert.Equal(t, item.expected, err.GetStatus())
}
}
func TestNegotiateError(t *testing.T) {
_, api := humatest.New(t, huma.Config{OpenAPI: &huma.OpenAPI{Info: &huma.Info{Title: "Test API", Version: "1.0.0"}}})
req, _ := http.NewRequest("GET", "/", nil)
resp := httptest.NewRecorder()
ctx := humatest.NewContext(nil, req, resp)
require.Error(t, huma.WriteErr(api, ctx, 400, "bad request"))
}
func TestTransformError(t *testing.T) {
config := huma.DefaultConfig("Test API", "1.0.0")
config.Transformers = []huma.Transformer{
func(ctx huma.Context, status string, v any) (any, error) {
return nil, errors.New("whoops")
},
}
_, api := humatest.New(t, config)
req, _ := http.NewRequest("GET", "/", nil)
resp := httptest.NewRecorder()
ctx := humatest.NewContext(nil, req, resp)
require.Error(t, huma.WriteErr(api, ctx, 400, "bad request"))
}
func TestErrorAs(t *testing.T) {
err := fmt.Errorf("wrapped: %w", huma.Error400BadRequest("test"))
var e huma.StatusError
require.ErrorAs(t, err, &e)
assert.Equal(t, 400, e.GetStatus())
}
func TestErrorWithHeaders(t *testing.T) {
_, api := humatest.New(t, huma.DefaultConfig("Test API", "1.0.0"))
huma.Get(api, "/test", func(ctx context.Context, input *struct{}) (*struct{}, error) {
err := huma.ErrorWithHeaders(
huma.Error400BadRequest("test"),
http.Header{
"My-Header": {"bar"},
},
)
assert.Equal(t, "test", err.Error())
// Call again and have all the headers merged
err = huma.ErrorWithHeaders(err, http.Header{
"Another": {"bar"},
})
return nil, fmt.Errorf("wrapped: %w", err)
})
resp := api.Get("/test")
assert.Equal(t, 400, resp.Code)
assert.Equal(t, "bar", resp.Header().Get("My-Header"))
assert.Equal(t, "bar", resp.Header().Get("Another"))
assert.Contains(t, resp.Body.String(), "test")
}