forked from huandu/facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
facebook_test.go
1659 lines (1321 loc) · 42.6 KB
/
facebook_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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// A facebook graph api client in go.
// https://github.com/huandu/facebook/
//
// Copyright 2012 - 2015, Huan Du
// Licensed under the MIT license
// https://github.com/huandu/facebook/blob/master/LICENSE
package facebook
import (
"bytes"
"encoding/base64"
"encoding/json"
"fmt"
"strings"
"testing"
"time"
)
const (
FB_TEST_APP_ID = "169186383097898"
FB_TEST_APP_SECRET = "b2e4262c306caa3c7f5215d2d099b319"
// remeber to change it to a valid token to run test
//FB_TEST_VALID_ACCESS_TOKEN = "CAACZA38ZAD8CoBAFCaVgLBNdz0RrH45yUBUA95exI1FY5i4mZBY5iULfM3YEpS53nP6eSF4cf3nmoiePHvMkdSZApkxu1heAupW7OE8tmiySRZAYkZBZBvhveCZCgPaJlFovlI0ZAhWdWTLxxmJaZCKDG0B8n9VGEvcN3zoS1AHjokSz4aNos39xthp7XtAz9X3NRvp1qU4UTOlxK8IJOC1ApAMmvcEE0kWvgZD"
FB_TEST_VALID_ACCESS_TOKEN = ""
// remember to change it to a valid signed request to run test
//FB_TEST_VALID_SIGNED_REQUEST = "ZAxP-ILRQBOwKKxCBMNlGmVraiowV7WFNg761OYBNGc.eyJhbGdvcml0aG0iOiJITUFDLVNIQTI1NiIsImV4cGlyZXMiOjEzNDM0OTg0MDAsImlzc3VlZF9hdCI6MTM0MzQ5MzI2NSwib2F1dGhfdG9rZW4iOiJBQUFDWkEzOFpBRDhDb0JBRFpCcmZ5TFpDanBNUVczdThVTWZmRldSWkNpZGw5Tkx4a1BsY2tTcXZaQnpzTW9OWkF2bVk2RUd2NG1hUUFaQ0t2VlpBWkJ5VXA5a0FCU2x6THFJejlvZTdOdHBzdzhyQVpEWkQiLCJ1c2VyIjp7ImNvdW50cnkiOiJ1cyIsImxvY2FsZSI6ImVuX1VTIiwiYWdlIjp7Im1pbiI6MjF9fSwidXNlcl9pZCI6IjUzODc0NDQ2OCJ9"
FB_TEST_VALID_SIGNED_REQUEST = ""
// test binary file base64 value
FB_TEST_BINARY_JPG_FILE = "/9j/4AAQSkZJRgABAQEASABIAAD/4gv4SUNDX1BST0ZJTEUAAQEAAAvoAAAAAAIAAABtbnRy" +
"UkdCIFhZWiAH2QADABsAFQAkAB9hY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAA" +
"9tYAAQAAAADTLQAAAAAp+D3er/JVrnhC+uTKgzkNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" +
"AAAAAAAAABBkZXNjAAABRAAAAHliWFlaAAABwAAAABRiVFJDAAAB1AAACAxkbWRkAAAJ4AAA" +
"AIhnWFlaAAAKaAAAABRnVFJDAAAB1AAACAxsdW1pAAAKfAAAABRtZWFzAAAKkAAAACRia3B0" +
"AAAKtAAAABRyWFlaAAAKyAAAABRyVFJDAAAB1AAACAx0ZWNoAAAK3AAAAAx2dWVkAAAK6AAA" +
"AId3dHB0AAALcAAAABRjcHJ0AAALhAAAADdjaGFkAAALvAAAACxkZXNjAAAAAAAAAB9zUkdC" +
"IElFQzYxOTY2LTItMSBibGFjayBzY2FsZWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" +
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" +
"WFlaIAAAAAAAACSgAAAPhAAAts9jdXJ2AAAAAAAABAAAAAAFAAoADwAUABkAHgAjACgALQAy" +
"ADcAOwBAAEUASgBPAFQAWQBeAGMAaABtAHIAdwB8AIEAhgCLAJAAlQCaAJ8ApACpAK4AsgC3" +
"ALwAwQDGAMsA0ADVANsA4ADlAOsA8AD2APsBAQEHAQ0BEwEZAR8BJQErATIBOAE+AUUBTAFS" +
"AVkBYAFnAW4BdQF8AYMBiwGSAZoBoQGpAbEBuQHBAckB0QHZAeEB6QHyAfoCAwIMAhQCHQIm" +
"Ai8COAJBAksCVAJdAmcCcQJ6AoQCjgKYAqICrAK2AsECywLVAuAC6wL1AwADCwMWAyEDLQM4" +
"A0MDTwNaA2YDcgN+A4oDlgOiA64DugPHA9MD4APsA/kEBgQTBCAELQQ7BEgEVQRjBHEEfgSM" +
"BJoEqAS2BMQE0wThBPAE/gUNBRwFKwU6BUkFWAVnBXcFhgWWBaYFtQXFBdUF5QX2BgYGFgYn" +
"BjcGSAZZBmoGewaMBp0GrwbABtEG4wb1BwcHGQcrBz0HTwdhB3QHhgeZB6wHvwfSB+UH+AgL" +
"CB8IMghGCFoIbgiCCJYIqgi+CNII5wj7CRAJJQk6CU8JZAl5CY8JpAm6Cc8J5Qn7ChEKJwo9" +
"ClQKagqBCpgKrgrFCtwK8wsLCyILOQtRC2kLgAuYC7ALyAvhC/kMEgwqDEMMXAx1DI4MpwzA" +
"DNkM8w0NDSYNQA1aDXQNjg2pDcMN3g34DhMOLg5JDmQOfw6bDrYO0g7uDwkPJQ9BD14Peg+W" +
"D7MPzw/sEAkQJhBDEGEQfhCbELkQ1xD1ERMRMRFPEW0RjBGqEckR6BIHEiYSRRJkEoQSoxLD" +
"EuMTAxMjE0MTYxODE6QTxRPlFAYUJxRJFGoUixStFM4U8BUSFTQVVhV4FZsVvRXgFgMWJhZJ" +
"FmwWjxayFtYW+hcdF0EXZReJF64X0hf3GBsYQBhlGIoYrxjVGPoZIBlFGWsZkRm3Gd0aBBoq" +
"GlEadxqeGsUa7BsUGzsbYxuKG7Ib2hwCHCocUhx7HKMczBz1HR4dRx1wHZkdwx3sHhYeQB5q" +
"HpQevh7pHxMfPh9pH5Qfvx/qIBUgQSBsIJggxCDwIRwhSCF1IaEhziH7IiciVSKCIq8i3SMK" +
"IzgjZiOUI8Ij8CQfJE0kfCSrJNolCSU4JWgllyXHJfcmJyZXJocmtyboJxgnSSd6J6sn3CgN" +
"KD8ocSiiKNQpBik4KWspnSnQKgIqNSpoKpsqzysCKzYraSudK9EsBSw5LG4soizXLQwtQS12" +
"Last4S4WLkwugi63Lu4vJC9aL5Evxy/+MDUwbDCkMNsxEjFKMYIxujHyMioyYzKbMtQzDTNG" +
"M38zuDPxNCs0ZTSeNNg1EzVNNYc1wjX9Njc2cjauNuk3JDdgN5w31zgUOFA4jDjIOQU5Qjl/" +
"Obw5+To2OnQ6sjrvOy07azuqO+g8JzxlPKQ84z0iPWE9oT3gPiA+YD6gPuA/IT9hP6I/4kAj" +
"QGRApkDnQSlBakGsQe5CMEJyQrVC90M6Q31DwEQDREdEikTORRJFVUWaRd5GIkZnRqtG8Ec1" +
"R3tHwEgFSEtIkUjXSR1JY0mpSfBKN0p9SsRLDEtTS5pL4kwqTHJMuk0CTUpNk03cTiVObk63" +
"TwBPSU+TT91QJ1BxULtRBlFQUZtR5lIxUnxSx1MTU19TqlP2VEJUj1TbVShVdVXCVg9WXFap" +
"VvdXRFeSV+BYL1h9WMtZGllpWbhaB1pWWqZa9VtFW5Vb5Vw1XIZc1l0nXXhdyV4aXmxevV8P" +
"X2Ffs2AFYFdgqmD8YU9homH1YklinGLwY0Njl2PrZEBklGTpZT1lkmXnZj1mkmboZz1nk2fp" +
"aD9olmjsaUNpmmnxakhqn2r3a09rp2v/bFdsr20IbWBtuW4SbmtuxG8eb3hv0XArcIZw4HE6" +
"cZVx8HJLcqZzAXNdc7h0FHRwdMx1KHWFdeF2Pnabdvh3VnezeBF4bnjMeSp5iXnnekZ6pXsE" +
"e2N7wnwhfIF84X1BfaF+AX5ifsJ/I3+Ef+WAR4CogQqBa4HNgjCCkoL0g1eDuoQdhICE44VH" +
"hauGDoZyhteHO4efiASIaYjOiTOJmYn+imSKyoswi5aL/IxjjMqNMY2Yjf+OZo7OjzaPnpAG" +
"kG6Q1pE/kaiSEZJ6kuOTTZO2lCCUipT0lV+VyZY0lp+XCpd1l+CYTJi4mSSZkJn8mmia1ZtC" +
"m6+cHJyJnPedZJ3SnkCerp8dn4uf+qBpoNihR6G2oiailqMGo3aj5qRWpMelOKWpphqmi6b9" +
"p26n4KhSqMSpN6mpqhyqj6sCq3Wr6axcrNCtRK24ri2uoa8Wr4uwALB1sOqxYLHWskuywrM4" +
"s660JbSctRO1irYBtnm28Ldot+C4WbjRuUq5wro7urW7LrunvCG8m70VvY++Cr6Evv+/er/1" +
"wHDA7MFnwePCX8Lbw1jD1MRRxM7FS8XIxkbGw8dBx7/IPci8yTrJuco4yrfLNsu2zDXMtc01" +
"zbXONs62zzfPuNA50LrRPNG+0j/SwdNE08bUSdTL1U7V0dZV1tjXXNfg2GTY6Nls2fHadtr7" +
"24DcBdyK3RDdlt4c3qLfKd+v4DbgveFE4cziU+Lb42Pj6+Rz5PzlhOYN5pbnH+ep6DLovOlG" +
"6dDqW+rl63Dr++yG7RHtnO4o7rTvQO/M8Fjw5fFy8f/yjPMZ86f0NPTC9VD13vZt9vv3ivgZ" +
"+Kj5OPnH+lf65/t3/Af8mP0p/br+S/7c/23//2Rlc2MAAAAAAAAALklFQyA2MTk2Ni0yLTEg" +
"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"
)
var (
testGlobalApp = New(FB_TEST_APP_ID, FB_TEST_APP_SECRET)
)
type AllTypes struct {
AnonymousStruct1
*AnonymousStruct2
Int int
Int8 int8
Int16 int16
Int32 int32
Int64 int64
Uint uint
Uint8 uint8
Uint16 uint16
Uint32 uint32
Uint64 uint64
Float32 float32
Float64 float64
String string
ArrayOfInt []int
MapOfString map[string]string
NestedStruct *NestedStruct
}
type AnonymousStruct1 struct {
AnonymousInt1 int
AnonymousString1 string
AnonymousArrayOfString1 []string
}
type AnonymousStruct2 struct {
AnonymousInt2 int
AnonymousString2 string
AnonymousArrayOfString2 []string
}
type NestedStruct struct {
Int int
String string
ArrayOfString []string
}
type ParamsStruct struct {
Foo string
Bar *ParamsNestedStruct
}
type ParamsNestedStruct struct {
AAA int
BBB string
CCC bool
}
type FieldTagStruct struct {
Field1 string `facebook:"field2"`
Required string `facebook:",required"`
Foo string `facebook:"bar,required"`
CanAbsent string
}
type MessageTag struct {
Id string
Name string
Type string
}
type MessageTags map[string][]*MessageTag
type NullStruct struct {
Null *int
}
// custom unmarshaler.
type CustomMarshaler struct {
Name string
Hash int64
Extra bool `facebook:",required"` // this field is ignored due to Unmarshaler.
}
type customMarshaler struct {
Name string
Hash int64
}
func (cm *CustomMarshaler) UnmarshalJSON(data []byte) error {
var c customMarshaler
err := json.Unmarshal(data, &c)
if err != nil {
return err
}
cm.Name = c.Name
cm.Hash = c.Hash
if cm.Name == "bar" {
return fmt.Errorf("sorry but i don't like `bar`.")
}
return nil
}
type CustomMarshalerStruct struct {
Marshaler CustomMarshaler
}
func TestApiGetUserInfoV2(t *testing.T) {
Version = "v2.2"
defer func() {
Version = ""
}()
// It's not allowed to get user info by name. So I get "me" with access token instead.
if FB_TEST_VALID_ACCESS_TOKEN != "" {
me, err := Api("me", GET, Params{
"access_token": FB_TEST_VALID_ACCESS_TOKEN,
})
if err != nil {
t.Fatalf("cannot get my info. [e:%v]", err)
}
if e := me.Err(); e != nil {
t.Fatalf("facebook returns error. [e:%v]", e)
}
t.Logf("my info. %v", me)
}
}
func TestBatchApiGetInfo(t *testing.T) {
if FB_TEST_VALID_ACCESS_TOKEN == "" {
t.Skipf("cannot call batch api without access token. skip this test.")
}
verifyBatchResult := func(t *testing.T, index int, res Result) {
batch, err := res.Batch()
if err != nil {
t.Fatalf("cannot parse batch api results[%v]. [e:%v] [result:%v]", index, err, res)
}
if batch.StatusCode != 200 {
t.Fatalf("facebook returns unexpected http status code in results[%v]. [code:%v] [result:%v]", index, batch.StatusCode, res)
}
contentType := batch.Header.Get("Content-Type")
if contentType == "" {
t.Fatalf("facebook returns unexpected http header in results[%v]. [header:%v]", index, batch.Header)
}
if batch.Body == "" {
t.Fatalf("facebook returns unexpected http body in results[%v]. [body:%v]", index, batch.Body)
}
var id string
err = batch.Result.DecodeField("id", &id)
if err != nil {
t.Fatalf("cannot get 'id' field in results[%v]. [result:%v]", index, res)
}
if id == "" {
t.Fatalf("facebook should return account id in results[%v].", index)
}
}
test := func(t *testing.T) {
params1 := Params{
"method": GET,
"relative_url": "me",
}
params2 := Params{
"method": GET,
"relative_url": uint64(100002828925788), // id of my another facebook account
}
results, err := BatchApi(FB_TEST_VALID_ACCESS_TOKEN, params1, params2)
if err != nil {
t.Fatalf("cannot get batch result. [e:%v]", err)
}
if len(results) != 2 {
t.Fatalf("batch api should return results in an array with 2 entries. [len:%v]", len(results))
}
if Version == "" {
t.Log("use default facebook version.")
} else {
t.Logf("global facebook version: %v", Version)
}
for index, result := range results {
verifyBatchResult(t, index, result)
}
}
// Use default Version.
Version = ""
test(t)
// User "v2.2".
Version = "v2.2"
defer func() {
Version = ""
}()
test(t)
// when providing an invalid access token, BatchApi should return a facebook error.
_, err := BatchApi("an_invalid_access_token", Params{
"method": GET,
"relative_url": "me",
})
if err == nil {
t.Fatalf("expect an error when providing an invalid access token to BatchApi.")
}
if _, ok := err.(*Error); !ok {
t.Fatalf("batch result error must be an *Error. [e:%v]", err)
}
}
func TestApiParseSignedRequest(t *testing.T) {
if FB_TEST_VALID_SIGNED_REQUEST == "" {
t.Logf("skip this case as we don't have a valid signed request.")
return
}
app := New(FB_TEST_APP_ID, FB_TEST_APP_SECRET)
res, err := app.ParseSignedRequest(FB_TEST_VALID_SIGNED_REQUEST)
if err != nil {
t.Fatalf("cannot parse signed request. [e:%v]", err)
}
t.Logf("signed request is '%v'.", res)
}
func TestSession(t *testing.T) {
if FB_TEST_VALID_ACCESS_TOKEN == "" {
t.Skipf("skip this case as we don't have a valid access token.")
}
session := &Session{}
session.SetAccessToken(FB_TEST_VALID_ACCESS_TOKEN)
test := func(t *testing.T, session *Session) {
id, err := session.User()
if err != nil {
t.Fatalf("cannot get current user id. [e:%v]", err)
}
t.Logf("current user id is %v", id)
result, e := session.Api("/me", GET, Params{
"fields": "id,email,website",
})
if e != nil {
t.Fatalf("cannot get my extended info. [e:%v]", e)
}
if Version == "" {
t.Log("use default facebook version.")
} else {
t.Logf("global facebook version: %v", Version)
}
if session.Version == "" {
t.Log("use default session facebook version.")
} else {
t.Logf("session facebook version: %v", session.Version)
}
t.Logf("my extended info is: %v", result)
}
// Default version.
test(t, session)
// Global version overwrite default session version.
func() {
Version = "v2.2"
defer func() {
Version = ""
}()
test(t, session)
}()
// Session version overwrite default version.
func() {
Version = "vx.y" // an invalid version.
session.Version = "v2.2"
defer func() {
Version = ""
}()
test(t, session)
}()
// Session with appsecret proof enabled.
if FB_TEST_VALID_ACCESS_TOKEN != "" {
app := New(FB_TEST_APP_ID, FB_TEST_APP_SECRET)
app.EnableAppsecretProof = true
session := app.Session(FB_TEST_VALID_ACCESS_TOKEN)
_, e := session.Api("/me", GET, Params{
"fields": "id",
})
if e != nil {
t.Fatalf("cannot get my info with proof. [e:%v]", e)
}
}
}
func TestUploadingBinary(t *testing.T) {
if FB_TEST_VALID_ACCESS_TOKEN == "" {
t.Skipf("skip this case as we don't have a valid access token.")
}
buf := bytes.NewBufferString(FB_TEST_BINARY_JPG_FILE)
reader := base64.NewDecoder(base64.StdEncoding, buf)
session := &Session{}
session.SetAccessToken(FB_TEST_VALID_ACCESS_TOKEN)
result, e := session.Api("/me/photos", POST, Params{
"message": "Test photo from https://github.com/huandu/facebook",
"source": Data("my_profile.jpg", reader),
})
if e != nil {
t.Fatalf("cannot create photo on my timeline. [e:%v]", e)
}
var id string
e = result.DecodeField("id", &id)
if e != nil {
t.Fatalf("facebook should return photo id on success. [e:%v]", e)
}
t.Logf("newly created photo id is %v", id)
}
func TestUploadBinaryWithBatch(t *testing.T) {
if FB_TEST_VALID_ACCESS_TOKEN == "" {
t.Skipf("skip this case as we don't have a valid access token.")
}
buf1 := bytes.NewBufferString(FB_TEST_BINARY_JPG_FILE)
reader1 := base64.NewDecoder(base64.StdEncoding, buf1)
buf2 := bytes.NewBufferString(FB_TEST_BINARY_JPG_FILE)
reader2 := base64.NewDecoder(base64.StdEncoding, buf2)
session := &Session{}
session.SetAccessToken(FB_TEST_VALID_ACCESS_TOKEN)
// sample comes from facebook batch api sample.
// https://developers.facebook.com/docs/reference/api/batch/
//
// curl
// -F 'access_token=…' \
// -F 'batch=[{"method":"POST","relative_url":"me/photos","body":"message=My cat photo","attached_files":"file1"},{"method":"POST","relative_url":"me/photos","body":"message=My dog photo","attached_files":"file2"},]' \
// -F 'file1=@cat.gif' \
// -F 'file2=@dog.jpg' \
// https://graph.facebook.com
result, e := session.Batch(Params{
"file1": Data("cat.jpg", reader1),
"file2": Data("dog.jpg", reader2),
}, Params{
"method": POST,
"relative_url": "me/photos",
"body": "message=My cat photo",
"attached_files": "file1",
}, Params{
"method": POST,
"relative_url": "me/photos",
"body": "message=My dog photo",
"attached_files": "file2",
})
if e != nil {
t.Fatalf("cannot create photo on my timeline. [e:%v]", e)
}
t.Logf("batch call result. [result:%v]", result)
}
func TestSimpleFQL(t *testing.T) {
defer func() {
Version = ""
}()
test := func(t *testing.T, session *Session) {
me, err := session.FQL("SELECT name FROM user WHERE uid = 538744468")
if err != nil {
t.Fatalf("cannot get my info. [e:%v]", err)
}
if len(me) != 1 {
t.Fatalf("expect to get only 1 result. [len:%v]", len(me))
}
t.Logf("my name. %v", me[0]["name"])
}
// v2.2 api doesn't allow me to query user without access token.
if FB_TEST_VALID_ACCESS_TOKEN == "" {
return
}
Version = "v2.2"
session := &Session{}
session.SetAccessToken(FB_TEST_VALID_ACCESS_TOKEN)
test(t, session)
}
func TestMultiFQL(t *testing.T) {
defer func() {
Version = ""
}()
test := func(t *testing.T, session *Session) {
res, err := session.MultiFQL(Params{
"query1": "SELECT username FROM page WHERE page_id = 20531316728",
"query2": "SELECT uid FROM user WHERE uid = 538744468",
})
if err != nil {
t.Fatalf("cannot get my info. [e:%v]", err)
}
if err = res.Err(); err != nil {
t.Fatalf("fail to parse facebook api error. [e:%v]", err)
}
var query1, query2 []Result
err = res.DecodeField("query1", &query1)
if err != nil {
t.Fatalf("cannot get result of query1. [e:%v]", err)
}
if len(query1) != 1 {
t.Fatalf("expect to get only 1 result in query1. [len:%v]", len(query1))
}
err = res.DecodeField("query2", &query2)
if err != nil {
t.Fatalf("cannot get result of query2. [e:%v]", err)
}
if len(query2) != 1 {
t.Fatalf("expect to get only 1 result in query2. [len:%v]", len(query2))
}
var username string
var uid string
err = query1[0].DecodeField("username", &username)
if err != nil {
t.Fatalf("cannot decode username from query1. [e:%v]", err)
}
if username != "facebook" {
t.Fatalf("username is expected to be 'facebook'. [username:%v]", username)
}
err = query2[0].DecodeField("uid", &uid)
if err != nil {
t.Fatalf("cannot decode username from query2. [e:%v] [query2:%v]", err, query2)
}
if uid != "538744468" {
t.Fatalf("username is expected to be 'facebook'. [username:%v]", username)
}
}
// v2.2 api doesn't allow me to query user without access token.
if FB_TEST_VALID_ACCESS_TOKEN == "" {
return
}
Version = "v2.2"
session := &Session{}
session.SetAccessToken(FB_TEST_VALID_ACCESS_TOKEN)
test(t, session)
}
func TestGraphDebuggingAPI(t *testing.T) {
if FB_TEST_VALID_ACCESS_TOKEN == "" {
t.Skipf("cannot call batch api without access token. skip this test.")
}
test := func(t *testing.T, session *Session) {
session.SetAccessToken(FB_TEST_VALID_ACCESS_TOKEN)
defer session.SetAccessToken("")
// test app must not grant "read_friendlists" permission.
// otherwise there is no way to get a warning from facebook.
res, _ := session.Get("/me/friendlists", nil)
if res == nil {
t.Fatalf("res must not be nil.")
}
debugInfo := res.DebugInfo()
if debugInfo == nil {
t.Fatalf("debug info must exist.")
}
t.Logf("facebook response is: %v", res)
t.Logf("debug info is: %v", *debugInfo)
if debugInfo.Messages == nil && len(debugInfo.Messages) > 0 {
t.Fatalf("facebook must warn me for the permission issue.")
}
msg := debugInfo.Messages[0]
if msg.Type == "" || msg.Message == "" {
t.Fatalf("facebook must say something. [msg:%v]", msg)
}
if debugInfo.FacebookApiVersion == "" {
t.Fatalf("facebook must tell me api version.")
}
if debugInfo.FacebookDebug == "" {
t.Fatalf("facebook must tell me X-FB-Debug.")
}
if debugInfo.FacebookRev == "" {
t.Fatalf("facebook must tell me x-fb-rev.")
}
}
defer func() {
Debug = DEBUG_OFF
Version = ""
}()
Version = "v2.2"
Debug = DEBUG_ALL
test(t, defaultSession)
session := &Session{}
session.SetDebug(DEBUG_ALL)
test(t, session)
// test changing debug mode.
old := session.SetDebug(DEBUG_OFF)
if old != DEBUG_ALL {
t.Fatalf("debug mode must be DEBUG_ALL. [debug:%v]", old)
}
if session.Debug() != DEBUG_ALL {
t.Fatalf("debug mode must be DEBUG_ALL [debug:%v]", session.Debug())
}
Debug = DEBUG_OFF
if session.Debug() != DEBUG_OFF {
t.Fatalf("debug mode must be DEBUG_OFF. [debug:%v]", session.Debug())
}
}
func TestResultDecode(t *testing.T) {
strNormal := `{
"anonymous_int1": 123,
"anonymous_string2": "abc",
"int": 1234,
"int8": 23,
"int16": 12345,
"int32": -127372843,
"int64": 192438483489298,
"uint": 1283829,
"uint8": 233,
"uint16": 62121,
"uint32": 3083747392,
"uint64": 2034857382993849,
"float32": 9382.38429,
"float64": 3984.293848292,
"map_of_string": {"a": "1", "b": "2"},
"array_of_int": [12, 34, 56],
"string": "abcd",
"notused": 1234,
"nested_struct": {
"string": "hello",
"int": 123,
"array_of_string": ["a", "b", "c"]
}
}`
strOverflow := `{
"int": 1234,
"int8": 23,
"int16": 12345,
"int32": -127372843,
"int64": 192438483489298,
"uint": 1283829,
"uint8": 233,
"uint16": 62121,
"uint32": 383083747392,
"uint64": 2034857382993849,
"float32": 9382.38429,
"float64": 3984.293848292,
"string": "abcd",
"map_of_string": {"a": "1", "b": "2"},
"array_of_int": [12, 34, 56],
"string": "abcd",
"notused": 1234,
"nested_struct": {
"string": "hello",
"int": 123,
"array_of_string": ["a", "b", "c"]
}
}`
strMissAField := `{
"int": 1234,
"int8": 23,
"int16": 12345,
"int32": -127372843,
"missed": "int64",
"uint": 1283829,
"uint8": 233,
"uint16": 62121,
"uint32": 383083747392,
"uint64": 2034857382993849,
"float32": 9382.38429,
"float64": 3984.293848292,
"string": "abcd",
"map_of_string": {"a": "1", "b": "2"},
"array_of_int": [12, 34, 56],
"string": "abcd",
"notused": 1234,
"nested_struct": {
"string": "hello",
"int": 123,
"array_of_string": ["a", "b", "c"]
}
}`
var result Result
var err error
var normal, withError AllTypes
var anInt int
err = json.Unmarshal([]byte(strNormal), &result)
if err != nil {
t.Fatalf("cannot unmarshal json string. [e:%v]", err)
}
err = result.Decode(&normal)
if err != nil {
t.Fatalf("cannot decode normal struct. [e:%v]", err)
}
if normal.AnonymousInt1 != 123 {
t.Fatalf("Fail to decode AnonymousInt1. [value:%v]", normal.AnonymousInt1)
}
if normal.AnonymousString2 != "abc" {
t.Fatalf("Fail to decode AnonymousString2. [value:%v]", normal.AnonymousString2)
}
err = json.Unmarshal([]byte(strOverflow), &result)
if err != nil {
t.Fatalf("cannot unmarshal json string. [e:%v]", err)
}
err = result.Decode(&withError)
if err == nil {
t.Fatalf("struct should be overflow")
}
t.Logf("overflow struct. e:%v", err)
err = json.Unmarshal([]byte(strMissAField), &result)
if err != nil {
t.Fatalf("cannot unmarshal json string. [e:%v]", err)
}
err = result.Decode(&withError)
if err == nil {
t.Fatalf("a field in struct should absent in json map.")
}
t.Logf("miss-a-field struct. e:%v", err)
err = result.DecodeField("array_of_int.2", &anInt)
if err != nil {
t.Fatalf("cannot decode array item. [e:%v]", err)
}
if anInt != 56 {
t.Fatalf("invalid array value. expected 56, actual %v", anInt)
}
err = result.DecodeField("nested_struct.int", &anInt)
if err != nil {
t.Fatalf("cannot decode nested struct item. [e:%v]", err)
}
if anInt != 123 {
t.Fatalf("invalid array value. expected 123, actual %v", anInt)
}
}
func TestParamsEncode(t *testing.T) {
var params Params
buf := &bytes.Buffer{}
if mime, err := params.Encode(buf); err != nil || mime != _MIME_FORM_URLENCODED || buf.Len() != 0 {
t.Fatalf("empty params must encode to an empty string. actual is [e:%v] [str:%v] [mime:%v]", err, buf.String(), mime)
}
buf.Reset()
params = Params{}
params["need_escape"] = "&=+"
expectedEncoding := "need_escape=%26%3D%2B"
if mime, err := params.Encode(buf); err != nil || mime != _MIME_FORM_URLENCODED || buf.String() != expectedEncoding {
t.Fatalf("wrong params encode result. expected is '%v'. actual is '%v'. [e:%v] [mime:%v]", expectedEncoding, buf.String(), err, mime)
}
buf.Reset()
data := ParamsStruct{
Foo: "hello, world!",
Bar: &ParamsNestedStruct{
AAA: 1234,
BBB: "bbb",
CCC: true,
},
}
params = MakeParams(data)
/* there is no easy way to compare two encoded maps. so i just write expect map here, not test it.
expectedParams := Params{
"foo": "hello, world!",
"bar": map[string]interface{}{
"aaa": 1234,
"bbb": "bbb",
"ccc": true,
},
}
*/
if params == nil {
t.Fatalf("make params error.")
}
mime, err := params.Encode(buf)
t.Logf("complex encode result is '%v'. [e:%v] [mime:%v]", buf.String(), err, mime)
}
func TestBinaryParamsEncode(t *testing.T) {
buf := &bytes.Buffer{}
params := Params{}
params["attachment"] = FileAlias("image.jpg", "LICENSE")
contentTypeImage := "Content-Type: image/jpeg"
if mime, err := params.Encode(buf); err != nil || !strings.Contains(mime, _MIME_FORM_DATA) || !strings.Contains(buf.String(), contentTypeImage) {
t.Fatalf("wrong binary params encode result. expected content type is '%v'. actual is '%v'. [e:%v] [mime:%v]", contentTypeImage, buf.String(), err, mime)
}
// Fallback for unknown content types
// should be application/octet-stream
buf.Reset()
params = Params{"attachment": FileAlias("image.unknown", "LICENSE")}
contentTypeOctet := "Content-Type: application/octet-stream"
if mime, err := params.Encode(buf); err != nil || !strings.Contains(mime, _MIME_FORM_DATA) || !strings.Contains(buf.String(), contentTypeOctet) {
t.Fatalf("wrong binary params encode result. expected content type is '%v'. actual is '%v'. [e:%v] [mime:%v]", contentTypeOctet, buf.String(), err, mime)
}
}
func TestStructFieldTag(t *testing.T) {
strNormalField := `{
"field2": "hey",
"required": "my",
"bar": "dear"
}`
strMissingField2Field := `{
"field1": "hey",
"required": "my",
"bar": "dear"
}`
strMissingRequiredField := `{
"field1": "hey",
"bar": "dear",
"can_absent": "babe"
}`
strMissingBarField := `{
"field1": "hey",
"required": "my"
}`
var result Result
var value FieldTagStruct
var err error
err = json.Unmarshal([]byte(strNormalField), &result)
if err != nil {
t.Fatalf("cannot unmarshal json string. [e:%v]", err)
}
err = result.Decode(&value)
if err != nil {
t.Fatalf("cannot decode struct. [e:%v]", err)
}
result = Result{}
value = FieldTagStruct{}
err = json.Unmarshal([]byte(strMissingField2Field), &result)
if err != nil {
t.Fatalf("cannot unmarshal json string. [e:%v]", err)
}
err = result.Decode(&value)
if err != nil {
t.Fatalf("cannot decode struct. [e:%v]", err)
}
if value.Field1 != "" {
t.Fatalf("value field1 should be kept unchanged. [field1:%v]", value.Field1)
}
result = Result{}
value = FieldTagStruct{}
err = json.Unmarshal([]byte(strMissingRequiredField), &result)
if err != nil {
t.Fatalf("cannot unmarshal json string. [e:%v]", err)
}
err = result.Decode(&value)
if err == nil {
t.Fatalf("should fail to decode struct.")
}
t.Logf("expected decode error. [e:%v]", err)
result = Result{}
value = FieldTagStruct{}
err = json.Unmarshal([]byte(strMissingBarField), &result)
if err != nil {
t.Fatalf("cannot unmarshal json string. [e:%v]", err)
}
err = result.Decode(&value)
if err == nil {
t.Fatalf("should fail to decode struct.")
}
t.Logf("expected decode error. [e:%v]", err)