forked from danielgtaylor/huma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_test.go
69 lines (62 loc) · 1.71 KB
/
api_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
package huma_test
import (
"net/http"
"testing"
"github.com/danielgtaylor/huma/v2"
"github.com/danielgtaylor/huma/v2/humatest"
"github.com/go-chi/chi/v5"
"github.com/stretchr/testify/assert"
)
func TestBlankConfig(t *testing.T) {
adapter := humatest.NewAdapter(chi.NewMux())
assert.NotPanics(t, func() {
huma.NewAPI(huma.Config{}, adapter)
})
}
// ExampleAdapter_handle demonstrates how to use the adapter directly
// instead of using the `huma.Register` convenience function to add a new
// operation and handler to the API.
//
// Note that you are responsible for defining all of the operation details,
// including the parameter and response definitions & schemas.
func ExampleAdapter_handle() {
// Create an adapter for your chosen router.
adapter := NewExampleAdapter(chi.NewMux())
// Register an operation with a custom handler.
adapter.Handle(&huma.Operation{
OperationID: "example-operation",
Method: "GET",
Path: "/example/{name}",
Summary: "Example operation",
Parameters: []*huma.Param{
{
Name: "name",
In: "path",
Description: "Name to return",
Required: true,
Schema: &huma.Schema{
Type: "string",
},
},
},
Responses: map[string]*huma.Response{
"200": {
Description: "OK",
Content: map[string]*huma.MediaType{
"text/plain": {
Schema: &huma.Schema{
Type: "string",
},
},
},
},
},
}, func(ctx huma.Context) {
// Get the `name` path parameter.
name := ctx.Param("name")
// Set the response content type, status code, and body.
ctx.SetHeader("Content-Type", "text/plain; charset=utf-8")
ctx.SetStatus(http.StatusOK)
ctx.BodyWriter().Write([]byte("Hello, " + name))
})
}