-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathencode_cache_test.go
73 lines (61 loc) · 1.56 KB
/
encode_cache_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
package qs
import (
"reflect"
"testing"
)
func TestCacheStore(t *testing.T) {
t.Parallel()
s := &basicVal{}
cacheStore := newCacheStore()
if cacheStore == nil {
t.Error("cache store should not be nil")
t.FailNow()
}
fields := cachedFields{&float64Field{}}
cacheStore.Store(reflect.TypeOf(s), fields)
cachedFlds := cacheStore.Retrieve(reflect.TypeOf(s))
if cachedFlds == nil {
t.Error("cache store should not be nil")
t.FailNow()
}
if len(cachedFlds) != len(fields) {
t.Error("cache store should have the same number of fields")
t.FailNow()
}
if &fields[0] != &cachedFlds[0] {
t.Error("cache store should have the same fields")
t.FailNow()
}
}
func TestNewCacheField(t *testing.T) {
t.Parallel()
name := []byte(`abc`)
opts := [][]byte{[]byte(`omitempty`)}
cacheField := newCachedFieldByKind(reflect.ValueOf("").Kind(), name, opts)
strField, ok := cacheField.(*stringField)
if !ok {
t.Error("strField should be stringField")
t.FailNow()
}
if string(name) != strField.name {
t.Errorf("strField.name should be %s, but %s", string(name), strField.name)
t.FailNow()
}
if !strField.omitEmpty {
t.Error("omitEmpty should be true")
t.FailNow()
}
if !reflect.DeepEqual(reflect.TypeOf(new(stringField)), reflect.TypeOf(cacheField)) {
t.Error("cache field is not of type *stringField")
t.FailNow()
}
}
func TestNewCacheField2(t *testing.T) {
t.Parallel()
var strPtr *string
cacheField := newCachedFieldByKind(reflect.ValueOf(strPtr).Kind(), nil, nil)
if cacheField != nil {
t.Error("expect cacheField to be nil")
t.FailNow()
}
}