-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathjsonc_test.go
More file actions
55 lines (47 loc) · 996 Bytes
/
Copy pathjsonc_test.go
File metadata and controls
55 lines (47 loc) · 996 Bytes
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
package jsonc
import (
"testing"
)
func testToJSON(t *testing.T, json, expect string) {
t.Helper()
if len(json) != len(expect) {
t.Fatal()
}
out := string(ToJSON([]byte(json)))
if out != expect {
t.Fatalf("expected '%s', got '%s'", expect, out)
}
out = string(ToJSONInPlace([]byte(json)))
if out != expect {
t.Fatalf("expected '%s', got '%s'", expect, out)
}
}
func TestToJSON(t *testing.T) {
testToJSON(t, `
{ // hello
"c": 3,"b":3, // jello
/* SOME
LIKE
IT
HAUT */
"d\\\"\"e": [ 1, /* 2 */ 3, 4, ],
}`, `
{
"c": 3,"b":3,
"d\\\"\"e": [ 1, 3, 4 ]
}`)
}
func TestIssue3(t *testing.T) {
testToJSON(t,
`{"a":1}/* unclosed
asdasdf asdfsadf */ /* asdf`,
`{"a":1}
/* `,
)
testToJSON(t,
`{"a":1}/* unclosed
asdasdf asdfsadf */ /* asdf*/`,
`{"a":1}
`,
)
}