-
Notifications
You must be signed in to change notification settings - Fork 4
/
schema_test.go
77 lines (72 loc) · 1.25 KB
/
schema_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
package openapi_test
import (
"reflect"
"strconv"
"testing"
openapi "github.com/nasa9084/go-openapi"
yaml "gopkg.in/yaml.v2"
)
func TestSchema_Validate(t *testing.T) {
candidates := []candidate{
{"empty", openapi.Schema{}, nil},
}
testValidater(t, candidates)
}
func TestSchameUnmarshal(t *testing.T) {
tests := []struct {
data string
want *openapi.Schema
}{
{
data: `---
type: string
`,
want: &openapi.Schema{
Type: "string",
},
},
{
data: `---
type: string
x-extension: val`,
want: &openapi.Schema{
Type: "string",
Extension: map[string]interface{}{
"x-extension": "val",
},
},
},
{
data: `---
type: array
items:
type: string
default:
- foo
- bar`,
want: &openapi.Schema{
Type: "array",
Items: &openapi.Schema{
Type: "string",
},
},
},
}
for i, tt := range tests {
t.Run(strconv.Itoa(i), func(t *testing.T) {
var got openapi.Schema
err := yaml.Unmarshal([]byte(tt.data), &got)
if err != nil {
t.Fatal(err)
}
if got.Type != tt.want.Type {
t.Errorf("%s != %s", got.Type, tt.want.Type)
return
}
if !reflect.DeepEqual(got.Extension, tt.want.Extension) {
t.Errorf("%v != %v", got.Extension, tt.want.Extension)
return
}
})
}
}