-
Notifications
You must be signed in to change notification settings - Fork 6
/
example_test.go
166 lines (142 loc) · 4.32 KB
/
example_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
155
156
157
158
159
160
161
162
163
164
165
166
package conjson_test
import (
"bytes"
"encoding/json"
"fmt"
"os"
"time"
"github.com/Rican7/conjson"
"github.com/Rican7/conjson/transform"
)
type exampleModel struct {
Title string
Description string
ImageURL string
ReferredByURL string
IsActive bool
CreatedAt time.Time
UpdatedAt time.Time
}
const (
dateTimeFormat = time.RFC3339
inceptionDateTime = "2015-11-17T20:43:31-05:00"
packageDateTime = "2018-12-24T13:21:15-07:00"
marshalPrefix = ""
marshalIndent = " "
)
var (
inceptionTime, _ = time.Parse(dateTimeFormat, inceptionDateTime)
packageTime, _ = time.Parse(dateTimeFormat, packageDateTime)
)
func Example_marshal() {
model := exampleModel{
Title: "Example Title",
Description: "This is a description.",
ImageURL: "https://example.com/image.png",
ReferredByURL: "https://example.com/referrer/index.html",
IsActive: true,
CreatedAt: inceptionTime,
UpdatedAt: packageTime,
}
marshaler := conjson.NewMarshaler(model, transform.ConventionalKeys())
encoded, _ := json.MarshalIndent(marshaler, marshalPrefix, marshalIndent)
fmt.Println(string(encoded))
// Output:
// {
// "title": "Example Title",
// "description": "This is a description.",
// "image_url": "https://example.com/image.png",
// "referred_by_url": "https://example.com/referrer/index.html",
// "is_active": true,
// "created_at": "2015-11-17T20:43:31-05:00",
// "updated_at": "2018-12-24T13:21:15-07:00"
// }
}
func Example_unmarshal() {
sampleJSON := `
{
"title": "Example Title",
"description": "This is a description.",
"image_url": "https://example.com/image.png",
"referred_by_url": "https://example.com/referrer/index.html",
"is_active": true,
"created_at": "2015-11-17T20:43:31-05:00",
"updated_at": "2018-12-24T13:21:15-07:00"
}
`
var model exampleModel
json.Unmarshal(
[]byte(sampleJSON),
conjson.NewUnmarshaler(&model, transform.ConventionalKeys()),
)
// Print the "raw" model JSON to show result
rawJSON, _ := json.MarshalIndent(model, marshalPrefix, marshalIndent)
fmt.Println(string(rawJSON))
// Output:
// {
// "Title": "Example Title",
// "Description": "This is a description.",
// "ImageURL": "https://example.com/image.png",
// "ReferredByURL": "https://example.com/referrer/index.html",
// "IsActive": true,
// "CreatedAt": "2015-11-17T20:43:31-05:00",
// "UpdatedAt": "2018-12-24T13:21:15-07:00"
// }
}
func ExampleEncoder() {
model := exampleModel{
Title: "Example Title",
Description: "This is a description.",
ImageURL: "https://example.com/image.png",
ReferredByURL: "https://example.com/referrer/index.html",
IsActive: true,
CreatedAt: inceptionTime,
UpdatedAt: packageTime,
}
jsonEncoder := json.NewEncoder(os.Stdout)
jsonEncoder.SetIndent(marshalPrefix, marshalIndent)
conjson.NewEncoder(jsonEncoder, transform.CamelCaseKeys(false)).Encode(model)
// Output:
// {
// "title": "Example Title",
// "description": "This is a description.",
// "imageURL": "https://example.com/image.png",
// "referredByURL": "https://example.com/referrer/index.html",
// "isActive": true,
// "createdAt": "2015-11-17T20:43:31-05:00",
// "updatedAt": "2018-12-24T13:21:15-07:00"
// }
}
func ExampleDecoder() {
sampleJSON := `
{
"$title--": "Example Title",
"$description--": "This is a description.",
"$image_url--": "https://example.com/image.png",
"$referred_by_url--": "https://example.com/referrer/index.html",
"$is_active--": true,
"created_at--": "2015-11-17T20:43:31-05:00",
"updated_at--": "2018-12-24T13:21:15-07:00"
}
`
var model exampleModel
decoder := conjson.NewDecoder(
json.NewDecoder(bytes.NewBufferString(sampleJSON)),
transform.ConventionalKeys(),
transform.ValidIdentifierKeys(),
)
decoder.Decode(&model)
// Print the "raw" model JSON to show result
rawJSON, _ := json.MarshalIndent(model, marshalPrefix, marshalIndent)
fmt.Println(string(rawJSON))
// Output:
// {
// "Title": "Example Title",
// "Description": "This is a description.",
// "ImageURL": "https://example.com/image.png",
// "ReferredByURL": "https://example.com/referrer/index.html",
// "IsActive": true,
// "CreatedAt": "2015-11-17T20:43:31-05:00",
// "UpdatedAt": "2018-12-24T13:21:15-07:00"
// }
}