Default test.html
173 KB
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
<html>
<head>
<title>TestNG: Default test</title>
<link href="../testng.css" rel="stylesheet" type="text/css" />
<link href="../my-testng.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.log { display: none;}
.stack-trace { display: none;}
</style>
<script type="text/javascript">
<!--
function flip(e) {
current = e.style.display;
if (current == 'block') {
e.style.display = 'none';
return 0;
}
else {
e.style.display = 'block';
return 1;
}
}
function toggleBox(szDivId, elem, msg1, msg2)
{
var res = -1; if (document.getElementById) {
res = flip(document.getElementById(szDivId));
}
else if (document.all) {
// this is the way old msie versions work
res = flip(document.all[szDivId]);
}
if(elem) {
if(res == 0) elem.innerHTML = msg1; else elem.innerHTML = msg2;
}
}
function toggleAllBoxes() {
if (document.getElementsByTagName) {
d = document.getElementsByTagName('div');
for (i = 0; i < d.length; i++) {
if (d[i].className == 'log') {
flip(d[i]);
}
}
}
}
// -->
</script>
</head>
<body>
<h2 align='center'>Default test</h2><table border='1' align="center">
<tr>
<td>Tests passed/Failed/Skipped:</td><td>13/0/0</td>
</tr><tr>
<td>Started on:</td><td>Mon Jul 26 14:32:43 CST 2021</td>
</tr>
<tr><td>Total time:</td><td>21 seconds (21619 ms)</td>
</tr><tr>
<td>Included groups:</td><td></td>
</tr><tr>
<td>Excluded groups:</td><td></td>
</tr>
</table><p/>
<small><i>(Hover the method name to see the test class name)</i></small><p/>
<table width='100%' border='1' class='invocation-passed'>
<tr><td colspan='4' align='center'><b>PASSED TESTS</b></td></tr>
<tr><td><b>Test method</b></td>
<td width="30%"><b>Exception</b></td>
<td width="10%"><b>Time (seconds)</b></td>
<td><b>Instance</b></td>
</tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testActivityList()'><b>testActivityList</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 幸运夺宝箱列表<br/>
<a href="#Output-434610528" onClick='toggleBox("Output-434610528", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-434610528" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-434610528">
======2021-07-26 14:32:45:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"pageSize":"10","activityType":"1","pageNum":"1"}<br/>
###Http Request queryString after URLEncoder### :<br/>
pageSize=10&activityType=1&pageNum=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:45 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"sort desc","endRow":8,"list":[{"remark":"12","openedTimes":4,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天室气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-课代表*永久\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":402}]","id":128,"operatorId":34,"rewardLotteryCount":4,"openRewardDiamonds":4,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/6e782a90d6d3456695e023958cb0fffa.svga","updateTime":"2021-07-21 14:16:51","sort":111,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png","remainLotteryDiamonds":18910,"openPayDiamonds":4,"createTime":"2020-11-20 14:12:15","name":"xcc111","remainLotteryCount":65,"activityType":1,"priceRules":"[{\"price\":1,\"times\":1},{\"price\":5,\"times\":5},{\"price\":10,\"times\":10}]","isActivate":false,"status":0},{"remark":"没后悔过控件工具库","openedTimes":2300796,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png","lotteryActivityId":63,"createTime":"2020-11-19 17:49:32","startTime":"2020-11-18 00:00:00","id":14,"endTime":"2020-11-30 23:59:59","content":"邂逅2","activityH5Url":"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1","status":2},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":123,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"礼物-小黄鸭*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":115},{\"amount\":6,\"isNotice\":0,\"name\":\"礼物-小心心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":116},{\"amount\":8,\"isNotice\":0,\"name\":\"钻石*8\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":117},{\"amount\":10,\"isNotice\":0,\"name\":\"礼物-心相印*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":118},{\"amount\":21,\"isNotice\":1,\"name\":\"礼物-甜甜圈*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":119},{\"amount\":52,\"isNotice\":1,\"name\":\"礼物-棒棒糖*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":120},{\"amount\":99,\"isNotice\":1,\"name\":\"钻石*99\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":121},{\"amount\":128,\"isNotice\":1,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":122},{\"amount\":158,\"isNotice\":1,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":123}]","startTime":"2020-11-24 00:00:00","id":63,"operatorId":34,"rewardLotteryCount":2300796,"openRewardDiamonds":23974491,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga","updateTime":"2020-11-24 16:52:31","sort":30,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif","remainLotteryDiamonds":12349,"openPayDiamonds":23007960,"createTime":"2019-10-16 18:36:18","name":"普通宝箱","remainLotteryCount":1204,"endTime":"2020-11-26 23:59:59","activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":6990255,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png","delFlag":false,"operatorName":"程杰","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":1,\"name\":\"礼物-甜甜圈\",\"isNew\":0,\"lotteryId\":181},{\"isNotice\":1,\"name\":\"礼物-棒棒糖\",\"isNew\":0,\"lotteryId\":182},{\"isNotice\":1,\"name\":\"礼物-么么哒\",\"isNew\":0,\"lotteryId\":183},{\"isNotice\":1,\"name\":\"礼物-麦克风\",\"isNew\":0,\"lotteryId\":184},{\"isNotice\":1,\"name\":\"礼物-玫瑰花\",\"isNew\":0,\"lotteryId\":185}]","id":69,"operatorId":75,"rewardLotteryCount":6990255,"openRewardDiamonds":67901769,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga","updateTime":"2020-06-29 18:33:46","sort":30,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif","remainLotteryDiamonds":12309,"openPayDiamonds":69902550,"createTime":"2020-01-11 11:37:53","name":"普通宝箱","remainLotteryCount":196,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":220143,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\",\"decorationId\":211,\"decorationName\":\"慵懒的猫个人名牌\"}","lotteryRules":"[{\"amount\":108,\"isReward\":0,\"isNotice\":0,\"name\":\"钻石*108\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":124},{\"amount\":128,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":125},{\"amount\":158,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":126},{\"amount\":188,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-怦然心动*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":127},{\"amount\":233,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-可爱小熊*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":128},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天使之心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":129},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-果果冰*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":130},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":132},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":133},{\"amount\":3344,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":134}]","id":64,"operatorId":34,"rewardLotteryCount":220143,"openRewardDiamonds":46252615,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga","updateTime":"2021-06-02 15:00:48","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif","remainLotteryDiamonds":472157,"openPayDiamonds":46230030,"createTime":"2019-10-16 18:38:39","name":"白银宝箱","remainLotteryCount":1460,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"","openedTimes":518608,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-魔力法典*1 天\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":396},{\"amount\":10,\"isNotice\":0,\"name\":\"钻石*10\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":395},{\"amount\":99,\"isNotice\":0,\"name\":\"魅力值礼物-水晶粽\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":394}]","startTime":"2020-11-16 00:00:00","id":70,"operatorId":34,"rewardLotteryCount":518608,"openRewardDiamonds":105724795,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga","updateTime":"2020-11-19 15:36:17","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif","remainLotteryDiamonds":9777,"openPayDiamonds":108906423,"createTime":"2020-01-11 11:46:04","name":"白银宝箱","remainLotteryCount":263,"endTime":"2020-11-18 23:59:59","activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"2\",\"times\":\"5\"},{\"price\":\"3\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":90508,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png","delFlag":false,"operatorName":"梁鑫宇","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":0,\"name\":\"礼物-可爱小熊*\",\"isNew\":0,\"lotteryId\":135},{\"isNotice\":0,\"name\":\"钻石*388\",\"isNew\":0,\"lotteryId\":136},{\"isNotice\":0,\"name\":\"礼物-天使之心*\",\"isNew\":0,\"lotteryId\":137},{\"isNotice\":0,\"name\":\"礼物-果果冰*\",\"isNew\":0,\"lotteryId\":138},{\"isNotice\":1,\"name\":\"钻石*788\",\"isNew\":0,\"lotteryId\":139},{\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"isNew\":0,\"lotteryId\":140},{\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"isNew\":0,\"lotteryId\":141},{\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"isNew\":0,\"lotteryId\":142},{\"isNotice\":1,\"name\":\"礼物-爱神之箭*\",\"isNew\":0,\"lotteryId\":143},{\"isNotice\":1,\"name\":\"礼物-心愿灯*\",\"isNew\":0,\"lotteryId\":144},{\"isNotice\":1,\"name\":\"座位框-花蝴蝶*1 天\",\"isNew\":0,\"lotteryId\":145},{\"isNotice\":1,\"name\":\"座位框-精灵梦*1 天\",\"isNew\":0,\"lotteryId\":146}]","id":65,"operatorId":55,"rewardLotteryCount":90508,"openRewardDiamonds":54735115,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga","updateTime":"2020-01-11 12:06:41","sort":10,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif","remainLotteryDiamonds":917525,"openPayDiamonds":60278328,"createTime":"2019-10-16 18:42:34","name":"黄金宝箱","remainLotteryCount":1492,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":503800,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png","delFlag":false,"operatorName":"周雄军","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天室气泡\"}","lotteryRules":"[{\"amount\":222,\"isNotice\":0,\"name\":\"礼物-玫瑰花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":196},{\"amount\":233,\"isNotice\":0,\"name\":\"礼物-可爱小熊\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":197},{\"amount\":266,\"isNotice\":0,\"name\":\"礼物-天使之心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":198},{\"amount\":520,\"isNotice\":0,\"name\":\"礼物-果果冰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":199},{\"amount\":999,\"isNotice\":1,\"name\":\"礼物-樱花雨\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":200},{\"amount\":1314,\"isNotice\":1,\"name\":\"礼物-爱的告白\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":201},{\"amount\":3344,\"isNotice\":1,\"name\":\"礼物-永恒印记\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":202},{\"amount\":7777,\"isNotice\":1,\"name\":\"礼物-爱神之箭\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":203},{\"amount\":26666,\"isNotice\":1,\"name\":\"礼物-心愿灯\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":204},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-镜花*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":205},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-水月*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":206},{\"amount\":300,\"isNotice\":0,\"name\":\"礼物-粉色情书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":271}]","id":71,"operatorId":43,"rewardLotteryCount":503800,"openRewardDiamonds":330353108,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga","updateTime":"2021-07-21 16:45:28","sort":10,"labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif","remainLotteryDiamonds":154510768,"openPayDiamonds":335530800,"createTime":"2020-01-11 12:01:31","name":"黄金宝箱","remainLotteryCount":111123023,"activityType":1,"priceRules":"[{\"price\":666,\"times\":1},{\"price\":3330,\"times\":5},{\"price\":6660,\"times\":10}]","isActivate":true,"status":1},{"remark":"2","openedTimes":23,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":9,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\",\"decorationId\":204,\"decorationName\":\"主页特效主页特效\"}","lotteryRules":"[{\"amount\":50,\"isReward\":0,\"probability\":0,\"isNotice\":0,\"name\":\"礼物-森林之星*\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":392},{\"amount\":10,\"isReward\":0,\"probability\":100,\"isNotice\":0,\"name\":\"座位框-萌爪爪*5 天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":326}]","id":97,"operatorId":34,"rewardLotteryCount":23,"openRewardDiamonds":980,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga","updateTime":"2021-04-08 18:15:18","sort":2,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif","remainLotteryDiamonds":7870,"openPayDiamonds":230,"createTime":"2020-06-29 18:51:02","name":"普通的","remainLotteryCount":175,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"}]","isActivate":true,"status":1}],"pageNum":1,"navigatePages":8,"total":8,"pages":1,"size":8,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
======2021-07-26 14:32:45:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======<br/>
======本次用例运行消耗时间 436毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-07-26 14:32:45:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"activityType\":\"1\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&activityType=1&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:45 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":8,\"list\":[{\"remark\":\"12\",\"openedTimes\":4,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天室气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-课代表*永久\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":402}]\",\"id\":128,\"operatorId\":34,\"rewardLotteryCount\":4,\"openRewardDiamonds\":4,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/6e782a90d6d3456695e023958cb0fffa.svga\",\"updateTime\":\"2021-07-21 14:16:51\",\"sort\":111,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png\",\"remainLotteryDiamonds\":18910,\"openPayDiamonds\":4,\"createTime\":\"2020-11-20 14:12:15\",\"name\":\"xcc111\",\"remainLotteryCount\":65,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":1,\\\"times\\\":1},{\\\"price\\\":5,\\\"times\\\":5},{\\\"price\\\":10,\\\"times\\\":10}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"没后悔过控件工具库\",\"openedTimes\":2300796,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png\",\"lotteryActivityId\":63,\"createTime\":\"2020-11-19 17:49:32\",\"startTime\":\"2020-11-18 00:00:00\",\"id\":14,\"endTime\":\"2020-11-30 23:59:59\",\"content\":\"邂逅2\",\"activityH5Url\":\"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1\",\"status\":2},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":123,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小黄鸭*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":115},{\\\"amount\\\":6,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小心心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":116},{\\\"amount\\\":8,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*8\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":117},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-心相印*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":118},{\\\"amount\\\":21,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":119},{\\\"amount\\\":52,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":120},{\\\"amount\\\":99,\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*99\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":121},{\\\"amount\\\":128,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":122},{\\\"amount\\\":158,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":123}]\",\"startTime\":\"2020-11-24 00:00:00\",\"id\":63,\"operatorId\":34,\"rewardLotteryCount\":2300796,\"openRewardDiamonds\":23974491,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga\",\"updateTime\":\"2020-11-24 16:52:31\",\"sort\":30,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif\",\"remainLotteryDiamonds\":12349,\"openPayDiamonds\":23007960,\"createTime\":\"2019-10-16 18:36:18\",\"name\":\"普通宝箱\",\"remainLotteryCount\":1204,\"endTime\":\"2020-11-26 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":6990255,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png\",\"delFlag\":false,\"operatorName\":\"程杰\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":181},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":182},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":183},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":184},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":185}]\",\"id\":69,\"operatorId\":75,\"rewardLotteryCount\":6990255,\"openRewardDiamonds\":67901769,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga\",\"updateTime\":\"2020-06-29 18:33:46\",\"sort\":30,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif\",\"remainLotteryDiamonds\":12309,\"openPayDiamonds\":69902550,\"createTime\":\"2020-01-11 11:37:53\",\"name\":\"普通宝箱\",\"remainLotteryCount\":196,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":220143,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\\\",\\\"decorationId\\\":211,\\\"decorationName\\\":\\\"慵懒的猫个人名牌\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":108,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*108\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":124},{\\\"amount\\\":128,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":125},{\\\"amount\\\":158,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":126},{\\\"amount\\\":188,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-怦然心动*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":127},{\\\"amount\\\":233,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":128},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":129},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":130},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":132},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":133},{\\\"amount\\\":3344,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":134}]\",\"id\":64,\"operatorId\":34,\"rewardLotteryCount\":220143,\"openRewardDiamonds\":46252615,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga\",\"updateTime\":\"2021-06-02 15:00:48\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif\",\"remainLotteryDiamonds\":472157,\"openPayDiamonds\":46230030,\"createTime\":\"2019-10-16 18:38:39\",\"name\":\"白银宝箱\",\"remainLotteryCount\":1460,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"\",\"openedTimes\":518608,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-魔力法典*1 天\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":396},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*10\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":395},{\\\"amount\\\":99,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-水晶粽\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":394}]\",\"startTime\":\"2020-11-16 00:00:00\",\"id\":70,\"operatorId\":34,\"rewardLotteryCount\":518608,\"openRewardDiamonds\":105724795,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga\",\"updateTime\":\"2020-11-19 15:36:17\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif\",\"remainLotteryDiamonds\":9777,\"openPayDiamonds\":108906423,\"createTime\":\"2020-01-11 11:46:04\",\"name\":\"白银宝箱\",\"remainLotteryCount\":263,\"endTime\":\"2020-11-18 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"2\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"3\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":90508,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png\",\"delFlag\":false,\"operatorName\":\"梁鑫宇\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":135},{\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*388\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":136},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":137},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":138},{\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*788\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":139},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":140},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":141},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":142},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":143},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":144},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-花蝴蝶*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":145},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-精灵梦*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":146}]\",\"id\":65,\"operatorId\":55,\"rewardLotteryCount\":90508,\"openRewardDiamonds\":54735115,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga\",\"updateTime\":\"2020-01-11 12:06:41\",\"sort\":10,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif\",\"remainLotteryDiamonds\":917525,\"openPayDiamonds\":60278328,\"createTime\":\"2019-10-16 18:42:34\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":1492,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":503800,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png\",\"delFlag\":false,\"operatorName\":\"周雄军\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天室气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":222,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":196},{\\\"amount\\\":233,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":197},{\\\"amount\\\":266,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":198},{\\\"amount\\\":520,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":199},{\\\"amount\\\":999,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":200},{\\\"amount\\\":1314,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":201},{\\\"amount\\\":3344,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":202},{\\\"amount\\\":7777,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":203},{\\\"amount\\\":26666,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":204},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-镜花*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":205},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-水月*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":206},{\\\"amount\\\":300,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-粉色情书\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":271}]\",\"id\":71,\"operatorId\":43,\"rewardLotteryCount\":503800,\"openRewardDiamonds\":330353108,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga\",\"updateTime\":\"2021-07-21 16:45:28\",\"sort\":10,\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif\",\"remainLotteryDiamonds\":154510768,\"openPayDiamonds\":335530800,\"createTime\":\"2020-01-11 12:01:31\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":111123023,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":666,\\\"times\\\":1},{\\\"price\\\":3330,\\\"times\\\":5},{\\\"price\\\":6660,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"2\",\"openedTimes\":23,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":9,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\\\",\\\"decorationId\\\":204,\\\"decorationName\\\":\\\"主页特效主页特效\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":50,\\\"isReward\\\":0,\\\"probability\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-森林之星*\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":392},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"probability\\\":100,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-萌爪爪*5 天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":326}]\",\"id\":97,\"operatorId\":34,\"rewardLotteryCount\":23,\"openRewardDiamonds\":980,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga\",\"updateTime\":\"2021-04-08 18:15:18\",\"sort\":2,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif\",\"remainLotteryDiamonds\":7870,\"openPayDiamonds\":230,\"createTime\":\"2020-06-29 18:51:02\",\"name\":\"普通的\",\"remainLotteryCount\":175,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":true,\"status\":1}],\"pageNum\":1,\"navigatePages\":8,\"total\":8,\"pages\":1,\"size\":8,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-26 14:32:45:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 436毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"436毫秒","endTime":"2021-07-26 14:32:45","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:45","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:32:45 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>0</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testAuditGuild()'><b>testAuditGuild</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 申请加入公会及审核<br/>
<a href="#Output-1312963234" onClick='toggleBox("Output-1312963234", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-1312963234" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-1312963234">
======2021-07-26 14:32:46:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-25d6e70a67574f9697721871f511ff20#2203773","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"pageSize":"20","pageNum":"1","queryStr":"18306720"}<br/>
###Http Request queryString after URLEncoder### :<br/>
pageSize=20&pageNum=1&queryStr=18306720<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:46 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-26 14:32:32","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/join<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-25d6e70a67574f9697721871f511ff20#2203773","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"applyRemark":"我是test,想加入公会","guildId":232}<br/>
###Http Request queryString after URLEncoder### :<br/>
applyRemark=%E6%88%91%E6%98%AFtest%EF%BC%8C%E6%83%B3%E5%8A%A0%E5%85%A5%E5%85%AC%E4%BC%9A&guildId=232<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:46 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"你的入会申请提交成功","status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"pageSize":999999,"guildCode":"18306720","pageNum":1}<br/>
###Http Request queryString after URLEncoder### :<br/>
pageSize=999999&guildCode=18306720&pageNum=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:47 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":999999,"endRow":1,"list":[{"roomNums":2,"guildStatus":2,"mobile":"13823774131","description":"欢迎来到我的公会","updateTime":"2021-07-26 14:32:32","leaderNickName":"test","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"guildMaxNumDesc":"50人以下","curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/user/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"mobile":"13823774131","pageSize":10,"pageNum":1}<br/>
###Http Request queryString after URLEncoder### :<br/>
mobile=13823774131&pageSize=10&pageNum=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:47 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-26 11:35:38","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-26 13:56:06","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-25d6e70a67574f9697721871f511ff20#2203773","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"pageSize":"20","pageNum":"1","queryStr":"18306720"}<br/>
###Http Request queryString after URLEncoder### :<br/>
pageSize=20&pageNum=1&queryStr=18306720<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:47 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-26 14:32:32","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-9c84c136722e4697bd164b4ec7e00a2c#2203657","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"applyType":"1","pageSize":"20","pageNum":"1","guildId":232}<br/>
###Http Request queryString after URLEncoder### :<br/>
applyType=1&pageSize=20&pageNum=1&guildId=232<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:47 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"baseInfo":{"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","nobleRankCode":31,"memberExp":0,"gender":1,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/cf51ce9230b640b49cd28e8e28257b7a.png","memberLevel":0,"nobleRankName":"子爵Ⅰ","hideActiveTime":false,"hideRoomStatus":false,"type":2,"userId":2203773,"userCode":"137730220","fans":0,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/d1bcf686e2c64fdabac29b91db88fe47.png","nickname":"test","nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/acd69db52eac4b2a93629441fc3575f3.png","showInTops":false,"status":1},"applyType":1,"applyId":11889,"applyRemark":"我是test,想加入公会","handleDesc":"","handleStatus":1,"applyTime":"2021-07-26 14:32:47"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/handle-apply<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-9c84c136722e4697bd164b4ec7e00a2c#2203657","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"applyId":11889,"configs":"[]","handleStatus":2}<br/>
###Http Request queryString after URLEncoder### :<br/>
applyId=11889&configs=%5B%5D&handleStatus=2<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:48 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"已同意","status":200}<br/>
===================================<br/>
======2021-07-26 14:32:48:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======<br/>
======本次用例运行消耗时间 02秒147毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-07-26 14:32:46:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-25d6e70a67574f9697721871f511ff20#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:46 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-26 14:32:32\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/join\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-25d6e70a67574f9697721871f511ff20#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyRemark\":\"我是test,想加入公会\",\"guildId\":232}\r\n###Http Request queryString after URLEncoder### :\r\napplyRemark=%E6%88%91%E6%98%AFtest%EF%BC%8C%E6%83%B3%E5%8A%A0%E5%85%A5%E5%85%AC%E4%BC%9A&guildId=232\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:46 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"你的入会申请提交成功\",\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":999999,\"guildCode\":\"18306720\",\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=999999&guildCode=18306720&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:47 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":999999,\"endRow\":1,\"list\":[{\"roomNums\":2,\"guildStatus\":2,\"mobile\":\"13823774131\",\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-26 14:32:32\",\"leaderNickName\":\"test\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"guildMaxNumDesc\":\"50人以下\",\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:47 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-26 11:35:38\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-26 13:56:06\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-25d6e70a67574f9697721871f511ff20#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:47 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-26 14:32:32\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9c84c136722e4697bd164b4ec7e00a2c#2203657\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyType\":\"1\",\"pageSize\":\"20\",\"pageNum\":\"1\",\"guildId\":232}\r\n###Http Request queryString after URLEncoder### :\r\napplyType=1&pageSize=20&pageNum=1&guildId=232\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:47 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"baseInfo\":{\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"nobleRankCode\":31,\"memberExp\":0,\"gender\":1,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/cf51ce9230b640b49cd28e8e28257b7a.png\",\"memberLevel\":0,\"nobleRankName\":\"子爵Ⅰ\",\"hideActiveTime\":false,\"hideRoomStatus\":false,\"type\":2,\"userId\":2203773,\"userCode\":\"137730220\",\"fans\":0,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/d1bcf686e2c64fdabac29b91db88fe47.png\",\"nickname\":\"test\",\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/acd69db52eac4b2a93629441fc3575f3.png\",\"showInTops\":false,\"status\":1},\"applyType\":1,\"applyId\":11889,\"applyRemark\":\"我是test,想加入公会\",\"handleDesc\":\"\",\"handleStatus\":1,\"applyTime\":\"2021-07-26 14:32:47\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/handle-apply\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9c84c136722e4697bd164b4ec7e00a2c#2203657\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyId\":11889,\"configs\":\"[]\",\"handleStatus\":2}\r\n###Http Request queryString after URLEncoder### :\r\napplyId=11889&configs=%5B%5D&handleStatus=2\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:48 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"已同意\",\"status\":200}\r\n===================================\r\n======2021-07-26 14:32:48:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 02秒147毫秒======\r","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"02秒147毫秒","endTime":"2021-07-26 14:32:48","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:46","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:32:48 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>2</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testGiftList()'><b>testGiftList</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 礼物列表<br/>
<a href="#Output-195801026" onClick='toggleBox("Output-195801026", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-195801026" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-195801026">
======2021-07-26 14:32:49:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"pageSize":"10","type":"1","pageNum":"1","useStatus":"1"}<br/>
###Http Request queryString after URLEncoder### :<br/>
pageSize=10&type=1&pageNum=1&useStatus=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:49 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"查询成功!","data":{"startRow":1,"lastPage":5,"navigatepageNums":[1,2,3,4,5],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":98,"virtualProductId":382,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/14ac61ab60bf4971a8b1db08cf6c7c96.png","createTime":"2021-05-13 16:50:30","refType":1,"id":10,"virtualProductId":382,"content":"使用表白卡让麦上的小哥哥对你表白","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/153fff74da82423ca8d46d16f8a9b8a7.png","type":1,"hotValue":50,"singleShow":true,"playDesc":"","giftVersion":4,"price":0,"remarkUrl":"","id":382,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/15665ead5c5448ecb73a85a9488a8d4d.svga","giftType":2,"sort":5010,"charmValue":0,"limitUpdateTime":"2021-05-13 16:50:30","useStatus":1,"name":"表白卡","isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":4,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 17:02:07","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-13 16:50:30"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":3,"createTime":"2020-11-18 18:19:32","playMethod":"[{\"roomBannerId\":2,\"listBannerId\":1,\"chainNum\":\"1\"},{\"roomBannerId\":2,\"listBannerId\":1,\"chainNum\":\"2\"}]","id":87,"virtualProductId":328},{"playType":1,"createTime":"2020-11-20 18:12:46","playMethod":"[{\"chainNum\":\"3\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4ce4c59d9f945cba7ce5ba743164386.svga\",\"remark\":\"三生三世\"}]","id":92,"virtualProductId":328}],"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/a0af3ab1caa84456b271c297fb0ac5be.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/9a45246eab5249619eafa6f93f0330fa.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"","giftVersion":88,"price":0,"remarkUrl":"","id":328,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/5fa8325c4bea47fb9c2ad12193517d62.svga","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":false,"permissionDesc":"","remark":"","delFlag":false,"obtainType":3,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":106,"virtualProductId":390,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":3,"createTime":"2021-07-07 11:50:04","playMethod":"[{\"roomBannerId\":21,\"listBannerId\":22,\"chainNum\":\"1\"}]","id":95,"virtualProductId":390}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/138fa52d528a4c409aa3d65d19b79d9f.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":100,"remarkUrl":"","id":390,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/0780aca1e7704884ab6450d6d5b5958c.svga","giftType":1,"sort":4999,"charmValue":100,"limitUpdateTime":"2021-07-07 11:50:04","useStatus":1,"name":"冲天火箭","isWall":true,"permissionDesc":"","remark":"火箭玩法","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":2,"updateTime":"2021-07-07 11:50:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-07 11:50:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":88,"virtualProductId":331,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/b0307222fcb646d0b95110656c037124.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":128,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1062960891aa4a99b197e8be5307da07.png","id":331,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c149f8f843604204b146160d92a38346.svga","giftType":1,"sort":4900,"charmValue":128,"limitUpdateTime":"2020-11-24 19:48:45","useStatus":1,"name":"星缤乐","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-11-24 19:48:45"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":108,"virtualProductId":391,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/0bbe351d0d1745c1980e4090cb27903f.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":3555,"remarkUrl":"","id":391,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/7b6454a98bab4c368ee4689c44f242fe.svga","giftType":1,"sort":4386,"charmValue":3555,"limitUpdateTime":"2021-07-21 16:35:54","useStatus":1,"name":"小龙虾","isWall":true,"permissionDesc":"","remark":"五一活动限定聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":3,"updateTime":"2021-07-21 16:35:54","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-21 16:35:54"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":109,"virtualProductId":392,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-07-21 16:40:07","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/21/e233abc98f504bdab8b8397b74ede5b2.svga\",\"vapUrl\":\"\",\"remark\":\"1\"}]","id":96,"virtualProductId":392}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/560811f7b27241be9b2711ff8ff993c4.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":52000,"remarkUrl":"","id":392,"giftType":1,"sort":4313,"charmValue":52000,"limitUpdateTime":"2021-07-21 16:40:07","useStatus":1,"name":"月下美人","isWall":true,"permissionDesc":"","remark":"礼盒活动礼物·即将在返场活动中回归","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":4,"updateTime":"2021-07-21 16:40:07","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-21 16:40:07"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":12,"price":1,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/d927d02a752f41eab8590cd0bfa4ba56.png","id":327,"objectGifUrl":"","giftType":1,"sort":1130,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":89,"virtualProductId":332,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c649a40efa174ef9b3ddcba6c28b6a98.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":1314,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/ecb52148aef347f29a37e6e53fb8e0bb.png","id":332,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/28e07534d6654d1e973eef38f9dbb819.svga","giftType":1,"sort":1121,"charmValue":1314,"limitUpdateTime":"2020-11-24 19:51:10","useStatus":1,"name":"环游星河","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":2,"updateTime":"2021-06-02 11:03:41","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2020-11-24 19:51:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":24,"virtualProductId":326,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:06:05","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/22/e07679f822684aabba34140d5a894cb5.svga\",\"remark\":\"一心一意\"},{\"chainNum\":\"3\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/590d7c47f5414a189f5247be6f0d6b02.svga\",\"remark\":\"三生三世\"}]","id":23,"virtualProductId":326},{"playType":3,"createTime":"2020-11-19 15:14:25","playMethod":"[{\"roomBannerId\":2,\"listBannerId\":1,\"chainNum\":\"3\"}]","id":91,"virtualProductId":326}],"virtualProductActivity":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/688f3a03e80c443aa4aefd240fa5bf00.png","createTime":"2020-06-23 18:57:20","refType":1,"startTime":"2020-11-21 00:00:00","id":1,"endTime":"2020-11-21 23:59:59","virtualProductId":326,"content":"百度2","activityH5Url":"http://www.baidu.com","status":1},"virtualProduct":{"isUse":true,"previewUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/d86d5b1ad31c448697311b2b0f2c1d50.webp","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png","type":1,"hotValue":50,"singleShow":true,"playDesc":"","giftVersion":44,"price":0,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/2e721e9dc9754686b677c2ad616d1b4e.png","id":326,"objectGifUrl":"","giftType":2,"sort":1120,"charmValue":0,"limitUpdateTime":"2020-06-22 17:06:06","useStatus":1,"name":"森林之星","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":4,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-22 17:06:06"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":22,"virtualProductId":324,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:01:51","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/015d9ca65cf7438db1e465761c5a876b.svga\",\"remark\":\"一生一世\"}]","id":21,"virtualProductId":324}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/de1adcc582c449f1bf32722ab9a766ca.png","type":1,"hotValue":200,"singleShow":true,"playDesc":"","giftVersion":11,"price":0,"remarkUrl":"","id":324,"objectGifUrl":"","giftType":2,"sort":1100,"charmValue":0,"limitUpdateTime":"2020-06-22 17:01:52","useStatus":1,"name":"永恒之冠","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":4,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-22 17:01:52"}}],"pageNum":1,"navigatePages":8,"total":46,"pages":5,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
======2021-07-26 14:32:49:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======<br/>
======本次用例运行消耗时间 506毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-07-26 14:32:49:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&type=1&pageNum=1&useStatus=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:49 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":5,\"navigatepageNums\":[1,2,3,4,5],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":98,\"virtualProductId\":382,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/14ac61ab60bf4971a8b1db08cf6c7c96.png\",\"createTime\":\"2021-05-13 16:50:30\",\"refType\":1,\"id\":10,\"virtualProductId\":382,\"content\":\"使用表白卡让麦上的小哥哥对你表白\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/153fff74da82423ca8d46d16f8a9b8a7.png\",\"type\":1,\"hotValue\":50,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":4,\"price\":0,\"remarkUrl\":\"\",\"id\":382,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/15665ead5c5448ecb73a85a9488a8d4d.svga\",\"giftType\":2,\"sort\":5010,\"charmValue\":0,\"limitUpdateTime\":\"2021-05-13 16:50:30\",\"useStatus\":1,\"name\":\"表白卡\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 17:02:07\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-13 16:50:30\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":3,\"createTime\":\"2020-11-18 18:19:32\",\"playMethod\":\"[{\\\"roomBannerId\\\":2,\\\"listBannerId\\\":1,\\\"chainNum\\\":\\\"1\\\"},{\\\"roomBannerId\\\":2,\\\"listBannerId\\\":1,\\\"chainNum\\\":\\\"2\\\"}]\",\"id\":87,\"virtualProductId\":328},{\"playType\":1,\"createTime\":\"2020-11-20 18:12:46\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"3\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4ce4c59d9f945cba7ce5ba743164386.svga\\\",\\\"remark\\\":\\\"三生三世\\\"}]\",\"id\":92,\"virtualProductId\":328}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/a0af3ab1caa84456b271c297fb0ac5be.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/9a45246eab5249619eafa6f93f0330fa.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":88,\"price\":0,\"remarkUrl\":\"\",\"id\":328,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/5fa8325c4bea47fb9c2ad12193517d62.svga\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":false,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":106,\"virtualProductId\":390,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":3,\"createTime\":\"2021-07-07 11:50:04\",\"playMethod\":\"[{\\\"roomBannerId\\\":21,\\\"listBannerId\\\":22,\\\"chainNum\\\":\\\"1\\\"}]\",\"id\":95,\"virtualProductId\":390}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/138fa52d528a4c409aa3d65d19b79d9f.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":100,\"remarkUrl\":\"\",\"id\":390,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/0780aca1e7704884ab6450d6d5b5958c.svga\",\"giftType\":1,\"sort\":4999,\"charmValue\":100,\"limitUpdateTime\":\"2021-07-07 11:50:04\",\"useStatus\":1,\"name\":\"冲天火箭\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"火箭玩法\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-07-07 11:50:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-07 11:50:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":88,\"virtualProductId\":331,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/b0307222fcb646d0b95110656c037124.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":128,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1062960891aa4a99b197e8be5307da07.png\",\"id\":331,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c149f8f843604204b146160d92a38346.svga\",\"giftType\":1,\"sort\":4900,\"charmValue\":128,\"limitUpdateTime\":\"2020-11-24 19:48:45\",\"useStatus\":1,\"name\":\"星缤乐\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-11-24 19:48:45\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":108,\"virtualProductId\":391,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/0bbe351d0d1745c1980e4090cb27903f.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":3555,\"remarkUrl\":\"\",\"id\":391,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/7b6454a98bab4c368ee4689c44f242fe.svga\",\"giftType\":1,\"sort\":4386,\"charmValue\":3555,\"limitUpdateTime\":\"2021-07-21 16:35:54\",\"useStatus\":1,\"name\":\"小龙虾\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"五一活动限定聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":3,\"updateTime\":\"2021-07-21 16:35:54\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-21 16:35:54\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":109,\"virtualProductId\":392,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-07-21 16:40:07\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/21/e233abc98f504bdab8b8397b74ede5b2.svga\\\",\\\"vapUrl\\\":\\\"\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":96,\"virtualProductId\":392}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/560811f7b27241be9b2711ff8ff993c4.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":52000,\"remarkUrl\":\"\",\"id\":392,\"giftType\":1,\"sort\":4313,\"charmValue\":52000,\"limitUpdateTime\":\"2021-07-21 16:40:07\",\"useStatus\":1,\"name\":\"月下美人\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"礼盒活动礼物·即将在返场活动中回归\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":4,\"updateTime\":\"2021-07-21 16:40:07\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-21 16:40:07\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":12,\"price\":1,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/d927d02a752f41eab8590cd0bfa4ba56.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1130,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":89,\"virtualProductId\":332,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c649a40efa174ef9b3ddcba6c28b6a98.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":1314,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/ecb52148aef347f29a37e6e53fb8e0bb.png\",\"id\":332,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/28e07534d6654d1e973eef38f9dbb819.svga\",\"giftType\":1,\"sort\":1121,\"charmValue\":1314,\"limitUpdateTime\":\"2020-11-24 19:51:10\",\"useStatus\":1,\"name\":\"环游星河\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-06-02 11:03:41\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2020-11-24 19:51:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":24,\"virtualProductId\":326,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:06:05\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/22/e07679f822684aabba34140d5a894cb5.svga\\\",\\\"remark\\\":\\\"一心一意\\\"},{\\\"chainNum\\\":\\\"3\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/590d7c47f5414a189f5247be6f0d6b02.svga\\\",\\\"remark\\\":\\\"三生三世\\\"}]\",\"id\":23,\"virtualProductId\":326},{\"playType\":3,\"createTime\":\"2020-11-19 15:14:25\",\"playMethod\":\"[{\\\"roomBannerId\\\":2,\\\"listBannerId\\\":1,\\\"chainNum\\\":\\\"3\\\"}]\",\"id\":91,\"virtualProductId\":326}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/688f3a03e80c443aa4aefd240fa5bf00.png\",\"createTime\":\"2020-06-23 18:57:20\",\"refType\":1,\"startTime\":\"2020-11-21 00:00:00\",\"id\":1,\"endTime\":\"2020-11-21 23:59:59\",\"virtualProductId\":326,\"content\":\"百度2\",\"activityH5Url\":\"http://www.baidu.com\",\"status\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/d86d5b1ad31c448697311b2b0f2c1d50.webp\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\",\"type\":1,\"hotValue\":50,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":44,\"price\":0,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/2e721e9dc9754686b677c2ad616d1b4e.png\",\"id\":326,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":1120,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-22 17:06:06\",\"useStatus\":1,\"name\":\"森林之星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:06:06\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":22,\"virtualProductId\":324,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:01:51\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/015d9ca65cf7438db1e465761c5a876b.svga\\\",\\\"remark\\\":\\\"一生一世\\\"}]\",\"id\":21,\"virtualProductId\":324}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/de1adcc582c449f1bf32722ab9a766ca.png\",\"type\":1,\"hotValue\":200,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":11,\"price\":0,\"remarkUrl\":\"\",\"id\":324,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":1100,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-22 17:01:52\",\"useStatus\":1,\"name\":\"永恒之冠\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:01:52\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":46,\"pages\":5,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-26 14:32:49:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 506毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"506毫秒","endTime":"2021-07-26 14:32:49","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:49","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:32:49 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>0</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testGuildSearch()'><b>testGuildSearch</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 搜索公会<br/>
<a href="#Output-951221468" onClick='toggleBox("Output-951221468", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-951221468" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-951221468">
======2021-07-26 14:32:50:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-9c84c136722e4697bd164b4ec7e00a2c#2203657","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"pageSize":"20","pageNum":"1","queryStr":"18306720"}<br/>
###Http Request queryString after URLEncoder### :<br/>
pageSize=20&pageNum=1&queryStr=18306720<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:50 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-26 14:32:48","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":2,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
======2021-07-26 14:32:50:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======<br/>
======本次用例运行消耗时间 284毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"搜索公会","caseLog":"======2021-07-26 14:32:50:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9c84c136722e4697bd164b4ec7e00a2c#2203657\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:50 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-26 14:32:48\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":2,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-26 14:32:50:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======\r\n======本次用例运行消耗时间 284毫秒======\r","caseName":"testGuildSearch","className":"com.pipi.invoker.CosPlayerTest","durationTime":"284毫秒","endTime":"2021-07-26 14:32:50","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:50","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:32:50 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>0</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testLotteryActivity()'><b>testLotteryActivity</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 开宝箱<br/>
<a href="#Output-2061774051" onClick='toggleBox("Output-2061774051", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-2061774051" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-2061774051">
======2021-07-26 14:33:02:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-25d6e70a67574f9697721871f511ff20#2203773","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"activityId":"64","times":"1","roomNo":"TEST833760","timestamp":"1621828487580"}<br/>
###Http Request queryString after URLEncoder### :<br/>
activityId=64×=1&roomNo=TEST833760×tamp=1621828487580<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:33:03 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"开宝箱成功!","data":"1zAE0tREgRkU+VjVTA1buyp8AQMWkKhM77D2V77cgmNqdE7MWqbV42p/pqk85kx/JSqOOD77z+f5kpVM0G/kjvNZmnN73xcRJ/3jFzkkIAxPMXjqWv6vESUdQxGqbV9/QPtJuUeXzQOYeHphTl7JQ8nRcTouGHxdIANn0Ed15AdDO3ekjO+uOothULfF1kX6KeqekOAOmK4GzeHwFWgBPafKGlQvswXZ3maDbG74evK0Bs2WqypTGRoV1JPwRlsbk5ggAFpmoIvjHObGotY/R7i7C3DpnFI0SYhaI6iiiYxAClSDK4+kcWRVbmfyDXqz5KoX/1nSzaXBX4I4tMj1qXiin9rYUcmsH0WXHqYbKJsy4tr39cLEUuXuwywJMsSEz79D8inXa4fgRzI48L4DYf0AZV6U9laS59yLWgEd7M1tL5keA9uYTHCb0WQaYbTRPp6Ble/k/FOKOmmsOTfJL4+Ohxek52xuDxgoZ37NDPNGNrpYSMgZ9YtgKQ8AuINqKZapVbs+ZWR7a6yRRyKclYWn/wN0G1QpXxnfOB+ZJQ/N2JVIchv9y0Ai6CTQITi2DhuVqewj1s5HokJdO7TP8LI6j0TBUvYX2zy7RfgHt/eYDh+r53IprkwNG4gnq0b7/HOGtgma18Iupm+6Mw9463x5fM3ej/t7Y9OP0tXz2rTD/CgPdrfE5zSfGAetStZa","status":200}<br/>
===================================<br/>
======2021-07-26 14:33:03:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======<br/>
======本次用例运行消耗时间 01秒086毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"开宝箱","caseLog":"======2021-07-26 14:33:02:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-25d6e70a67574f9697721871f511ff20#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"activityId\":\"64\",\"times\":\"1\",\"roomNo\":\"TEST833760\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactivityId=64×=1&roomNo=TEST833760×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:33:03 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"开宝箱成功!\",\"data\":\"1zAE0tREgRkU+VjVTA1buyp8AQMWkKhM77D2V77cgmNqdE7MWqbV42p/pqk85kx/JSqOOD77z+f5kpVM0G/kjvNZmnN73xcRJ/3jFzkkIAxPMXjqWv6vESUdQxGqbV9/QPtJuUeXzQOYeHphTl7JQ8nRcTouGHxdIANn0Ed15AdDO3ekjO+uOothULfF1kX6KeqekOAOmK4GzeHwFWgBPafKGlQvswXZ3maDbG74evK0Bs2WqypTGRoV1JPwRlsbk5ggAFpmoIvjHObGotY/R7i7C3DpnFI0SYhaI6iiiYxAClSDK4+kcWRVbmfyDXqz5KoX/1nSzaXBX4I4tMj1qXiin9rYUcmsH0WXHqYbKJsy4tr39cLEUuXuwywJMsSEz79D8inXa4fgRzI48L4DYf0AZV6U9laS59yLWgEd7M1tL5keA9uYTHCb0WQaYbTRPp6Ble/k/FOKOmmsOTfJL4+Ohxek52xuDxgoZ37NDPNGNrpYSMgZ9YtgKQ8AuINqKZapVbs+ZWR7a6yRRyKclYWn/wN0G1QpXxnfOB+ZJQ/N2JVIchv9y0Ai6CTQITi2DhuVqewj1s5HokJdO7TP8LI6j0TBUvYX2zy7RfgHt/eYDh+r53IprkwNG4gnq0b7/HOGtgma18Iupm+6Mw9463x5fM3ej/t7Y9OP0tXz2rTD/CgPdrfE5zSfGAetStZa\",\"status\":200}\r\n===================================\r\n======2021-07-26 14:33:03:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======\r\n======本次用例运行消耗时间 01秒086毫秒======\r","caseName":"testLotteryActivity","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒086毫秒","endTime":"2021-07-26 14:33:03","id":0,"serviceId":1,"startTime":"2021-07-26 14:33:02","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:33:03 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>1</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave()'><b>testMoneyDetailsSave</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 充皮皮币<br/>
<a href="#Output-1503660218" onClick='toggleBox("Output-1503660218", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-1503660218" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-1503660218">
======2021-07-26 14:32:51:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/user/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"mobile":"13823774134","pageSize":10,"pageNum":1}<br/>
###Http Request queryString after URLEncoder### :<br/>
mobile=13823774134&pageSize=10&pageNum=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:51 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":66.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-26 11:35:03","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"137730220","loginTime":"2021-07-26 13:56:06","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":46764,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"ext":"1","money":1,"balance":"0.00","isSearch":true,"moneyType":1,"mobile":"13823774134","nickname":"test","remark":"1","chargeBalance":"66.00","userId":"2203773","searchValue":"2203773"}<br/>
###Http Request queryString after URLEncoder### :<br/>
ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=test&remark=1&chargeBalance=66.00&userId=2203773&searchValue=2203773<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:52 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"操作成功!","status":200}<br/>
===================================<br/>
======2021-07-26 14:32:52:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======<br/>
======本次用例运行消耗时间 01秒416毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-07-26 14:32:51:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:51 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":66.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-26 11:35:03\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"137730220\",\"loginTime\":\"2021-07-26 13:56:06\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":46764,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":1,\"balance\":\"0.00\",\"isSearch\":true,\"moneyType\":1,\"mobile\":\"13823774134\",\"nickname\":\"test\",\"remark\":\"1\",\"chargeBalance\":\"66.00\",\"userId\":\"2203773\",\"searchValue\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=test&remark=1&chargeBalance=66.00&userId=2203773&searchValue=2203773\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:52 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-26 14:32:52:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 01秒416毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒416毫秒","endTime":"2021-07-26 14:32:52","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:51","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:32:53 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>1</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testRemove()'><b>testRemove</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 将成员从公会移除<br/>
<a href="#Output-2131597042" onClick='toggleBox("Output-2131597042", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-2131597042" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-2131597042">
======2021-07-26 14:33:03:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/user/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"mobile":"13823774134","pageSize":10,"pageNum":1}<br/>
###Http Request queryString after URLEncoder### :<br/>
mobile=13823774134&pageSize=10&pageNum=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:33:04 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":67.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-26 11:35:03","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"137730220","loginTime":"2021-07-26 13:56:06","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":47426,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-guild-api.apeiwan.com/api/v2/guild-member/remove<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-9c84c136722e4697bd164b4ec7e00a2c#2203657","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"userId":"2203773"}<br/>
###Http Request queryString after URLEncoder### :<br/>
userId=2203773<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:33:04 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"","status":200}<br/>
===================================<br/>
======2021-07-26 14:33:04:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======<br/>
======本次用例运行消耗时间 641毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"将成员从公会移除","caseLog":"======2021-07-26 14:33:03:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:33:04 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":67.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-26 11:35:03\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"137730220\",\"loginTime\":\"2021-07-26 13:56:06\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":47426,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v2/guild-member/remove\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9c84c136722e4697bd164b4ec7e00a2c#2203657\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"userId\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\nuserId=2203773\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:33:04 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"status\":200}\r\n===================================\r\n======2021-07-26 14:33:04:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======\r\n======本次用例运行消耗时间 641毫秒======\r","caseName":"testRemove","className":"com.pipi.invoker.CosPlayerTest","durationTime":"641毫秒","endTime":"2021-07-26 14:33:04","id":0,"serviceId":1,"startTime":"2021-07-26 14:33:03","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:33:04 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>0</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testRoomList()'><b>testRoomList</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 查询房间<br/>
<a href="#Output-1824872646" onClick='toggleBox("Output-1824872646", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-1824872646" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-1824872646">
======2021-07-26 14:32:53:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/user/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"mobile":"13823774131","pageSize":10,"pageNum":1}<br/>
###Http Request queryString after URLEncoder### :<br/>
mobile=13823774131&pageSize=10&pageNum=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:53 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-26 11:35:38","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-26 13:56:06","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/room/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"pageSize":10,"pageNum":1,"userId":"2203657"}<br/>
###Http Request queryString after URLEncoder### :<br/>
pageSize=10&pageNum=1&userId=2203657<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:54 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"查询成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"endRow":2,"list":[{"hostUserId":2203657,"scoreWeight":2,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":3102,"virtualPeople":1,"roomType":1,"realPeople":0,"roomNo":"TEST131301","recommendWeight":0,"sort":999,"guildId":232,"roomName":"我的厅12","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":true,"isHot":false,"template":1,"hostMobile":"13823774131","remark":"我的厅12","roomCode":"TEST131301","guildCode":"18306720","sortWeight":0,"guildName":"心玄的公会","isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","orderRoomSerial":"1","openTime":"2021-07-26 12:02:35","roomCategoryId":2,"collectCount":0,"micDuration":900,"isShow":true,"hostUserName":"test","createTime":"2021-07-26 12:02:35"},{"hostUserId":2203657,"scoreWeight":2,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":3085,"virtualPeople":1,"roomType":1,"realPeople":0,"roomNo":"TEST833760","recommendWeight":0,"sort":999,"guildId":232,"roomName":"我的厅1","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":false,"isHot":false,"template":1,"hostMobile":"13823774131","remark":"我的厅1","roomCode":"TEST833760","guildCode":"18306720","sortWeight":0,"guildName":"心玄的公会","isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","closeTime":"2021-07-26 12:05:32","orderRoomSerial":"1","openTime":"2021-07-06 17:32:09","roomCategoryId":2,"collectCount":0,"micDuration":900,"isShow":true,"hostUserName":"test","createTime":"2021-07-06 17:32:09"}],"pageNum":1,"navigatePages":8,"total":2,"pages":1,"size":2,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
======2021-07-26 14:32:54:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======<br/>
======本次用例运行消耗时间 610毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"查询房间","caseLog":"======2021-07-26 14:32:53:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:53 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-26 11:35:38\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-26 13:56:06\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/room/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":10,\"pageNum\":1,\"userId\":\"2203657\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1&userId=2203657\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:54 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"endRow\":2,\"list\":[{\"hostUserId\":2203657,\"scoreWeight\":2,\"roomInfoTagList\":[],\"roomStatus\":1,\"password\":\"123456\",\"isOpenChat\":true,\"roomCategoryName\":\"派单\",\"id\":3102,\"virtualPeople\":1,\"roomType\":1,\"realPeople\":0,\"roomNo\":\"TEST131301\",\"recommendWeight\":0,\"sort\":999,\"guildId\":232,\"roomName\":\"我的厅12\",\"roomInfoTagConfigList\":[],\"roomVipCount\":15,\"basicHotValue\":0,\"isActivate\":true,\"isHot\":false,\"template\":1,\"hostMobile\":\"13823774131\",\"remark\":\"我的厅12\",\"roomCode\":\"TEST131301\",\"guildCode\":\"18306720\",\"sortWeight\":0,\"guildName\":\"心玄的公会\",\"isLock\":false,\"roomIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg\",\"orderRoomSerial\":\"1\",\"openTime\":\"2021-07-26 12:02:35\",\"roomCategoryId\":2,\"collectCount\":0,\"micDuration\":900,\"isShow\":true,\"hostUserName\":\"test\",\"createTime\":\"2021-07-26 12:02:35\"},{\"hostUserId\":2203657,\"scoreWeight\":2,\"roomInfoTagList\":[],\"roomStatus\":1,\"password\":\"123456\",\"isOpenChat\":true,\"roomCategoryName\":\"派单\",\"id\":3085,\"virtualPeople\":1,\"roomType\":1,\"realPeople\":0,\"roomNo\":\"TEST833760\",\"recommendWeight\":0,\"sort\":999,\"guildId\":232,\"roomName\":\"我的厅1\",\"roomInfoTagConfigList\":[],\"roomVipCount\":15,\"basicHotValue\":0,\"isActivate\":false,\"isHot\":false,\"template\":1,\"hostMobile\":\"13823774131\",\"remark\":\"我的厅1\",\"roomCode\":\"TEST833760\",\"guildCode\":\"18306720\",\"sortWeight\":0,\"guildName\":\"心玄的公会\",\"isLock\":false,\"roomIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg\",\"closeTime\":\"2021-07-26 12:05:32\",\"orderRoomSerial\":\"1\",\"openTime\":\"2021-07-06 17:32:09\",\"roomCategoryId\":2,\"collectCount\":0,\"micDuration\":900,\"isShow\":true,\"hostUserName\":\"test\",\"createTime\":\"2021-07-06 17:32:09\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":2,\"pages\":1,\"size\":2,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-26 14:32:54:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======\r\n======本次用例运行消耗时间 610毫秒======\r","caseName":"testRoomList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"610毫秒","endTime":"2021-07-26 14:32:54","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:53","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:32:54 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>0</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testSend()'><b>testSend</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 送礼物<br/>
<a href="#Output-795326519" onClick='toggleBox("Output-795326519", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-795326519" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-795326519">
======2021-07-26 14:32:54:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/user/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"mobile":"13823774131","pageSize":10,"pageNum":1}<br/>
###Http Request queryString after URLEncoder### :<br/>
mobile=13823774131&pageSize=10&pageNum=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:56 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-26 11:35:38","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-26 13:56:06","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-app.apeiwan.com/api/v4/room/gift/send<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-25d6e70a67574f9697721871f511ff20#2203773","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"actionType":"1","amount":"1","roomNo":"TEST833760","productId":"331","userIds":"2203657","timestamp":"1621828487580"}<br/>
###Http Request queryString after URLEncoder### :<br/>
actionType=1&amount=1&roomNo=TEST833760&productId=331&userIds=2203657×tamp=1621828487580<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:57 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaXRZ9hYkLN/8PcSh0ZEBCE5OjCrf4dwupqUmBsYFFuyPpRvNbGzKIf6ld1huPz3Qw/u4s1kN5duTtoJyJOsAuHcWgfMZYS8jE5Ry3Rp8kV/VWNATirqs/qkpngKeJ+LLhC3xjf4wm5gVbGmw9gEc5ZiWwyZp0lPDTIXKDHzVWQhFM62yf4EyME6PDF128dosgs4l/NFCRWQLo395AZMn8sCr+UaPITSIpiJxOJ9cMEI2lvKRHYjm1EpT8I/6IaO2CiJNrus1DdhOi+J2QE5TnANwa0XrQI0wkmZWbBm9hO5QcnoknM96F3JhbhT1kBorXZ1QU4I234qZSkvqcTwV/OQ=","status":200}<br/>
===================================<br/>
======2021-07-26 14:32:57:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======<br/>
======本次用例运行消耗时间 02秒549毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"送礼物","caseLog":"======2021-07-26 14:32:54:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:56 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-26 11:35:38\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-26 13:56:06\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-25d6e70a67574f9697721871f511ff20#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"TEST833760\",\"productId\":\"331\",\"userIds\":\"2203657\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=TEST833760&productId=331&userIds=2203657×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:57 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaXRZ9hYkLN/8PcSh0ZEBCE5OjCrf4dwupqUmBsYFFuyPpRvNbGzKIf6ld1huPz3Qw/u4s1kN5duTtoJyJOsAuHcWgfMZYS8jE5Ry3Rp8kV/VWNATirqs/qkpngKeJ+LLhC3xjf4wm5gVbGmw9gEc5ZiWwyZp0lPDTIXKDHzVWQhFM62yf4EyME6PDF128dosgs4l/NFCRWQLo395AZMn8sCr+UaPITSIpiJxOJ9cMEI2lvKRHYjm1EpT8I/6IaO2CiJNrus1DdhOi+J2QE5TnANwa0XrQI0wkmZWbBm9hO5QcnoknM96F3JhbhT1kBorXZ1QU4I234qZSkvqcTwV/OQ=\",\"status\":200}\r\n===================================\r\n======2021-07-26 14:32:57:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======\r\n======本次用例运行消耗时间 02秒549毫秒======\r","caseName":"testSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"02秒549毫秒","endTime":"2021-07-26 14:32:57","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:54","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:32:57 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>2</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testUpList()'><b>testUpList</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 获取上麦、试音申请列表数据<br/>
<a href="#Output-1663888181" onClick='toggleBox("Output-1663888181", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-1663888181" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-1663888181">
======2021-07-26 14:32:58:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-25d6e70a67574f9697721871f511ff20#2203773","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"roomNo":"TEST833760","type":"2"}<br/>
###Http Request queryString after URLEncoder### :<br/>
roomNo=TEST833760&type=2<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:58 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"","data":[],"status":200}<br/>
===================================<br/>
======2021-07-26 14:32:58:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======<br/>
======本次用例运行消耗时间 300毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"获取上麦、试音申请列表数据","caseLog":"======2021-07-26 14:32:58:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v1/room/mic/up/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-25d6e70a67574f9697721871f511ff20#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"TEST833760\",\"type\":\"2\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=TEST833760&type=2\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:58 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":[],\"status\":200}\r\n===================================\r\n======2021-07-26 14:32:58:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======\r\n======本次用例运行消耗时间 300毫秒======\r","caseName":"testUpList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"300毫秒","endTime":"2021-07-26 14:32:58","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:58","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:32:57 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>0</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testUpSize()'><b>testUpSize</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 获取聊天室内上麦试音队列、点单队列等<br/>
<a href="#Output-172678484" onClick='toggleBox("Output-172678484", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-172678484" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-172678484">
======2021-07-26 14:32:59:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/size<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"APP-25d6e70a67574f9697721871f511ff20#2203773","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"types":"2","roomNo":"TEST833760"}<br/>
###Http Request queryString after URLEncoder### :<br/>
types=2&roomNo=TEST833760<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:32:59 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"","data":{"2":{"alreadyInList":false,"people":0}},"status":200}<br/>
===================================<br/>
======2021-07-26 14:32:59:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======<br/>
======本次用例运行消耗时间 203毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"获取聊天室内上麦试音队列、点单队列等","caseLog":"======2021-07-26 14:32:59:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v1/room/mic/up/size\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-25d6e70a67574f9697721871f511ff20#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"types\":\"2\",\"roomNo\":\"TEST833760\"}\r\n###Http Request queryString after URLEncoder### :\r\ntypes=2&roomNo=TEST833760\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:32:59 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"2\":{\"alreadyInList\":false,\"people\":0}},\"status\":200}\r\n===================================\r\n======2021-07-26 14:32:59:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======\r\n======本次用例运行消耗时间 203毫秒======\r","caseName":"testUpSize","className":"com.pipi.invoker.CosPlayerTest","durationTime":"203毫秒","endTime":"2021-07-26 14:32:59","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:59","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:32:59 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>0</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testUserList()'><b>testUserList</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 用户信息<br/>
<a href="#Output-171809144" onClick='toggleBox("Output-171809144", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-171809144" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-171809144">
======2021-07-26 14:32:59:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/user/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"mobile":"13823774134","pageSize":10,"pageNum":1}<br/>
###Http Request queryString after URLEncoder### :<br/>
mobile=13823774134&pageSize=10&pageNum=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:33:00 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":67.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-26 11:35:03","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"137730220","loginTime":"2021-07-26 13:56:06","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":46636,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
======2021-07-26 14:33:00:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======<br/>
======本次用例运行消耗时间 392毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"用户信息","caseLog":"======2021-07-26 14:32:59:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:33:00 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":67.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-26 11:35:03\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"137730220\",\"loginTime\":\"2021-07-26 13:56:06\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":46636,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-26 14:33:00:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======\r\n======本次用例运行消耗时间 392毫秒======\r","caseName":"testUserList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"392毫秒","endTime":"2021-07-26 14:33:00","id":0,"serviceId":1,"startTime":"2021-07-26 14:32:59","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:33:00 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>0</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
<tr>
<td title='com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify()'><b>testVirtualMoneyModify</b><br>Test class: com.pipi.invoker.CosPlayerTest<br>Test method: 充钻石<br/>
<a href="#Output-1325465767" onClick='toggleBox("Output-1325465767", this, "Show output", "Hide output");'>Show output</a>
<a href="#Output-1325465767" onClick="toggleAllBoxes();">Show all outputs</a>
<div class='log' id="Output-1325465767">
======2021-07-26 14:33:00:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/user/list<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"mobile":"13823774134","pageSize":10,"pageNum":1}<br/>
###Http Request queryString after URLEncoder### :<br/>
mobile=13823774134&pageSize=10&pageNum=1<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:33:01 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":67.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-26 11:35:03","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"137730220","loginTime":"2021-07-26 13:56:06","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":46636,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}<br/>
===================================<br/>
===================================<br/>
###Http Request Url### : <br/>
https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify<br/>
###Http Request Method### : POST<br/>
###Http Request Headers### : <br/>
{"token":"63a0947f68004bbbaebea327d9b8dc2b","Content-Type":"application/x-www-form-urlencoded"}<br/>
###Http Request queryString before URLEncoder### : <br/>
{"ext":"1","money":1000,"remark":"1","type":1,"userId":"2203773"}<br/>
###Http Request queryString after URLEncoder### :<br/>
ext=1&money=1000&remark=1&type=1&userId=2203773<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200 OK<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Server":"nginx","Connection":"keep-alive","Vary":"Access-Control-Request-Headers","Date":"Mon, 26 Jul 2021 06:33:01 GMT","Content-Type":"application/json"}<br/>
###Http Response Content### :<br/>
{"msg":"操作成功!","status":200}<br/>
===================================<br/>
======2021-07-26 14:33:01:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======<br/>
======本次用例运行消耗时间 527毫秒======<br/>
===================================<br/>
###Http Request Url### : <br/>
http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json<br/>
###Http Request Method### : PUT<br/>
###Http Request Headers### : <br/>
{"Content-Type":"application/json"}<br/>
###Http Request Content### : <br/>
{"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-07-26 14:33:00:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:33:01 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":67.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-26 11:35:03\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"137730220\",\"loginTime\":\"2021-07-26 13:56:06\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":46636,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"63a0947f68004bbbaebea327d9b8dc2b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":1000,\"remark\":\"1\",\"type\":1,\"userId\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1000&remark=1&type=1&userId=2203773\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 26 Jul 2021 06:33:01 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-26 14:33:01:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 527毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"527毫秒","endTime":"2021-07-26 14:33:01","id":0,"serviceId":1,"startTime":"2021-07-26 14:33:00","status":1}<br/>
===================================<br/>
###Http Response Status line### : <br/>
HTTP/1.1 200<br/>
###Http Response Headers### : <br/>
{"Transfer-Encoding":"chunked","Keep-Alive":"timeout=20","Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET,POST,PUT,DELETE,OPTIONS","Access-Control-Allow-Credentials":"true","Connection":"keep-alive","Access-Control-Allow-Headers":"Content-Type,X-Token","Date":"Mon, 26 Jul 2021 06:33:01 GMT","Content-Type":"application/json;charset=UTF-8"}<br/>
###Http Response Content### :<br/>
{"code":200,"data":true}<br/>
===================================<br/>
</div>
</td>
<td></td>
<td>0</td>
<td>com.pipi.invoker.CosPlayerTest@c8c12ac</td></tr>
</table><p>
</body>
</html>