File: example_test.go

package info (click to toggle)
golang-github-getkin-kin-openapi 0.124.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,288 kB
  • sloc: sh: 344; makefile: 4
file content (54 lines) | stat: -rw-r--r-- 1,091 bytes parent folder | download | duplicates (5)
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
package openapi3

import (
	"encoding/json"
	"testing"

	"github.com/stretchr/testify/require"
)

func TestExampleJSON(t *testing.T) {
	t.Log("Marshal *openapi3.Example to JSON")
	data, err := json.Marshal(example())
	require.NoError(t, err)
	require.NotEmpty(t, data)

	t.Log("Unmarshal *openapi3.Example from JSON")
	docA := &Example{}
	err = json.Unmarshal(exampleJSON, &docA)
	require.NoError(t, err)
	require.NotEmpty(t, data)

	t.Log("Ensure representations match")
	dataA, err := json.Marshal(docA)
	require.NoError(t, err)
	require.JSONEq(t, string(data), string(exampleJSON))
	require.JSONEq(t, string(data), string(dataA))
}

var exampleJSON = []byte(`
{
   "summary": "An example of a cat",
   "value": {
      "name": "Fluffy",
      "petType": "Cat",
      "color": "White",
      "gender": "male",
      "breed": "Persian"
   }
}
`)

func example() *Example {
	value := map[string]string{
		"name":    "Fluffy",
		"petType": "Cat",
		"color":   "White",
		"gender":  "male",
		"breed":   "Persian",
	}
	return &Example{
		Summary: "An example of a cat",
		Value:   value,
	}
}