forked from xeipuuv/gojsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonContext_test.go
66 lines (64 loc) · 951 Bytes
/
jsonContext_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
package gojsonschema
import (
"testing"
)
func TestJsonContextReferenceTokens(t *testing.T) {
cases := []struct {
input *JsonContext
expected string
}{
{
nil,
"",
},
{
&JsonContext{
head: STRING_CONTEXT_ROOT,
tail: nil,
},
"",
},
{
&JsonContext{
head: "a",
tail: &JsonContext{
head: STRING_CONTEXT_ROOT,
tail: nil,
},
},
"/a",
},
{
&JsonContext{
head: "b",
tail: &JsonContext{
head: "a",
tail: &JsonContext{
head: STRING_CONTEXT_ROOT,
tail: nil,
},
},
},
"/a/b",
},
{
&JsonContext{
head: "~/",
tail: &JsonContext{
head: "/~",
tail: &JsonContext{
head: STRING_CONTEXT_ROOT,
tail: nil,
},
},
},
"/~1~0/~0~1",
},
}
for _, c := range cases {
actual := c.input.JSONPointer()
if actual != c.expected {
t.Errorf("expected %s but got %s", c.expected, actual)
}
}
}