forked from go-swagger/go-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema_test.go
57 lines (44 loc) · 1.33 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
package diff
import (
"testing"
"time"
"github.com/go-openapi/spec"
"github.com/stretchr/testify/assert"
)
func TestGetTypeFromSimpleSchema(t *testing.T) {
s := spec.SimpleSchema{Type: "string"}
ty, a := getTypeFromSimpleSchema(&s)
assert.Equal(t, "string", ty)
assert.False(t, a)
arr := spec.SimpleSchema{Type: "array", Items: spec.NewItems().Typed("integer", "int32")}
ty, a = getTypeFromSimpleSchema(&arr)
assert.Equal(t, "integer.int32", ty)
assert.True(t, a)
}
func TestIsArray(t *testing.T) {
arr := spec.SimpleSchema{Type: "array", Items: spec.NewItems().Typed("integer", "int32")}
assert.True(t, isArray(&arr))
assert.False(t, isArray(&time.Time{}))
}
func TestIsPrimitive(t *testing.T) {
sa := spec.StringOrArray{"string"}
assert.True(t, isPrimitive(sa))
s := spec.Schema{SchemaProps: spec.SchemaProps{Type: sa}}
assert.True(t, isPrimitive(&s))
assert.False(t, isPrimitive(&time.Time{}))
sc := spec.Schema{}
assert.False(t, isPrimitive(&sc))
}
func TestGetSchemaType(t *testing.T) {
tt, a := getSchemaType(time.Time{})
assert.False(t, a)
assert.Equal(t, "unknown", tt)
s := spec.SimpleSchema{Type: "string"}
tt, a = getSchemaType(s)
assert.False(t, a)
assert.Equal(t, "string", tt)
}
func TestDefinitionFromRef(t *testing.T) {
refStr := definitionFromRef(spec.MustCreateRef(""))
assert.True(t, len(refStr) == 0)
}