-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw_test.go
52 lines (42 loc) · 872 Bytes
/
raw_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
package types
import (
"encoding/json"
"testing"
)
func TestRawJSON(t *testing.T) {
raw := RawJSON(`{"key":"value","price":123.65}`)
m, err := raw.ToMap()
if err != nil {
t.Error(err)
}
if m["key"] != "value" {
t.Error("invalid value")
}
if m["price"] != json.Number("123.65") {
t.Error("invalid value")
}
b, err := raw.MarshalJSON()
if err != nil {
t.Error(err)
}
if string(b) != `{"key":"value","price":123.65}` {
t.Error("invalid json")
}
}
func TestRawJSON_Nested(t *testing.T) {
type post struct {
Title string `json:"title"`
Details RawJSON `json:"details"`
}
p := post{
Title: "Title",
Details: RawJSON(`{"key":"value","price":123.65}`),
}
b, err := json.Marshal(p)
if err != nil {
t.Error(err)
}
if string(b) != `{"title":"Title","details":{"key":"value","price":123.65}}` {
t.Error("invalid json")
}
}