forked from elastic/apm-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_schema_test.go
100 lines (96 loc) · 3.74 KB
/
json_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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you 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 tests
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestIterateMap(t *testing.T) {
for _, d := range []struct {
original obj
result obj
key, fnKey string
val interface{}
fn func(interface{}, string, interface{}) interface{}
}{
{original: obj{"a": 1, "b": 2},
result: obj{"b": 2},
fnKey: "", key: "a", fn: deleteFn},
{original: obj{"a": 1, "b": obj{"d": obj{"e": "x"}}},
result: obj{"a": 1, "b": obj{"d": obj{}}},
fnKey: "b.d", key: "e", fn: deleteFn},
{original: obj{"a": 1, "c": []interface{}{obj{"d": "x"}, obj{"d": "y", "e": 1}}},
result: obj{"a": 1, "c": []interface{}{obj{}, obj{"e": 1}}},
fnKey: "c", key: "d", fn: deleteFn,
},
{original: obj{"a": 1, "b": obj{"d": "x"}},
result: obj{"a": 1, "b": obj{"d": "x"}},
fnKey: "", key: "h", fn: deleteFn,
},
{original: obj{"a": 1, "b": obj{"d": "x"}},
result: obj{"a": 1, "b": obj{"d": "x"}},
fnKey: "b", key: "", fn: deleteFn,
},
{original: obj{"a": 1, "b": obj{"d": "x"}},
result: obj{"a": 1, "b": obj{"d": "x"}},
fnKey: "b", key: "c", fn: deleteFn,
},
{original: obj{"a": 1, "b": obj{"c": obj{"d": "x", "e": "y"}}},
result: obj{"a": 1, "b": obj{"c": obj{"e": "y"}}},
fnKey: "b.[^.]", key: "d", fn: deleteFn,
},
{original: obj{"a": 1, "b": obj{"c": obj{"d": "x", "e": "y"}, "c2": obj{"g": 1}}},
result: obj{"a": 1, "b": obj{"c": obj{"e": "y"}, "c2": obj{"g": 1}}},
fnKey: "b.[^.]", key: "d", fn: deleteFn,
},
{original: obj{"a": obj{"b": obj{"c": obj{"d": "x", "e": "y"}, "c2": obj{"g": 1}}}},
result: obj{"a": obj{"b": obj{"c": obj{"d": "x"}, "c2": obj{"g": 1}}}},
fnKey: "a.[^.].c", key: "e", fn: deleteFn,
},
{original: obj{"a": obj{"b": obj{"c": obj{"d": "x", "e": "y"}, "c2": obj{"g": 1}}}},
result: obj{"a": obj{"b": obj{"c2": obj{"g": 1}}}},
fnKey: "a.[^.]", key: "c", fn: deleteFn,
},
{original: obj{"a": 1, "b": 2},
result: obj{"a": "new", "b": 2},
fnKey: "", key: "a", val: "new", fn: upsertFn,
},
{original: obj{"a": 1, "b": obj{"d": obj{"e": "x"}}},
result: obj{"a": 1, "b": obj{"d": obj{"e": nil}}},
fnKey: "b.d", key: "e", val: nil, fn: upsertFn,
},
{original: obj{"a": 1, "c": []interface{}{obj{"d": "x"}, obj{"d": "y", "e": 1}}},
result: obj{"a": 1, "c": []interface{}{obj{"d": "new"}, obj{"d": "new", "e": 1}}},
fnKey: "c", key: "d", val: "new", fn: upsertFn,
},
{original: obj{"a": 1, "b": obj{"d": "x"}},
result: obj{"a": 1, "b": obj{"d": "x"}, "h": "new"},
fnKey: "", key: "h", val: "new", fn: upsertFn,
},
{original: obj{"a": 1, "b": obj{"d": "x"}},
result: obj{"a": 1, "b": obj{"d": "x"}},
fnKey: "h", key: "", val: "new", fn: upsertFn,
},
{original: obj{"a": 1, "b": obj{"c": obj{"d": "x", "e": "y"}}},
result: obj{"a": 1, "b": obj{"c": obj{"d": "x", "e": "z"}}},
fnKey: "b.[^.]", key: "e", val: "z", fn: upsertFn,
},
} {
out := iterateMap(d.original, "", d.fnKey, d.key, d.val, d.fn)
assert.Equal(t, d.result, out)
}
}