forked from go-kivik/couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
json_test.go
154 lines (147 loc) · 3.49 KB
/
json_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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
package couchdb
import (
"encoding/json"
"net/http"
"testing"
"gitlab.com/flimzy/testy"
)
func TestEncodeKey(t *testing.T) {
type tst struct {
input interface{}
expected string
status int
err string
}
tests := testy.NewTable()
tests.Add("string", tst{
input: "foo",
expected: `"foo"`,
})
tests.Add("chan", tst{
input: make(chan int),
status: http.StatusBadRequest,
err: "json: unsupported type: chan int",
})
tests.Add("[]byte", tst{
input: []byte("foo"),
expected: `"Zm9v"`,
})
tests.Add("json.RawMessage", tst{
input: json.RawMessage(`"foo"`),
expected: `"foo"`,
})
tests.Run(t, func(t *testing.T, test tst) {
result, err := encodeKey(test.input)
testy.StatusError(t, test.err, test.status, err)
if d := testy.DiffJSON([]byte(test.expected), []byte(result)); d != nil {
t.Error(d)
}
})
}
func TestEncodeKeys(t *testing.T) {
type tst struct {
input map[string]interface{}
expected map[string]interface{}
status int
err string
}
type keyStruct struct {
Foo string
Bar interface{} `json:",omitempty"`
}
tests := testy.NewTable()
tests.Add("nil", tst{
input: nil,
expected: nil,
})
tests.Add("unmarshalable", tst{
input: map[string]interface{}{
"key": make(chan int),
},
status: http.StatusBadRequest,
err: "json: unsupported type: chan int",
})
tests.Add("unaltered", tst{
input: map[string]interface{}{
"foo": 123,
},
expected: map[string]interface{}{
"foo": 123,
},
})
tests.Add("key", tst{
input: map[string]interface{}{
"key": 123,
},
expected: map[string]interface{}{
"key": "123",
},
})
tests.Add("keys []interface{}", tst{
input: map[string]interface{}{
"foo": 123,
"keys": []interface{}{"foo", 123},
},
expected: map[string]interface{}{
"foo": 123,
"keys": `["foo",123]`,
},
})
tests.Add("keys []interface{} invalid", tst{
input: map[string]interface{}{
"foo": 123,
"keys": []interface{}{"foo", 123, make(chan int)},
},
status: http.StatusBadRequest,
err: "json: unsupported type: chan int",
})
tests.Add("keys string", tst{
input: map[string]interface{}{
"foo": 123,
"keys": []string{"foo", "123"},
},
expected: map[string]interface{}{
"foo": 123,
"keys": `["foo","123"]`,
},
})
tests.Add("keys structs", tst{
input: map[string]interface{}{
"keys": []keyStruct{
{Foo: "abc"},
{Foo: "xyz"},
},
},
expected: map[string]interface{}{
"keys": `[{"Foo":"abc"},{"Foo":"xyz"}]`,
},
})
tests.Add("keys structs invalid", tst{
input: map[string]interface{}{
"keys": []keyStruct{
{Foo: "abc", Bar: make(chan int)},
{Foo: "xyz"},
},
},
status: http.StatusBadRequest,
err: "json: unsupported type: chan int",
})
tests.Run(t, func(t *testing.T, test tst) {
err := encodeKeys(test.input)
testy.StatusError(t, test.err, test.status, err)
if d := testy.DiffInterface(test.expected, test.input); d != nil {
t.Error(d)
}
})
}