-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcoze_test.go
489 lines (418 loc) · 13.9 KB
/
coze_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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
package coze
import (
"encoding/json"
"fmt"
"strings"
"testing"
)
func ExamplePay_embedded() {
// Example custom struct.
type User struct {
DisplayName string
FirstName string
LastName string
Email string `json:",omitempty"` // Example of non-required field.
}
user := User{
DisplayName: "Coze",
FirstName: "Foo",
LastName: "Bar",
}
// Example of converting a custom struct to a coze.
pay := Pay{
Alg: GoldenKey.Alg,
Tmb: GoldenKey.Tmb,
Struct: &user,
}
coze, err := GoldenKey.SignPay(&pay)
if err != nil {
panic(err)
}
v, err := GoldenKey.VerifyCoze(coze)
if err != nil {
panic(err)
}
// Set sig to nil for deterministic printout
coze.Sig = nil
fmt.Println(v)
fmt.Printf("%+v\n", coze)
// Output:
// true
// {"pay":{"alg":"ES256","tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","DisplayName":"Coze","FirstName":"Foo","LastName":"Bar"}}
}
// ExamplePay_jsonUnmarshal tests unmarshalling a Pay.
func ExamplePay_jsonUnmarshal() {
h := &Pay{}
err := json.Unmarshal([]byte(GoldenPay), h)
if err != nil {
panic(err)
}
out, err := Marshal(h)
if err != nil {
panic(err)
}
fmt.Printf("%s\n", out)
// Output:
// {"alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"}
}
// ExamplePay_jsonMarshalCustom demonstrates marshalling Pay with a custom
// structure.
func ExamplePay_jsonMarshalCustom() {
customStruct := CustomStruct{
Msg: "Coze Rocks",
}
inputPay := Pay{
Alg: SEAlg(ES256),
Iat: 1623132000, // Static for demonstration. Use time.Now().Unix().
Tmb: MustDecode("cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk"),
Typ: "cyphr.me/msg",
Struct: customStruct,
}
// May also call inputPay.MarshalJSON() or Marshal(&inputPay) instead.
s, err := Marshal(&inputPay)
if err != nil {
panic(err)
}
fmt.Println(string(s))
// Output:
// {"alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg","msg":"Coze Rocks"}
}
// ExamplePay_jsonUnmarshalCustomManual demonstrates "manually" unmarshalling
// Pay with a custom structure.
func ExamplePay_jsonUnmarshalCustomManual() {
var pay Pay
err := json.Unmarshal([]byte(GoldenPay), &pay)
if err != nil {
panic(err)
}
fmt.Println(pay)
var custom CustomStruct
err = json.Unmarshal([]byte(GoldenPay), &custom)
if err != nil {
panic(err)
}
fmt.Println(custom)
// Output:
// {"alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"}
// {Coze Rocks}
}
// ExamplePay_jsonUnmarshalCustom demonstrates unmarshalling Pay with a custom
// structure.
func ExamplePay_jsonUnmarshalCustom() {
pay := new(Pay)
var emptyCustomStruct CustomStruct
pay.Struct = &emptyCustomStruct
err := json.Unmarshal([]byte(GoldenPay), &pay)
if err != nil {
fmt.Printf("Unmarshal error: %s\n", err)
}
fmt.Println(pay)
fmt.Println(pay.Struct)
// Output:
// {"alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg","msg":"Coze Rocks"}
// &{Coze Rocks}
}
// ExamplePay_String_custom demonstrates fmt.Stringer on Pay with a custom
// structure.
func ExamplePay_String_custom() {
customStruct := CustomStruct{
Msg: "Coze Rocks",
}
inputPay := Pay{
Alg: SEAlg(ES256),
Iat: 1623132000, // Static for demonstration. Use time.Now().Unix().
Tmb: MustDecode("cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk"),
Typ: "cyphr.me/msg",
Struct: customStruct,
}
fmt.Println(inputPay)
// Output:
// {"alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg","msg":"Coze Rocks"}
}
// Example demonstrating that unmarshalling a `pay` that has duplicate field
// names results in an error.
func ExamplePay_UnmarshalJSON_duplicate() {
h := &Pay{}
msg := []byte(`{"alg":"ES256","alg":"ES384"}`)
err := json.Unmarshal(msg, h)
fmt.Println(err)
// Output:
// Coze: JSON duplicate field "alg"
}
// Example demonstrating that unmarshalling a `coze` that has duplicate field
// names results in an error.
func ExampleCoze_UnmarshalJSON_duplicate() {
h := &Pay{}
msg := []byte(`{"coze":{"pay":"ES256","pay":"ES384"}}`)
err := json.Unmarshal(msg, h)
fmt.Println(err)
// Output:
// Coze: JSON duplicate field "pay"
}
// ExampleCoze_embed demonstrates how to embed a JSON `coze` into a third party
// JSON structure.
func ExampleCoze_embed() {
cz := new(Coze)
err := json.Unmarshal([]byte(GoldenCoze), cz)
if err != nil {
panic(err)
}
type Outer struct {
Name string `json:"name"`
Coze Coze `json:"coze"` // Embed a Coze into a larger, application defined JSON structure.
}
b, _ := json.Marshal(Outer{Name: "Bob", Coze: *cz})
fmt.Printf("%s", b)
// Output:
// {"name":"Bob","coze":{"pay":{"msg":"Coze Rocks","alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"sig":"Jl8Kt4nznAf0LGgO5yn_9HkGdY3ulvjg-NyRGzlmJzhncbTkFFn9jrwIwGoRAQYhjc88wmwFNH5u_rO56USo_w"}}
}
func ExampleCoze_String() {
cz := new(Coze)
err := json.Unmarshal([]byte(GoldenCoze), cz)
if err != nil {
panic(err)
}
fmt.Println(cz)
// Output:
// {"pay":{"msg":"Coze Rocks","alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"sig":"Jl8Kt4nznAf0LGgO5yn_9HkGdY3ulvjg-NyRGzlmJzhncbTkFFn9jrwIwGoRAQYhjc88wmwFNH5u_rO56USo_w"}
}
func ExampleCoze_Meta() {
cz := new(Coze)
err := json.Unmarshal([]byte(GoldenCoze), cz)
if err != nil {
panic(err)
}
err = cz.Meta()
if err != nil {
panic(err)
}
fmt.Printf("%s\n", cz)
// Output:
//{"pay":{"msg":"Coze Rocks","alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"can":["msg","alg","iat","tmb","typ"],"cad":"Ie3xL77AsiCcb4r0pbnZJqMcfSBqg5Lk0npNJyJ9BC4","sig":"Jl8Kt4nznAf0LGgO5yn_9HkGdY3ulvjg-NyRGzlmJzhncbTkFFn9jrwIwGoRAQYhjc88wmwFNH5u_rO56USo_w","czd":"TnRe4DRuGJlw280u3pGhMDOIYM7ii7J8_PhNuSScsIU"}
}
func ExampleCoze_MetaWithAlg() {
cz := new(Coze)
err := json.Unmarshal([]byte(GoldenCoze), cz)
if err != nil {
panic(err)
}
// coze.pay.alg given and parameter alg given.
err = cz.MetaWithAlg(SEAlg(ES256))
if err != nil {
panic(err)
}
fmt.Printf("%s\n", cz)
// coze.pay.alg given and parameter alg not given. (Alg is parsed from pay).
err = cz.MetaWithAlg("")
if err != nil {
panic(err)
}
fmt.Printf("%s\n", cz)
// Test mismatch alg, which must error.
err = cz.MetaWithAlg(SEAlg(ES224))
if err == nil {
fmt.Println("Test must error")
}
// Test no coze.pay.alg or alg given, which must error.
// Will error with Hash: invalid HshAlg "UnknownHshAlg")
cz2 := new(Coze)
err = json.Unmarshal(GoldenCozeNoAlg, cz2)
if err != nil {
panic(err)
}
err = cz2.Meta()
if err == nil {
fmt.Println("Test must error")
}
// Test no coze.pay.alg but alg is given (contextual coze)
err = cz2.MetaWithAlg(SEAlg(ES256))
if err != nil {
panic(err)
}
fmt.Printf("%s\n", cz2)
// Test no coze.pay.alg or coze.sig, so czd should not be calculated
cz3 := new(Coze)
err = json.Unmarshal(GoldenPayNoAlg, &cz3.Pay)
if err != nil {
panic(err)
}
err = cz3.MetaWithAlg(SEAlg(ES256))
if err != nil {
panic(err)
}
fmt.Printf("%s\n", cz3)
// Output:
// {"pay":{"msg":"Coze Rocks","alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"can":["msg","alg","iat","tmb","typ"],"cad":"Ie3xL77AsiCcb4r0pbnZJqMcfSBqg5Lk0npNJyJ9BC4","sig":"Jl8Kt4nznAf0LGgO5yn_9HkGdY3ulvjg-NyRGzlmJzhncbTkFFn9jrwIwGoRAQYhjc88wmwFNH5u_rO56USo_w","czd":"TnRe4DRuGJlw280u3pGhMDOIYM7ii7J8_PhNuSScsIU"}
// {"pay":{"msg":"Coze Rocks","alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"can":["msg","alg","iat","tmb","typ"],"cad":"Ie3xL77AsiCcb4r0pbnZJqMcfSBqg5Lk0npNJyJ9BC4","sig":"Jl8Kt4nznAf0LGgO5yn_9HkGdY3ulvjg-NyRGzlmJzhncbTkFFn9jrwIwGoRAQYhjc88wmwFNH5u_rO56USo_w","czd":"TnRe4DRuGJlw280u3pGhMDOIYM7ii7J8_PhNuSScsIU"}
// {"pay":{"msg":"Coze Rocks","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"can":["msg","iat","tmb","typ"],"cad":"K6MVyIFqhBhLvNafZ8sMCRpCqR1oeFpowi7j8P1uE0M","sig":"reOiKUO--OwgTNlYpKN60_gZARnW5X6PmQw4zWYbz2QryetRg_qS4KvwEVe1aiSAsWlkVA3MqYuaIM5ihY_8NQ","czd":"g6kRqHesiST6L38eZPcTk4Bq-fCxtbD6jTvRS8LKMv8"}
// {"pay":{"msg":"Coze Rocks","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"can":["msg","iat","tmb","typ"],"cad":"K6MVyIFqhBhLvNafZ8sMCRpCqR1oeFpowi7j8P1uE0M"}
}
func ExampleCoze_MetaWithAlg_contextual() {
// Test MetaWithAlg using no sig, which should calc what it can.
cz := new(Coze)
err := json.Unmarshal([]byte(GoldenCoze), cz)
if err != nil {
panic(err)
}
cz.Sig = []byte{} // set sig to nothing.
err = cz.MetaWithAlg("")
if err != nil {
panic(err)
}
fmt.Printf("%s\n", cz)
// Empty coze with coze.parsed.alg
cz = new(Coze)
err = json.Unmarshal(GoldenCozeEmpty, cz)
if err != nil {
panic(err)
}
err = cz.MetaWithAlg(GoldenKey.Alg)
if err != nil {
panic(err)
}
fmt.Printf("%s\n", cz)
// Output:
// {"pay":{"msg":"Coze Rocks","alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"can":["msg","alg","iat","tmb","typ"],"cad":"Ie3xL77AsiCcb4r0pbnZJqMcfSBqg5Lk0npNJyJ9BC4"}
// {"pay":{},"cad":"RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o","sig":"9iesKUSV7L1-xz5yd3A94vCkKLmdOAnrcPXTU3_qeKRRbHuy5EvMMFNRkW_sNLo-vvEPO9BmeUkcNh-ok18I_A","czd":"zU7xRwp8XU_VmdOLNBlMBualhoyHiM_cGhib6LPwWlc"}
}
// ExampleCoze_jsonUnmarshal tests unmarshalling a coze.
func ExampleCoze_jsonUnmarshal() {
cz := new(Coze)
err := json.Unmarshal([]byte(GoldenCoze), cz)
if err != nil {
panic(err)
}
// remarshal for comparison
b, err := Marshal(cz)
if err != nil {
panic(err)
}
fmt.Println(string(b))
// Output:
//{"pay":{"msg":"Coze Rocks","alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"sig":"Jl8Kt4nznAf0LGgO5yn_9HkGdY3ulvjg-NyRGzlmJzhncbTkFFn9jrwIwGoRAQYhjc88wmwFNH5u_rO56USo_w"}
}
func ExampleCoze_jsonMarshal() {
cz := new(Coze)
err := json.Unmarshal([]byte(GoldenCoze), cz)
if err != nil {
panic(err)
}
b, err := Marshal(cz)
if err != nil {
panic(err)
}
fmt.Printf("%+s\n", b)
// Output:
//{"pay":{"msg":"Coze Rocks","alg":"ES256","iat":1623132000,"tmb":"cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk","typ":"cyphr.me/msg"},"sig":"Jl8Kt4nznAf0LGgO5yn_9HkGdY3ulvjg-NyRGzlmJzhncbTkFFn9jrwIwGoRAQYhjc88wmwFNH5u_rO56USo_w"}
}
func ExampleCoze_jsonMarshalPretty() {
cz := new(Coze)
err := json.Unmarshal([]byte(GoldenCoze), cz)
if err != nil {
panic(err)
}
b, err := MarshalPretty(cz)
if err != nil {
panic(err)
}
fmt.Printf("%+s\n", b)
// Output:
// {
// "pay": {
// "msg": "Coze Rocks",
// "alg": "ES256",
// "iat": 1623132000,
// "tmb": "cLj8vsYtMBwYkzoFVZHBZo6SNL8wSdCIjCKAwXNuhOk",
// "typ": "cyphr.me/msg"
// },
// "sig": "Jl8Kt4nznAf0LGgO5yn_9HkGdY3ulvjg-NyRGzlmJzhncbTkFFn9jrwIwGoRAQYhjc88wmwFNH5u_rO56USo_w"
// }
}
// ExampleMarshal_jsonRawMessage demonstrates using empty string, two quote
// characters, and nil for json.RawMessage. When using json.RawMessage, it
// should always be valid JSON or nil or otherwise it will result in an error.
func ExampleMarshal_jsonRawMessage() {
o := json.RawMessage([]byte("")) // empty string
anon := struct {
Obj *json.RawMessage `json:"obj,omitempty"`
}{
Obj: &o,
}
// Incorrect usage with pointer to a zero value string.
// Pointer to empty string will fail Marshal since an empty string is not
// valid JSON., while the value `""` will pass.
b, err := Marshal(anon) // fails
fmt.Printf("%s\n%+v\n", err, b) // Error is populated and b is empty because of error.
// Correct usage with quotes characters.
quotes := []byte("\"\"") // string with two quote characters
anon.Obj = (*json.RawMessage)("es)
b, err = Marshal(anon)
if err != nil {
panic(err)
}
fmt.Printf("%s\n", b)
// Correct usage with with `nil`, which prints as the JSON "null".
o = nil
anon.Obj = &o
b, err = Marshal(anon)
if err != nil {
panic(err)
}
fmt.Printf("%s\n", b)
// Output:
// json: error calling MarshalJSON for type *json.RawMessage: unexpected end of JSON input
// []
// {"obj":""}
// {"obj":null}
}
func Test_checkDuplicate(t *testing.T) {
// Happy path; no duplicate. Should not error.
data := `{"a": "b", "c":"d", "d": {"e": 1, "f": 2}}`
err := checkDuplicate(json.NewDecoder(strings.NewReader(data)))
if err != nil {
t.Fatal(err)
}
// Duplicate, should error.
data = `{"a": "aValue", "a":true,"c":["field_3 string 1","field3 string2"], "d": {"e": 1, "e": 2}}`
err = checkDuplicate(json.NewDecoder(strings.NewReader(data)))
if err == nil {
t.Fatal("Should have found duplicate.")
}
// Recursive check with duplicate in inner struct. Should error.
data = `{"a": "aValue", "c":"cValue", "d": {"e": 1, "e": 2}}`
err = checkDuplicate(json.NewDecoder(strings.NewReader(data)))
if err == nil {
t.Fatal("Recursive check should have found duplicate.")
}
}
// Demonstrates expectations for values that are non-integer, negative, or too
// large for rvk.
func Example_iat_rvk_too_big() {
p := &Pay{}
// 2^53 - 1 as a string which must error.
err := json.Unmarshal([]byte(`{"rvk":"9007199254740991"}`), p)
if err != nil {
fmt.Println(err)
}
// 2^53
err = json.Unmarshal([]byte(`{"rvk":9007199254740992}`), p)
if err != nil {
fmt.Println(err)
}
// Negative 2^53 + 1 must error as rvk must be positive.
err = json.Unmarshal([]byte(`{"rvk":-9007199254740991}`), p)
if err != nil {
fmt.Println(err)
}
// Finally, 2^53 - 1 as an integer which is okay.
err = json.Unmarshal([]byte(`{"rvk":9007199254740991}`), p)
if err != nil {
fmt.Println(err)
}
fmt.Println(p)
// Output:
// json: cannot unmarshal string into Go struct field pay2.rvk of type int64
// Pay.UnmarshalJSON: values for iat and rvk must be between 0 and 2^53 - 1
// Pay.UnmarshalJSON: values for iat and rvk must be between 0 and 2^53 - 1
// {"rvk":9007199254740991}
}