...
1
16
17 package spec3_test
18
19 import (
20 "encoding/json"
21 "testing"
22
23 "github.com/google/go-cmp/cmp"
24 "github.com/stretchr/testify/require"
25 "k8s.io/kube-openapi/pkg/spec3"
26 jsontesting "k8s.io/kube-openapi/pkg/util/jsontesting"
27 "k8s.io/kube-openapi/pkg/validation/spec"
28 )
29
30 func TestRequestBodyRoundTrip(t *testing.T) {
31 cases := []jsontesting.RoundTripTestCase{
32 {
33 Name: "Basic Roundtrip",
34 Object: &spec3.RequestBody{
35 spec.Refable{Ref: spec.MustCreateRef("Dog")},
36 spec3.RequestBodyProps{
37 Description: "foo",
38 },
39 spec.VendorExtensible{Extensions: spec.Extensions{
40 "x-framework": "go-swagger",
41 }},
42 },
43 },
44 }
45
46 for _, tcase := range cases {
47 t.Run(tcase.Name, func(t *testing.T) {
48 require.NoError(t, tcase.RoundTripTest(&spec3.RequestBody{}))
49 })
50 }
51 }
52
53 func TestRequestBodyJSONSerialization(t *testing.T) {
54 cases := []struct {
55 name string
56 target *spec3.RequestBody
57 expectedOutput string
58 }{
59 {
60 name: "basic",
61 target: &spec3.RequestBody{
62 RequestBodyProps: spec3.RequestBodyProps{
63 Description: "user to add to the system",
64 Content: map[string]*spec3.MediaType{
65 "application/json": {
66 MediaTypeProps: spec3.MediaTypeProps{
67 Schema: &spec.Schema{
68 SchemaProps: spec.SchemaProps{
69 Ref: spec.MustCreateRef("#/components/schemas/User"),
70 },
71 },
72 },
73 },
74 },
75 },
76 },
77 expectedOutput: `{"description":"user to add to the system","content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}}}`,
78 },
79 }
80 for _, tc := range cases {
81 t.Run(tc.name, func(t *testing.T) {
82 rawTarget, err := json.Marshal(tc.target)
83 if err != nil {
84 t.Fatal(err)
85 }
86 serializedTarget := string(rawTarget)
87 if !cmp.Equal(serializedTarget, tc.expectedOutput) {
88 t.Fatalf("diff %s", cmp.Diff(serializedTarget, tc.expectedOutput))
89 }
90 })
91 }
92 }
93
View as plain text