debug.log
424 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
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
[2021-08-24 09:48:27.836] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-24 09:48:27.927] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-24 09:48:27:测试集开始======
[2021-08-24 09:48:28.263] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.PropUtil:51] - 配置项 dbConnectionURL 不存在,请检查配置!
[2021-08-24 09:48:28.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/login
[2021-08-24 09:48:28.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:28.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:28.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:28.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/login
[2021-08-24 09:48:28.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:28.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:28.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:28.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:28.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-08-24 09:48:28.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:28.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-08-24 09:48:28.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:28.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:29 GMT
[2021-08-24 09:48:29.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:29.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:29.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:29.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"2e237848f5684cd5845056014821c074","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-08-24 09:48:29.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:29.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:29.020] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/sms/verify
[2021-08-24 09:48:29.020] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:29.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:29.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:29.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/sms/verify
[2021-08-24 09:48:29.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:29.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:29.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:29.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:29.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-24 09:48:29.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:29.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-24 09:48:29.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:29.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:29.175] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:29.175] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:30 GMT
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/login
[2021-08-24 09:48:29.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:29.256] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/login
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:29.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:29.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:29.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:30 GMT
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"137730220","nickname":"test","id":2203773,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","imId":"2203773_20210708","token":"APP-0831f07f611c42a3a4797648165c759d#2203773","createTime":"2021-07-08 10:33:13","newUser":false,"status":1},"status":200}
[2021-08-24 09:48:29.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:29.887] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:29.887] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/sms/verify
[2021-08-24 09:48:29.887] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:29.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:29.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:29.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/sms/verify
[2021-08-24 09:48:29.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:29.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:29.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:29.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:29.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-24 09:48:29.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:29.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-24 09:48:29.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:29.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:31 GMT
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:30.044] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-24 09:48:30.045] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:30.045] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:30.045] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/login
[2021-08-24 09:48:30.045] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/login
[2021-08-24 09:48:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:30.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:30.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-24 09:48:30.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:30.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-24 09:48:30.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:30.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:30.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:30.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:30.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:30.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:30.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:30.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:30.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:30.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-24 09:48:30.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:31 GMT
[2021-08-24 09:48:30.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:30.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:30.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:30.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"175630220","nickname":"test","id":2203657,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","imId":"2203657_20210524","token":"APP-7c0e84dee3354becb7a09a669e50688a#2203657","createTime":"2021-05-24 14:01:01","newUser":false,"status":1},"status":200}
[2021-08-24 09:48:30.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:30.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:30.887] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:30:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-08-24 09:48:30.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-08-24 09:48:30.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:31.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:32 GMT
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:31.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:31.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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,"ruleStatus":1,"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\":300,\"endTime\":1943005906000,\"id\":2219,\"isNotice\":1,\"isReward\":1,\"lotteryId\":271,\"name\":\"魅力值礼物-粉色情书\",\"perCount\":330,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":5,\"endTime\":1943005906000,\"id\":2220,\"isNotice\":0,\"isReward\":0,\"lotteryId\":400,\"name\":\"魅力值礼物-鼓掌\",\"perCount\":2,\"ruleStatus\":1,\"startTime\":1627473106000}]","startTime":"2021-07-28 19:51:46","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","version":0,"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,"endTime":"2031-07-28 19:51:46","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,"ruleStatus":1,"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,\"endTime\":1943005906000,\"id\":1664,\"isNotice\":0,\"isReward\":0,\"lotteryId\":115,\"name\":\"礼物-小黄鸭*\",\"perCount\":400,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":6,\"endTime\":1943005906000,\"id\":1665,\"isNotice\":0,\"isReward\":0,\"lotteryId\":116,\"name\":\"礼物-小心心*\",\"perCount\":445,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":8,\"endTime\":1943005906000,\"id\":1666,\"isNotice\":0,\"isReward\":0,\"lotteryId\":117,\"name\":\"钻石*8\",\"perCount\":450,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":10,\"endTime\":1943005906000,\"id\":1667,\"isNotice\":0,\"isReward\":0,\"lotteryId\":118,\"name\":\"礼物-心相印*\",\"perCount\":500,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":21,\"endTime\":1943005906000,\"id\":1668,\"isNotice\":1,\"isReward\":0,\"lotteryId\":119,\"name\":\"礼物-甜甜圈*\",\"perCount\":120,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":52,\"endTime\":1943005906000,\"id\":1669,\"isNotice\":1,\"isReward\":0,\"lotteryId\":120,\"name\":\"礼物-棒棒糖*\",\"perCount\":50,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":99,\"endTime\":1943005906000,\"id\":1670,\"isNotice\":1,\"isReward\":0,\"lotteryId\":121,\"name\":\"钻石*99\",\"perCount\":20,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":128,\"endTime\":1943005906000,\"id\":1671,\"isNotice\":1,\"isReward\":0,\"lotteryId\":122,\"name\":\"礼物-么么哒*\",\"perCount\":10,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":158,\"endTime\":1943005906000,\"id\":1672,\"isNotice\":1,\"isReward\":0,\"lotteryId\":123,\"name\":\"礼物-麦克风*\",\"perCount\":5,\"ruleStatus\":1,\"startTime\":1627473106000}]","startTime":"2021-07-28 19:51:46","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":"","version":0,"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":"2031-07-28 19:51:46","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,"ruleStatus":1,"operatorName":"程杰","coverThreshold":0,"openType":2,"lotteryRules":"[{\"amount\":21,\"endTime\":1943005906000,\"id\":979,\"isNotice\":1,\"isReward\":0,\"lotteryId\":181,\"name\":\"礼物-甜甜圈\",\"perCount\":70,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":52,\"endTime\":1943005906000,\"id\":980,\"isNotice\":1,\"isReward\":0,\"lotteryId\":182,\"name\":\"礼物-棒棒糖\",\"perCount\":45,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":128,\"endTime\":1943005906000,\"id\":981,\"isNotice\":1,\"isReward\":0,\"lotteryId\":183,\"name\":\"礼物-么么哒\",\"perCount\":25,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":158,\"endTime\":1943005906000,\"id\":982,\"isNotice\":1,\"isReward\":0,\"lotteryId\":184,\"name\":\"礼物-麦克风\",\"perCount\":10,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":222,\"endTime\":1943005906000,\"id\":983,\"isNotice\":1,\"isReward\":0,\"lotteryId\":185,\"name\":\"礼物-玫瑰花\",\"perCount\":5,\"ruleStatus\":1,\"startTime\":1627473106000}]","startTime":"2021-07-28 19:51:46","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,"version":0,"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,"endTime":"2031-07-28 19:51:46","activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":220158,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png","delFlag":false,"ruleStatus":1,"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\":128,\"endTime\":1943086709000,\"id\":2400,\"isNotice\":1,\"isReward\":1,\"lotteryId\":125,\"name\":\"礼物-么么哒*\",\"perCount\":400,\"ruleStatus\":1,\"startTime\":1627553909000},{\"amount\":158,\"endTime\":1943086709000,\"id\":2401,\"isNotice\":1,\"isReward\":1,\"lotteryId\":126,\"name\":\"礼物-麦克风*\",\"perCount\":400,\"ruleStatus\":1,\"startTime\":1627553909000},{\"amount\":188,\"endTime\":1943086709000,\"id\":2402,\"isNotice\":1,\"isReward\":1,\"lotteryId\":127,\"name\":\"礼物-怦然心动*\",\"perCount\":350,\"ruleStatus\":1,\"startTime\":1627553909000},{\"amount\":233,\"endTime\":1943086709000,\"id\":2403,\"isNotice\":1,\"isReward\":0,\"lotteryId\":128,\"name\":\"礼物-可爱小熊*\",\"perCount\":200,\"ruleStatus\":1,\"startTime\":1627553909000},{\"amount\":266,\"endTime\":1943086709000,\"id\":2404,\"isNotice\":1,\"isReward\":0,\"lotteryId\":129,\"name\":\"礼物-天使之心*\",\"perCount\":120,\"ruleStatus\":1,\"startTime\":1627553909000}]","startTime":"2021-07-29 18:18:29","id":64,"operatorId":34,"rewardLotteryCount":220158,"openRewardDiamonds":46259306,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga","updateTime":"2021-07-29 18:18:29","sort":20,"labelUrl":"null","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif","remainLotteryDiamonds":218030,"openPayDiamonds":46233180,"createTime":"2019-10-16 18:38:39","name":"白银宝箱","remainLotteryCount":1264,"endTime":"2031-07-29 18:18:29","activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"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,"ruleStatus":1,"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\":99,\"endTime\":1943005906000,\"id\":1226,\"isNotice\":0,\"isReward\":0,\"lotteryId\":394,\"name\":\"魅力值礼物-水晶粽\",\"perCount\":100,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":10,\"endTime\":1943005906000,\"id\":1225,\"isNotice\":0,\"isReward\":0,\"lotteryId\":395,\"name\":\"钻石*10\",\"perCount\":100,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":1,\"endTime\":1943005906000,\"id\":1224,\"isNotice\":0,\"isReward\":0,\"lotteryId\":396,\"name\":\"座位框-魔力法典*1 天\",\"perCount\":100,\"ruleStatus\":1,\"startTime\":1627473106000}]","startTime":"2021-07-28 19:51:46","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","version":0,"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":"2031-07-28 19:51:46","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,"ruleStatus":1,"operatorName":"梁鑫宇","coverThreshold":0,"openType":2,"lotteryRules":"[{\"amount\":233,\"endTime\":1943005906000,\"id\":2181,\"isNotice\":0,\"isReward\":0,\"lotteryId\":135,\"name\":\"礼物-可爱小熊*\",\"perCount\":300,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":388,\"endTime\":1943005906000,\"id\":2182,\"isNotice\":0,\"isReward\":0,\"lotteryId\":136,\"name\":\"钻石*388\",\"perCount\":400,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":266,\"endTime\":1943005906000,\"id\":2183,\"isNotice\":0,\"isReward\":0,\"lotteryId\":137,\"name\":\"礼物-天使之心*\",\"perCount\":400,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":520,\"endTime\":1943005906000,\"id\":2184,\"isNotice\":0,\"isReward\":0,\"lotteryId\":138,\"name\":\"礼物-果果冰*\",\"perCount\":300,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":788,\"endTime\":1943005906000,\"id\":2185,\"isNotice\":1,\"isReward\":0,\"lotteryId\":139,\"name\":\"钻石*788\",\"perCount\":295,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":999,\"endTime\":1943005906000,\"id\":2186,\"isNotice\":1,\"isReward\":0,\"lotteryId\":140,\"name\":\"礼物-樱花雨*\",\"perCount\":140,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":1314,\"endTime\":1943005906000,\"id\":2187,\"isNotice\":1,\"isReward\":0,\"lotteryId\":141,\"name\":\"礼物-爱的告白*\",\"perCount\":60,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":3344,\"endTime\":1943005906000,\"id\":2188,\"isNotice\":1,\"isReward\":0,\"lotteryId\":142,\"name\":\"礼物-永恒印记*\",\"perCount\":10,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":7777,\"endTime\":1943005906000,\"id\":2189,\"isNotice\":1,\"isReward\":0,\"lotteryId\":143,\"name\":\"礼物-爱神之箭*\",\"perCount\":10,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":26666,\"endTime\":1943005906000,\"id\":2190,\"isNotice\":1,\"isReward\":0,\"lotteryId\":144,\"name\":\"礼物-心愿灯*\",\"perCount\":5,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":333,\"endTime\":1943005906000,\"id\":2191,\"isNotice\":1,\"isReward\":0,\"lotteryId\":145,\"name\":\"座位框-花蝴蝶*1 天\",\"perCount\":40,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":333,\"endTime\":1943005906000,\"id\":2192,\"isNotice\":1,\"isReward\":0,\"lotteryId\":146,\"name\":\"座位框-精灵梦*1 天\",\"perCount\":40,\"ruleStatus\":1,\"startTime\":1627473106000}]","startTime":"2021-07-28 19:51:46","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,"version":1,"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,"endTime":"2031-07-28 19:51:46","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,"ruleStatus":1,"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\":520,\"endTime\":1943005906000,\"id\":2204,\"isNotice\":1,\"isReward\":0,\"lotteryId\":130,\"name\":\"魅力值礼物-果果冰\",\"perCount\":70,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":999,\"endTime\":1943005906000,\"id\":2205,\"isNotice\":1,\"isReward\":0,\"lotteryId\":200,\"name\":\"魅力值礼物-樱花雨\",\"perCount\":150,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":1314,\"endTime\":1943005906000,\"id\":2206,\"isNotice\":0,\"isReward\":1,\"lotteryId\":201,\"name\":\"魅力值礼物-爱的告白\",\"perCount\":90,\"ruleStatus\":1,\"startTime\":1627473106000}]","startTime":"2021-07-28 19:51:46","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","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif","remainLotteryDiamonds":154505732,"openPayDiamonds":335530800,"createTime":"2020-01-11 12:01:31","name":"黄金宝箱","remainLotteryCount":111123017,"endTime":"2031-07-28 19:51:46","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,"ruleStatus":1,"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\":10,\"endTime\":1943005906000,\"id\":1706,\"isNotice\":0,\"isReward\":0,\"lotteryId\":326,\"name\":\"座位框-萌爪爪*5 天\",\"perCount\":50,\"probability\":100.0,\"ruleStatus\":1,\"startTime\":1627473106000},{\"amount\":50,\"endTime\":1943005906000,\"id\":1705,\"isNotice\":0,\"isReward\":0,\"lotteryId\":392,\"name\":\"礼物-森林之星*\",\"perCount\":150,\"probability\":0.0,\"ruleStatus\":1,\"startTime\":1627473106000}]","startTime":"2021-07-28 19:51:46","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","version":0,"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,"endTime":"2031-07-28 19:51:46","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}
[2021-08-24 09:48:31.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:31.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:32.002] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-08-24 09:48:32.002] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:32:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-08-24 09:48:32.002] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒115毫秒======
[2021-08-24 09:48:32.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:32.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:32.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:32.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-08-24 09:48:30:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/lottery/activity/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:48:32 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,\"ruleStatus\":1,\"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\\\":300,\\\"endTime\\\":1943005906000,\\\"id\\\":2219,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":271,\\\"name\\\":\\\"魅力值礼物-粉色情书\\\",\\\"perCount\\\":330,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":5,\\\"endTime\\\":1943005906000,\\\"id\\\":2220,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":400,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"perCount\\\":2,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000}]\",\"startTime\":\"2021-07-28 19:51:46\",\"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\",\"version\":0,\"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,\"endTime\":\"2031-07-28 19:51:46\",\"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,\"ruleStatus\":1,\"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,\\\"endTime\\\":1943005906000,\\\"id\\\":1664,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":115,\\\"name\\\":\\\"礼物-小黄鸭*\\\",\\\"perCount\\\":400,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":6,\\\"endTime\\\":1943005906000,\\\"id\\\":1665,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":116,\\\"name\\\":\\\"礼物-小心心*\\\",\\\"perCount\\\":445,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":8,\\\"endTime\\\":1943005906000,\\\"id\\\":1666,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":117,\\\"name\\\":\\\"钻石*8\\\",\\\"perCount\\\":450,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":10,\\\"endTime\\\":1943005906000,\\\"id\\\":1667,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":118,\\\"name\\\":\\\"礼物-心相印*\\\",\\\"perCount\\\":500,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":21,\\\"endTime\\\":1943005906000,\\\"id\\\":1668,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":119,\\\"name\\\":\\\"礼物-甜甜圈*\\\",\\\"perCount\\\":120,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":52,\\\"endTime\\\":1943005906000,\\\"id\\\":1669,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":120,\\\"name\\\":\\\"礼物-棒棒糖*\\\",\\\"perCount\\\":50,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":99,\\\"endTime\\\":1943005906000,\\\"id\\\":1670,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":121,\\\"name\\\":\\\"钻石*99\\\",\\\"perCount\\\":20,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":128,\\\"endTime\\\":1943005906000,\\\"id\\\":1671,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":122,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"perCount\\\":10,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":158,\\\"endTime\\\":1943005906000,\\\"id\\\":1672,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":123,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000}]\",\"startTime\":\"2021-07-28 19:51:46\",\"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\":\"\",\"version\":0,\"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\":\"2031-07-28 19:51:46\",\"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,\"ruleStatus\":1,\"operatorName\":\"程杰\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"amount\\\":21,\\\"endTime\\\":1943005906000,\\\"id\\\":979,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":181,\\\"name\\\":\\\"礼物-甜甜圈\\\",\\\"perCount\\\":70,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":52,\\\"endTime\\\":1943005906000,\\\"id\\\":980,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":182,\\\"name\\\":\\\"礼物-棒棒糖\\\",\\\"perCount\\\":45,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":128,\\\"endTime\\\":1943005906000,\\\"id\\\":981,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":183,\\\"name\\\":\\\"礼物-么么哒\\\",\\\"perCount\\\":25,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":158,\\\"endTime\\\":1943005906000,\\\"id\\\":982,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":184,\\\"name\\\":\\\"礼物-麦克风\\\",\\\"perCount\\\":10,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":222,\\\"endTime\\\":1943005906000,\\\"id\\\":983,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":185,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000}]\",\"startTime\":\"2021-07-28 19:51:46\",\"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,\"version\":0,\"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,\"endTime\":\"2031-07-28 19:51:46\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":220158,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png\",\"delFlag\":false,\"ruleStatus\":1,\"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\\\":128,\\\"endTime\\\":1943086709000,\\\"id\\\":2400,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":125,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"perCount\\\":400,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627553909000},{\\\"amount\\\":158,\\\"endTime\\\":1943086709000,\\\"id\\\":2401,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":126,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"perCount\\\":400,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627553909000},{\\\"amount\\\":188,\\\"endTime\\\":1943086709000,\\\"id\\\":2402,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":127,\\\"name\\\":\\\"礼物-怦然心动*\\\",\\\"perCount\\\":350,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627553909000},{\\\"amount\\\":233,\\\"endTime\\\":1943086709000,\\\"id\\\":2403,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":128,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627553909000},{\\\"amount\\\":266,\\\"endTime\\\":1943086709000,\\\"id\\\":2404,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":129,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"perCount\\\":120,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627553909000}]\",\"startTime\":\"2021-07-29 18:18:29\",\"id\":64,\"operatorId\":34,\"rewardLotteryCount\":220158,\"openRewardDiamonds\":46259306,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga\",\"updateTime\":\"2021-07-29 18:18:29\",\"sort\":20,\"labelUrl\":\"null\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif\",\"remainLotteryDiamonds\":218030,\"openPayDiamonds\":46233180,\"createTime\":\"2019-10-16 18:38:39\",\"name\":\"白银宝箱\",\"remainLotteryCount\":1264,\"endTime\":\"2031-07-29 18:18:29\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"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,\"ruleStatus\":1,\"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\\\":99,\\\"endTime\\\":1943005906000,\\\"id\\\":1226,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":394,\\\"name\\\":\\\"魅力值礼物-水晶粽\\\",\\\"perCount\\\":100,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":10,\\\"endTime\\\":1943005906000,\\\"id\\\":1225,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":395,\\\"name\\\":\\\"钻石*10\\\",\\\"perCount\\\":100,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":1,\\\"endTime\\\":1943005906000,\\\"id\\\":1224,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":396,\\\"name\\\":\\\"座位框-魔力法典*1 天\\\",\\\"perCount\\\":100,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000}]\",\"startTime\":\"2021-07-28 19:51:46\",\"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\",\"version\":0,\"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\":\"2031-07-28 19:51:46\",\"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,\"ruleStatus\":1,\"operatorName\":\"梁鑫宇\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"amount\\\":233,\\\"endTime\\\":1943005906000,\\\"id\\\":2181,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":135,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"perCount\\\":300,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":388,\\\"endTime\\\":1943005906000,\\\"id\\\":2182,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":136,\\\"name\\\":\\\"钻石*388\\\",\\\"perCount\\\":400,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":266,\\\"endTime\\\":1943005906000,\\\"id\\\":2183,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":137,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"perCount\\\":400,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":520,\\\"endTime\\\":1943005906000,\\\"id\\\":2184,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":138,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"perCount\\\":300,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":788,\\\"endTime\\\":1943005906000,\\\"id\\\":2185,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":139,\\\"name\\\":\\\"钻石*788\\\",\\\"perCount\\\":295,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":999,\\\"endTime\\\":1943005906000,\\\"id\\\":2186,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":140,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"perCount\\\":140,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":1314,\\\"endTime\\\":1943005906000,\\\"id\\\":2187,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":141,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"perCount\\\":60,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":3344,\\\"endTime\\\":1943005906000,\\\"id\\\":2188,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":142,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"perCount\\\":10,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":7777,\\\"endTime\\\":1943005906000,\\\"id\\\":2189,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":143,\\\"name\\\":\\\"礼物-爱神之箭*\\\",\\\"perCount\\\":10,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":26666,\\\"endTime\\\":1943005906000,\\\"id\\\":2190,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":144,\\\"name\\\":\\\"礼物-心愿灯*\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":333,\\\"endTime\\\":1943005906000,\\\"id\\\":2191,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":145,\\\"name\\\":\\\"座位框-花蝴蝶*1 天\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":333,\\\"endTime\\\":1943005906000,\\\"id\\\":2192,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":146,\\\"name\\\":\\\"座位框-精灵梦*1 天\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000}]\",\"startTime\":\"2021-07-28 19:51:46\",\"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,\"version\":1,\"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,\"endTime\":\"2031-07-28 19:51:46\",\"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,\"ruleStatus\":1,\"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\\\":520,\\\"endTime\\\":1943005906000,\\\"id\\\":2204,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":130,\\\"name\\\":\\\"魅力值礼物-果果冰\\\",\\\"perCount\\\":70,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":999,\\\"endTime\\\":1943005906000,\\\"id\\\":2205,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":200,\\\"name\\\":\\\"魅力值礼物-樱花雨\\\",\\\"perCount\\\":150,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":1314,\\\"endTime\\\":1943005906000,\\\"id\\\":2206,\\\"isNotice\\\":0,\\\"isReward\\\":1,\\\"lotteryId\\\":201,\\\"name\\\":\\\"魅力值礼物-爱的告白\\\",\\\"perCount\\\":90,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000}]\",\"startTime\":\"2021-07-28 19:51:46\",\"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\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif\",\"remainLotteryDiamonds\":154505732,\"openPayDiamonds\":335530800,\"createTime\":\"2020-01-11 12:01:31\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":111123017,\"endTime\":\"2031-07-28 19:51:46\",\"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,\"ruleStatus\":1,\"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\\\":10,\\\"endTime\\\":1943005906000,\\\"id\\\":1706,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":326,\\\"name\\\":\\\"座位框-萌爪爪*5 天\\\",\\\"perCount\\\":50,\\\"probability\\\":100.0,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000},{\\\"amount\\\":50,\\\"endTime\\\":1943005906000,\\\"id\\\":1705,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":392,\\\"name\\\":\\\"礼物-森林之星*\\\",\\\"perCount\\\":150,\\\"probability\\\":0.0,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627473106000}]\",\"startTime\":\"2021-07-28 19:51:46\",\"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\",\"version\":0,\"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,\"endTime\":\"2031-07-28 19:51:46\",\"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-08-24 09:48:32:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 01秒115毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒115毫秒","endTime":"2021-08-24 09:48:32","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:30","status":1}
[2021-08-24 09:48:34.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:34.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:34.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:34.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:34.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:34.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:34.010] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:34.010] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:34.010] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:34.010] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:34.011] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:34.011] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:35 GMT
[2021-08-24 09:48:34.011] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:34.011] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:34.011] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:34.011] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:34.012] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:34.012] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:34.534] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:34:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-08-24 09:48:34.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-24 09:48:34.535] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:34.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:34.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:34.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-24 09:48:34.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:34.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:34.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:48:34.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:34.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:34.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18376254}
[2021-08-24 09:48:34.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:34.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18376254
[2021-08-24 09:48:34.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:34.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:34.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:35 GMT
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":0,"lastPage":0,"navigatepageNums":[],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":0,"list":[],"pageNum":1,"navigatePages":8,"total":0,"pages":0,"size":0,"firstPage":0,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:34.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:34.855] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-08-24 09:48:34.855] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:34.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:34.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:34.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-08-24 09:48:34.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:34.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:34.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:34.999] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:34.999] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:34.999] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=999999, guildCode=18376254, pageNum=1}
[2021-08-24 09:48:34.999] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:34.999] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=999999&guildCode=18376254&pageNum=1
[2021-08-24 09:48:34.999] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:34.999] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:35.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:35.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:35.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:35.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:35.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:35.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:35.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:35.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:35.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:36 GMT
[2021-08-24 09:48:35.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:35.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:35.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:35.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":0,"lastPage":0,"navigatepageNums":[],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":999999,"endRow":0,"list":[],"pageNum":1,"navigatePages":8,"total":0,"pages":0,"size":0,"firstPage":0,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-24 09:48:35.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:35.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:35.097] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testAuditGuild--Test Mthod Failure
[2021-08-24 09:48:35.097] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-24 09:48:35:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-08-24 09:48:35.097] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 563毫秒======
[2021-08-24 09:48:35.098] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:35.098] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:35.099] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-08-24 09:48:34:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-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-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18376254\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18376254\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\":\"Tue, 24 Aug 2021 01:48:35 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":0,\"lastPage\":0,\"navigatepageNums\":[],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":0,\"list\":[],\"pageNum\":1,\"navigatePages\":8,\"total\":0,\"pages\":0,\"size\":0,\"firstPage\":0,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/guild-center/guild/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":999999,\"guildCode\":\"18376254\",\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=999999&guildCode=18376254&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\":\"Tue, 24 Aug 2021 01:48:36 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":0,\"lastPage\":0,\"navigatepageNums\":[],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":999999,\"endRow\":0,\"list\":[],\"pageNum\":1,\"navigatePages\":8,\"total\":0,\"pages\":0,\"size\":0,\"firstPage\":0,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:35:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 563毫秒======\r","caseMessage":"java.lang.IndexOutOfBoundsException: Index: 0, Size: 0\r\n\tat java.util.ArrayList.rangeCheck(ArrayList.java:657)\r\n\tat java.util.ArrayList.get(ArrayList.java:433)\r\n\tat com.alibaba.fastjson.JSONArray.get(JSONArray.java:189)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.guildList(CosPlyaPlayerServiceImpl.java:466)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.auditGuild(CosPlyaPlayerServiceImpl.java:714)\r\n\tat com.pipi.invoker.CosPlayerTest.testAuditGuild(CosPlayerTest.java:144)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\n","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"563毫秒","endTime":"2021-08-24 09:48:35","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:34","status":2}
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:35.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:36 GMT
[2021-08-24 09:48:35.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:35.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:35.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:35.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:35.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:35.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:40.305] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:40:用例【com.pipi.invoker.CosPlayerTest.testGetMine】开始======
[2021-08-24 09:48:40.306] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v3/user/get-mine
[2021-08-24 09:48:40.306] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:40.417] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v3/user/get-mine
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:40.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:41.951] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:41.951] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:41.951] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:42 GMT
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"signFlag":false,"userInfo":{"platformAuthUrl":"","nobleRankName":"子爵Ⅱ","type":2,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/14958ff0e7c5481faab6ad01b7729e7c.png","id":2203773,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","nobleRankCode":32,"totalFootprints":0,"gender":1,"city":"","managerPermit":false,"userCode":"137730220","ordersTakeStatus":"1","nickname":"test","emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/51605177ae5d445e882834a67a9d819c.png","memberLevel":0,"mobile":"13823774134","attentions":0,"imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","userId":2203773,"imId":"2203773_20210708","fans":1,"popularityInfo":{"levelCode":0,"levelName":"暂无等级","userId":2203773},"isInGuild":false,"isRicher":false,"totalAccessedCnt":11},"signDays":3,"userSetting":{"productNotifySettings":[{"receiveGrab":true,"id":97062,"productName":"王者荣耀","receiveDispatch":true}],"userId":2203773,"assignOrderMsgDnd":false,"robOrderMsgDnd":true},"userTypeList":[{"showName":"游戏陪玩","identityType":1,"icon":"https://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/15/2468671f70254c979b3e427ae290928a.png","userId":2203773},{"showName":"语音直播","identityType":2,"icon":"https://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/15/4194435400ab4df6a4a3b58ad5872586.png","userId":2203773}],"showGuildCenter":true,"signImg":"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png","userAlertInfo":{"orderNoPayAmount":0,"orderWaitingAmount":0,"guildApplyCount":0,"welfareCount":1,"grabOrderAmount":0,"addCouponCount":0}},"status":200}
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:41.952] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:41.953] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetMine--Test Mthod Success
[2021-08-24 09:48:41.953] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:41:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======
[2021-08-24 09:48:41.953] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒648毫秒======
[2021-08-24 09:48:41.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:41.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:41.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"/api/v3/user/get-mine 获取用户信(人气等级)","caseLog":"======2021-08-24 09:48:40:用例【com.pipi.invoker.CosPlayerTest.testGetMine】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-app.apeiwan.com/api/v3/user/get-mine\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\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\":\"Tue, 24 Aug 2021 01:48:42 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"signFlag\":false,\"userInfo\":{\"platformAuthUrl\":\"\",\"nobleRankName\":\"子爵Ⅱ\",\"type\":2,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/14958ff0e7c5481faab6ad01b7729e7c.png\",\"id\":2203773,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"nobleRankCode\":32,\"totalFootprints\":0,\"gender\":1,\"city\":\"\",\"managerPermit\":false,\"userCode\":\"137730220\",\"ordersTakeStatus\":\"1\",\"nickname\":\"test\",\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/51605177ae5d445e882834a67a9d819c.png\",\"memberLevel\":0,\"mobile\":\"13823774134\",\"attentions\":0,\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"userId\":2203773,\"imId\":\"2203773_20210708\",\"fans\":1,\"popularityInfo\":{\"levelCode\":0,\"levelName\":\"暂无等级\",\"userId\":2203773},\"isInGuild\":false,\"isRicher\":false,\"totalAccessedCnt\":11},\"signDays\":3,\"userSetting\":{\"productNotifySettings\":[{\"receiveGrab\":true,\"id\":97062,\"productName\":\"王者荣耀\",\"receiveDispatch\":true}],\"userId\":2203773,\"assignOrderMsgDnd\":false,\"robOrderMsgDnd\":true},\"userTypeList\":[{\"showName\":\"游戏陪玩\",\"identityType\":1,\"icon\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/15/2468671f70254c979b3e427ae290928a.png\",\"userId\":2203773},{\"showName\":\"语音直播\",\"identityType\":2,\"icon\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/15/4194435400ab4df6a4a3b58ad5872586.png\",\"userId\":2203773}],\"showGuildCenter\":true,\"signImg\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png\",\"userAlertInfo\":{\"orderNoPayAmount\":0,\"orderWaitingAmount\":0,\"guildApplyCount\":0,\"welfareCount\":1,\"grabOrderAmount\":0,\"addCouponCount\":0}},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:41:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======\r\n======本次用例运行消耗时间 01秒648毫秒======\r","caseName":"testGetMine","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒648毫秒","endTime":"2021-08-24 09:48:41","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:40","status":1}
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:43.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:44 GMT
[2021-08-24 09:48:43.269] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:43.269] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:43.269] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:43.269] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:43.269] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:43.269] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:43.776] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:43:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】开始======
[2021-08-24 09:48:43.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v1/user/balance/get
[2021-08-24 09:48:43.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v1/user/balance/get
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:43.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:43.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:43.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:43.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:43.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:43.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:43.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:43.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:43.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:43.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:44 GMT
[2021-08-24 09:48:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"virtualBalance":65610,"balance":247.09,"charm":0,"charmMoney":0.00,"chargeBalance":88.00,"newCharm":0},"status":200}
[2021-08-24 09:48:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:43.945] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserBalance--Test Mthod Success
[2021-08-24 09:48:43.945] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:43:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======
[2021-08-24 09:48:43.945] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 169毫秒======
[2021-08-24 09:48:43.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:43.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:43.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:43.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:43.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户皮皮币/钻石余额","caseLog":"======2021-08-24 09:48:43:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-app.apeiwan.com/api/v1/user/balance/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\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\":\"Tue, 24 Aug 2021 01:48:44 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"virtualBalance\":65610,\"balance\":247.09,\"charm\":0,\"charmMoney\":0.00,\"chargeBalance\":88.00,\"newCharm\":0},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:43:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======\r\n======本次用例运行消耗时间 169毫秒======\r","caseName":"testGetUserBalance","className":"com.pipi.invoker.CosPlayerTest","durationTime":"169毫秒","endTime":"2021-08-24 09:48:43","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:43","status":1}
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:44 GMT
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:44.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:44.627] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:44:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】开始======
[2021-08-24 09:48:44.628] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:44.628] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:44.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:44.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:44.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:44.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:44.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:44.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:44.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:45 GMT
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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":88.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":32,"activeTime":"2021-08-24 09:48:36","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-08-24 09:48:31","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":65610,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":5,"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}
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v1/user/simple/get
[2021-08-24 09:48:44.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:44.936] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:44.936] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:44.936] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v1/user/simple/get
[2021-08-24 09:48:44.936] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:44.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:44.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:48:44.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:44.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:44.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=TEST119720, userId=2203773}
[2021-08-24 09:48:44.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:44.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=TEST119720&userId=2203773
[2021-08-24 09:48:44.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:44.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:45.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:46 GMT
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:45.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"获取个人信息成功!","data":{"platformAuthUrl":"","videoId":956202,"type":2,"picUrls":["http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg"],"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/14958ff0e7c5481faab6ad01b7729e7c.png","balance":0.00,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":88.00,"lastMemberExp":0,"activeTime":"2021-08-24 09:48:36","userProducts":[{"voice":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/25/b5cfddf754744946998c49be57bda518.mp3","productName":"王者荣耀","virtualOrderCount":0,"price":14.00,"id":97062,"salesModeId":8,"unit":"半小时","indexIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/73ac07beeb7740a1bb0d7161140dcd0a.png","userBgCard":"","status":true,"desc":"非常好","gender":1,"roomBgCard":"","playeeScore":600.00,"delFlag":false,"serviceTimeTotal":0.00,"newSwitch":false,"platformShow":3,"identityType":0,"gradePicUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","voiceDuration":8,"salesModeRank":100,"orderCount":0,"updateTime":"2021-07-08 10:35:50","techAuthId":106519,"userId":2203773,"scoreAvg":5.0,"categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/73ac07beeb7740a1bb0d7161140dcd0a.png","createTime":"2021-07-08 10:35:50","pcIndexIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/c34703ce5f234a2c96cb1424f55d77db.png","autoRecommend":0,"categoryId":30}],"isAttention":0,"status":1,"gender":1,"city":"未设置","managerPermit":false,"registerType":3,"userCode":"137730220","loginTime":"2021-08-24 09:48:31","ordersTakeStatus":1,"videoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","nickname":"test","virtualBalance":65610,"memberLevel":0,"updateTime":"2021-07-08 10:33:14","mainPicUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","quickServerStatus":5,"userId":2203773,"imId":"2203773_20210708","charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/acd69db52eac4b2a93629441fc3575f3.png","sourceId":5,"platformAuth":0,"roomVipType":0,"charmDrawSum":0,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","nobleRankCode":32,"isRoomBlacked":false,"userInfoAuth":2,"totalFootprints":0,"orderTakeSwitch":false,"userTechList":[{"passTime":"2021-07-08 10:35:50","isFirst":true,"id":106519,"maxPrice":14.00,"isActivate":true,"status":2,"statusStr":"已通过","refuse":false,"isNeedExam":false,"voiceDuration":8,"authStatus":8,"lastOrderCount":0,"updateTime":"2021-07-08 10:35:51","userId":2203773,"createTime":"2021-07-08 10:35:42","voice":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/25/b5cfddf754744946998c49be57bda518.mp3","managerEnable":true,"virtualOrderCount":0,"partRefuse":false,"success":false,"description":"非常好","categoryName":"王者荣耀","modelPriceList":[],"firstCommit":false,"checkStatus":2,"gradePicUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","priceRuleList":[],"orderCount":0,"scoreAvg":5.0,"categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/cee77eaa88c04ad1b0c296a722822bb0.png","categoryId":30}],"registIp":"223.104.20.18","accessCount":0,"openedTechs":1,"isCancel":false,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/51605177ae5d445e882834a67a9d819c.png","attentions":0,"imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","scoreAvg":4.0,"fans":1,"totalAccessedCnt":11,"registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"},"status":200}
[2021-08-24 09:48:45.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:45.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:45.980] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple--Test Mthod Success
[2021-08-24 09:48:45.980] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:45:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======
[2021-08-24 09:48:45.980] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒353毫秒======
[2021-08-24 09:48:45.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:45.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:45.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v1","caseLog":"======2021-08-24 09:48:44:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:48: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\":\"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\":88.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":32,\"activeTime\":\"2021-08-24 09:48:36\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-08-24 09:48:31\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":65610,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":5,\"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://t6-api-app.apeiwan.com/api/v1/user/simple/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"TEST119720\",\"userId\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=TEST119720&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\":\"Tue, 24 Aug 2021 01:48:46 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"获取个人信息成功!\",\"data\":{\"platformAuthUrl\":\"\",\"videoId\":956202,\"type\":2,\"picUrls\":[\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\"],\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/14958ff0e7c5481faab6ad01b7729e7c.png\",\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":88.00,\"lastMemberExp\":0,\"activeTime\":\"2021-08-24 09:48:36\",\"userProducts\":[{\"voice\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/25/b5cfddf754744946998c49be57bda518.mp3\",\"productName\":\"王者荣耀\",\"virtualOrderCount\":0,\"price\":14.00,\"id\":97062,\"salesModeId\":8,\"unit\":\"半小时\",\"indexIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/73ac07beeb7740a1bb0d7161140dcd0a.png\",\"userBgCard\":\"\",\"status\":true,\"desc\":\"非常好\",\"gender\":1,\"roomBgCard\":\"\",\"playeeScore\":600.00,\"delFlag\":false,\"serviceTimeTotal\":0.00,\"newSwitch\":false,\"platformShow\":3,\"identityType\":0,\"gradePicUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"voiceDuration\":8,\"salesModeRank\":100,\"orderCount\":0,\"updateTime\":\"2021-07-08 10:35:50\",\"techAuthId\":106519,\"userId\":2203773,\"scoreAvg\":5.0,\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/73ac07beeb7740a1bb0d7161140dcd0a.png\",\"createTime\":\"2021-07-08 10:35:50\",\"pcIndexIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/c34703ce5f234a2c96cb1424f55d77db.png\",\"autoRecommend\":0,\"categoryId\":30}],\"isAttention\":0,\"status\":1,\"gender\":1,\"city\":\"未设置\",\"managerPermit\":false,\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-08-24 09:48:31\",\"ordersTakeStatus\":1,\"videoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"nickname\":\"test\",\"virtualBalance\":65610,\"memberLevel\":0,\"updateTime\":\"2021-07-08 10:33:14\",\"mainPicUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"quickServerStatus\":5,\"userId\":2203773,\"imId\":\"2203773_20210708\",\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/acd69db52eac4b2a93629441fc3575f3.png\",\"sourceId\":5,\"platformAuth\":0,\"roomVipType\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"nobleRankCode\":32,\"isRoomBlacked\":false,\"userInfoAuth\":2,\"totalFootprints\":0,\"orderTakeSwitch\":false,\"userTechList\":[{\"passTime\":\"2021-07-08 10:35:50\",\"isFirst\":true,\"id\":106519,\"maxPrice\":14.00,\"isActivate\":true,\"status\":2,\"statusStr\":\"已通过\",\"refuse\":false,\"isNeedExam\":false,\"voiceDuration\":8,\"authStatus\":8,\"lastOrderCount\":0,\"updateTime\":\"2021-07-08 10:35:51\",\"userId\":2203773,\"createTime\":\"2021-07-08 10:35:42\",\"voice\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/25/b5cfddf754744946998c49be57bda518.mp3\",\"managerEnable\":true,\"virtualOrderCount\":0,\"partRefuse\":false,\"success\":false,\"description\":\"非常好\",\"categoryName\":\"王者荣耀\",\"modelPriceList\":[],\"firstCommit\":false,\"checkStatus\":2,\"gradePicUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"priceRuleList\":[],\"orderCount\":0,\"scoreAvg\":5.0,\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/cee77eaa88c04ad1b0c296a722822bb0.png\",\"categoryId\":30}],\"registIp\":\"223.104.20.18\",\"accessCount\":0,\"openedTechs\":1,\"isCancel\":false,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/51605177ae5d445e882834a67a9d819c.png\",\"attentions\":0,\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"scoreAvg\":4.0,\"fans\":1,\"totalAccessedCnt\":11,\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:45:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======\r\n======本次用例运行消耗时间 01秒353毫秒======\r","caseName":"testGetUserSimple","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒353毫秒","endTime":"2021-08-24 09:48:45","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:44","status":1}
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:47 GMT
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:46.343] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:46.850] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:46:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】开始======
[2021-08-24 09:48:46.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:46.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:46.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:46.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:46.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:46.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:46.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:46.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:46.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:46.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:46.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-24 09:48:46.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:46.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-24 09:48:46.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:46.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:48 GMT
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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":88.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":32,"activeTime":"2021-08-24 09:48:36","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-08-24 09:48:31","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":65610,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":5,"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}
[2021-08-24 09:48:47.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:47.065] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:47.065] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v2/user/simple/get
[2021-08-24 09:48:47.065] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v2/user/simple/get
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=TEST119720, userId=2203773}
[2021-08-24 09:48:47.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:47.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=TEST119720&userId=2203773
[2021-08-24 09:48:47.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:47.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:48 GMT
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:47.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"获取个人信息成功!","data":{"platformAuthUrl":"","about":"他还没有个性签名哟~","videoId":956202,"type":2,"picUrls":["http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg"],"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/14958ff0e7c5481faab6ad01b7729e7c.png","balance":0.00,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":88.00,"lastMemberExp":0,"activeTime":"2021-08-24 09:48:36","userProducts":[{"voice":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/25/b5cfddf754744946998c49be57bda518.mp3","productName":"王者荣耀","virtualOrderCount":0,"price":14.00,"id":97062,"salesModeId":8,"unit":"半小时","indexIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/73ac07beeb7740a1bb0d7161140dcd0a.png","userBgCard":"","status":true,"desc":"非常好","gender":1,"roomBgCard":"","playeeScore":600.00,"delFlag":false,"serviceTimeTotal":0.00,"newSwitch":false,"platformShow":3,"identityType":0,"gradePicUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","voiceDuration":8,"salesModeRank":100,"orderCount":0,"updateTime":"2021-07-08 10:35:50","techAuthId":106519,"displayNewPrice":0,"userId":2203773,"scoreAvg":5.0,"categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/73ac07beeb7740a1bb0d7161140dcd0a.png","createTime":"2021-07-08 10:35:50","certUrl":"","pcIndexIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/c34703ce5f234a2c96cb1424f55d77db.png","autoRecommend":0,"categoryId":30}],"isAttention":0,"status":1,"gender":1,"city":"未设置","managerPermit":false,"registerType":3,"userCode":"137730220","loginTime":"2021-08-24 09:48:31","ordersTakeStatus":1,"videoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","nickname":"test","virtualBalance":65610,"memberLevel":0,"updateTime":"2021-07-08 10:33:14","mainPicUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","quickServerStatus":5,"userId":2203773,"imId":"2203773_20210708","charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/acd69db52eac4b2a93629441fc3575f3.png","sourceId":5,"platformAuth":0,"roomVipType":0,"charmDrawSum":0,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","nobleRankCode":32,"isRoomBlacked":false,"userInfoAuth":2,"totalFootprints":0,"orderTakeSwitch":false,"userTechList":[{"passTime":"2021-07-08 10:35:50","isFirst":true,"id":106519,"maxPrice":14.00,"isActivate":true,"status":2,"statusStr":"已通过","refuse":false,"isNeedExam":false,"voiceDuration":8,"authStatus":8,"lastOrderCount":0,"updateTime":"2021-07-08 10:35:51","userId":2203773,"createTime":"2021-07-08 10:35:42","voice":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/25/b5cfddf754744946998c49be57bda518.mp3","managerEnable":true,"virtualOrderCount":0,"partRefuse":false,"success":false,"description":"非常好","categoryName":"王者荣耀","modelPriceList":[],"firstCommit":false,"checkStatus":2,"gradePicUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","priceRuleList":[],"orderCount":0,"scoreAvg":5.0,"categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/cee77eaa88c04ad1b0c296a722822bb0.png","categoryId":30}],"registIp":"223.104.20.18","accessCount":0,"openedTechs":1,"isCancel":false,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/51605177ae5d445e882834a67a9d819c.png","attentions":0,"imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","scoreAvg":4.0,"fans":1,"totalAccessedCnt":11,"registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"},"status":200}
[2021-08-24 09:48:47.285] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:47.285] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:47.286] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple2--Test Mthod Success
[2021-08-24 09:48:47.286] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:47:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======
[2021-08-24 09:48:47.286] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 436毫秒======
[2021-08-24 09:48:47.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:47.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:47.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:47.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:47.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:47.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:47.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:47.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:47.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:47.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:47.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:47.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:47.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:47.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v2","caseLog":"======2021-08-24 09:48:46:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:48:48 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\":88.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":32,\"activeTime\":\"2021-08-24 09:48:36\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-08-24 09:48:31\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":65610,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":5,\"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://t6-api-app.apeiwan.com/api/v2/user/simple/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"TEST119720\",\"userId\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=TEST119720&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\":\"Tue, 24 Aug 2021 01:48:48 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"获取个人信息成功!\",\"data\":{\"platformAuthUrl\":\"\",\"about\":\"他还没有个性签名哟~\",\"videoId\":956202,\"type\":2,\"picUrls\":[\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\"],\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/14958ff0e7c5481faab6ad01b7729e7c.png\",\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":88.00,\"lastMemberExp\":0,\"activeTime\":\"2021-08-24 09:48:36\",\"userProducts\":[{\"voice\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/25/b5cfddf754744946998c49be57bda518.mp3\",\"productName\":\"王者荣耀\",\"virtualOrderCount\":0,\"price\":14.00,\"id\":97062,\"salesModeId\":8,\"unit\":\"半小时\",\"indexIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/73ac07beeb7740a1bb0d7161140dcd0a.png\",\"userBgCard\":\"\",\"status\":true,\"desc\":\"非常好\",\"gender\":1,\"roomBgCard\":\"\",\"playeeScore\":600.00,\"delFlag\":false,\"serviceTimeTotal\":0.00,\"newSwitch\":false,\"platformShow\":3,\"identityType\":0,\"gradePicUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"voiceDuration\":8,\"salesModeRank\":100,\"orderCount\":0,\"updateTime\":\"2021-07-08 10:35:50\",\"techAuthId\":106519,\"displayNewPrice\":0,\"userId\":2203773,\"scoreAvg\":5.0,\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/73ac07beeb7740a1bb0d7161140dcd0a.png\",\"createTime\":\"2021-07-08 10:35:50\",\"certUrl\":\"\",\"pcIndexIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/c34703ce5f234a2c96cb1424f55d77db.png\",\"autoRecommend\":0,\"categoryId\":30}],\"isAttention\":0,\"status\":1,\"gender\":1,\"city\":\"未设置\",\"managerPermit\":false,\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-08-24 09:48:31\",\"ordersTakeStatus\":1,\"videoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"nickname\":\"test\",\"virtualBalance\":65610,\"memberLevel\":0,\"updateTime\":\"2021-07-08 10:33:14\",\"mainPicUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"quickServerStatus\":5,\"userId\":2203773,\"imId\":\"2203773_20210708\",\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/acd69db52eac4b2a93629441fc3575f3.png\",\"sourceId\":5,\"platformAuth\":0,\"roomVipType\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"nobleRankCode\":32,\"isRoomBlacked\":false,\"userInfoAuth\":2,\"totalFootprints\":0,\"orderTakeSwitch\":false,\"userTechList\":[{\"passTime\":\"2021-07-08 10:35:50\",\"isFirst\":true,\"id\":106519,\"maxPrice\":14.00,\"isActivate\":true,\"status\":2,\"statusStr\":\"已通过\",\"refuse\":false,\"isNeedExam\":false,\"voiceDuration\":8,\"authStatus\":8,\"lastOrderCount\":0,\"updateTime\":\"2021-07-08 10:35:51\",\"userId\":2203773,\"createTime\":\"2021-07-08 10:35:42\",\"voice\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/25/b5cfddf754744946998c49be57bda518.mp3\",\"managerEnable\":true,\"virtualOrderCount\":0,\"partRefuse\":false,\"success\":false,\"description\":\"非常好\",\"categoryName\":\"王者荣耀\",\"modelPriceList\":[],\"firstCommit\":false,\"checkStatus\":2,\"gradePicUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"priceRuleList\":[],\"orderCount\":0,\"scoreAvg\":5.0,\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/2/19/cee77eaa88c04ad1b0c296a722822bb0.png\",\"categoryId\":30}],\"registIp\":\"223.104.20.18\",\"accessCount\":0,\"openedTechs\":1,\"isCancel\":false,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/51605177ae5d445e882834a67a9d819c.png\",\"attentions\":0,\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"scoreAvg\":4.0,\"fans\":1,\"totalAccessedCnt\":11,\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:47:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======\r\n======本次用例运行消耗时间 436毫秒======\r","caseName":"testGetUserSimple2","className":"com.pipi.invoker.CosPlayerTest","durationTime":"436毫秒","endTime":"2021-08-24 09:48:47","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:46","status":1}
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:48 GMT
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:47.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:47.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:48.231] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:48:用例【com.pipi.invoker.CosPlayerTest.testGethome】开始======
[2021-08-24 09:48:48.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v3/user/get-home
[2021-08-24 09:48:48.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:48.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:48.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v3/user/get-home
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:48.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:49 GMT
[2021-08-24 09:48:48.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:48.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:48.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:48.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"signFlag":false,"userInfo":{"platformAuthUrl":"","gender":"1","managerPermit":false,"type":2,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/14958ff0e7c5481faab6ad01b7729e7c.png","ordersTakeStatus":1,"nickname":"test","id":2203773,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","nobleRankCode":32,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/51605177ae5d445e882834a67a9d819c.png","memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","userId":2203773,"imId":"2203773_20210708","isInGuild":false,"isRicher":false},"signDays":3,"userSetting":{"productNotifySettings":[{"receiveGrab":true,"id":97062,"productName":"王者荣耀","receiveDispatch":true}],"userId":2203773,"assignOrderMsgDnd":false,"robOrderMsgDnd":true},"showGuildCenter":true,"signImg":"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png","userAlertInfo":{"orderNoPayAmount":0,"orderWaitingAmount":0,"guildApplyCount":0,"welfareCount":1,"grabOrderAmount":0,"addCouponCount":0}},"status":200}
[2021-08-24 09:48:48.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:48.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:48.430] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGethome--Test Mthod Success
[2021-08-24 09:48:48.430] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:48:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======
[2021-08-24 09:48:48.430] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 199毫秒======
[2021-08-24 09:48:48.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:48.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:48.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":" /api/v3/user/get-home获取用户信息(用户是否是巡管员) ","caseLog":"======2021-08-24 09:48:48:用例【com.pipi.invoker.CosPlayerTest.testGethome】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-app.apeiwan.com/api/v3/user/get-home\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\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\":\"Tue, 24 Aug 2021 01:48:49 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"signFlag\":false,\"userInfo\":{\"platformAuthUrl\":\"\",\"gender\":\"1\",\"managerPermit\":false,\"type\":2,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/14958ff0e7c5481faab6ad01b7729e7c.png\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"id\":2203773,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"nobleRankCode\":32,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/51605177ae5d445e882834a67a9d819c.png\",\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"userId\":2203773,\"imId\":\"2203773_20210708\",\"isInGuild\":false,\"isRicher\":false},\"signDays\":3,\"userSetting\":{\"productNotifySettings\":[{\"receiveGrab\":true,\"id\":97062,\"productName\":\"王者荣耀\",\"receiveDispatch\":true}],\"userId\":2203773,\"assignOrderMsgDnd\":false,\"robOrderMsgDnd\":true},\"showGuildCenter\":true,\"signImg\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png\",\"userAlertInfo\":{\"orderNoPayAmount\":0,\"orderWaitingAmount\":0,\"guildApplyCount\":0,\"welfareCount\":1,\"grabOrderAmount\":0,\"addCouponCount\":0}},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:48:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======\r\n======本次用例运行消耗时间 199毫秒======\r","caseName":"testGethome","className":"com.pipi.invoker.CosPlayerTest","durationTime":"199毫秒","endTime":"2021-08-24 09:48:48","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:48","status":1}
[2021-08-24 09:48:48.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:48.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:48.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:48.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:48.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:48 GMT
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:48.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:49.167] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:49:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-08-24 09:48:49.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-08-24 09:48:49.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:49.290] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:49.290] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:49.290] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-08-24 09:48:49.290] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:49.290] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:49.290] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:49.290] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:49.291] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:49.291] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-08-24 09:48:49.291] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:49.291] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-08-24 09:48:49.291] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:49.291] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:50 GMT
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:50.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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}
[2021-08-24 09:48:50.301] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:50.301] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:50.303] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-08-24 09:48:50.303] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:50:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-08-24 09:48:50.303] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒136毫秒======
[2021-08-24 09:48:50.303] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:50.304] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:50.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-08-24 09:48:49:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:48:50 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-08-24 09:48:50:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 01秒136毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒136毫秒","endTime":"2021-08-24 09:48:50","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:49","status":1}
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:51 GMT
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:50.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:50.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:50.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:50.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:50.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:51.094] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:51:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======
[2021-08-24 09:48:51.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-24 09:48:51.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:51.183] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:51.184] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:51.184] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-24 09:48:51.184] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:51.185] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:51.185] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-7c0e84dee3354becb7a09a669e50688a#2203657
[2021-08-24 09:48:51.185] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:51.185] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:51.185] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18376254}
[2021-08-24 09:48:51.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:51.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18376254
[2021-08-24 09:48:51.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:51.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:52 GMT
[2021-08-24 09:48:51.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:51.821] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:51.821] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:51.821] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":0,"lastPage":0,"navigatepageNums":[],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":0,"list":[],"pageNum":1,"navigatePages":8,"total":0,"pages":0,"size":0,"firstPage":0,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-24 09:48:51.821] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:51.821] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:51.822] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGuildSearch--Test Mthod Success
[2021-08-24 09:48:51.822] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:51:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======
[2021-08-24 09:48:51.822] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 728毫秒======
[2021-08-24 09:48:51.822] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:51.822] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:51.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"搜索公会","caseLog":"======2021-08-24 09:48:51:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-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-7c0e84dee3354becb7a09a669e50688a#2203657\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18376254\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18376254\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\":\"Tue, 24 Aug 2021 01:48:52 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":0,\"lastPage\":0,\"navigatepageNums\":[],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":0,\"list\":[],\"pageNum\":1,\"navigatePages\":8,\"total\":0,\"pages\":0,\"size\":0,\"firstPage\":0,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:51:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======\r\n======本次用例运行消耗时间 728毫秒======\r","caseName":"testGuildSearch","className":"com.pipi.invoker.CosPlayerTest","durationTime":"728毫秒","endTime":"2021-08-24 09:48:51","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:51","status":1}
[2021-08-24 09:48:51.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:51.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:51.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:51.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:51.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:51.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:51.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:51.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:51.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:51.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:51.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:51.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:52 GMT
[2021-08-24 09:48:51.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:51.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:51.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:51.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:51.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:51.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:52.504] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:52:用例【com.pipi.invoker.CosPlayerTest.testManagerList】开始======
[2021-08-24 09:48:52.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/rask/manager/list
[2021-08-24 09:48:52.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:52.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:52.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:52.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/rask/manager/list
[2021-08-24 09:48:52.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:52.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:52.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:52.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:52.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:52.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-08-24 09:48:52.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:52.593] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-08-24 09:48:52.593] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:52.593] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:52.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:52.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:52.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:52.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:52.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:52.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:52.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:52.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:52.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:53 GMT
[2021-08-24 09:48:52.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:52.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:52.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:52.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询超管列表成功!","data":{"startRow":1,"lastPage":2,"navigatepageNums":[1,2],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"manager.create_time desc","endRow":10,"list":[{"remark":"111","managerName":"刘霄","userId":2203064,"userCode":"146030220","createTime":"2021-07-20 14:31:47","nickname":"游客1222","id":15,"status":0},{"remark":"插网线","managerName":"程杰","userId":1047683,"userCode":"138674010","createTime":"2021-07-20 11:49:14","nickname":"豹君之天下","id":14,"status":0},{"remark":"社交任莹莹-公会厅管理使用","managerName":"任莹莹","userId":2193423,"userCode":"132439120","createTime":"2020-06-24 14:48:00","nickname":"皮皮巡管员","id":12,"status":0},{"remark":"社交杜思琪-工会厅管理使用","managerName":"杜思琪","userId":2192320,"userCode":"102329120","createTime":"2020-06-23 15:36:05","nickname":"皮皮巡管员","id":11,"status":0},{"remark":"社交谭琪锐-公会厅管理使用","managerName":"谭琪锐","userId":2189526,"userCode":"162598120","createTime":"2020-06-23 15:35:39","nickname":"皮皮巡管员","id":10,"status":0},{"remark":"社交线魏雯-公会厅管理使用","managerName":"魏雯","userId":1847031,"userCode":"113074810","createTime":"2020-06-22 17:02:55","nickname":"皮皮巡管员","id":9,"status":0},{"remark":"社交线王丽萍-公会厅管理使用","managerName":"王丽萍","userId":1386768,"userCode":"186768310","createTime":"2020-06-22 17:01:56","nickname":"皮皮巡管员","id":8,"status":0},{"remark":"测试数据\n","managerName":"测试一下","userId":237459,"userCode":"1008","createTime":"2020-06-20 16:54:08","nickname":"挽歌","id":7,"status":1},{"remark":"陪练线梁鑫宇-派单厅管理使用","managerName":"梁鑫宇","userId":2173932,"userCode":"123937120","createTime":"2020-06-19 14:55:27","nickname":"皮皮巡管员","id":5,"status":0},{"remark":"运营账号","managerName":"于蕙铭","userId":1202786,"userCode":"168720210","createTime":"2020-06-12 14:33:25","nickname":"皮皮巡管员","id":4,"status":0}],"pageNum":1,"navigatePages":8,"total":13,"pages":2,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-24 09:48:52.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:52.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:52.870] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testManagerList--Test Mthod Success
[2021-08-24 09:48:52.870] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:52:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======
[2021-08-24 09:48:52.870] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 366毫秒======
[2021-08-24 09:48:52.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:52.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:52.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:52.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:52.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:52.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:52.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:52.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:52.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:52.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:52.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:52.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:52.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:52.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管列表 /api/v1/rask/manager/list","caseLog":"======2021-08-24 09:48:52:用例【com.pipi.invoker.CosPlayerTest.testManagerList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/rask/manager/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=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\":\"Tue, 24 Aug 2021 01:48:53 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询超管列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":2,\"navigatepageNums\":[1,2],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"manager.create_time desc\",\"endRow\":10,\"list\":[{\"remark\":\"111\",\"managerName\":\"刘霄\",\"userId\":2203064,\"userCode\":\"146030220\",\"createTime\":\"2021-07-20 14:31:47\",\"nickname\":\"游客1222\",\"id\":15,\"status\":0},{\"remark\":\"插网线\",\"managerName\":\"程杰\",\"userId\":1047683,\"userCode\":\"138674010\",\"createTime\":\"2021-07-20 11:49:14\",\"nickname\":\"豹君之天下\",\"id\":14,\"status\":0},{\"remark\":\"社交任莹莹-公会厅管理使用\",\"managerName\":\"任莹莹\",\"userId\":2193423,\"userCode\":\"132439120\",\"createTime\":\"2020-06-24 14:48:00\",\"nickname\":\"皮皮巡管员\",\"id\":12,\"status\":0},{\"remark\":\"社交杜思琪-工会厅管理使用\",\"managerName\":\"杜思琪\",\"userId\":2192320,\"userCode\":\"102329120\",\"createTime\":\"2020-06-23 15:36:05\",\"nickname\":\"皮皮巡管员\",\"id\":11,\"status\":0},{\"remark\":\"社交谭琪锐-公会厅管理使用\",\"managerName\":\"谭琪锐\",\"userId\":2189526,\"userCode\":\"162598120\",\"createTime\":\"2020-06-23 15:35:39\",\"nickname\":\"皮皮巡管员\",\"id\":10,\"status\":0},{\"remark\":\"社交线魏雯-公会厅管理使用\",\"managerName\":\"魏雯\",\"userId\":1847031,\"userCode\":\"113074810\",\"createTime\":\"2020-06-22 17:02:55\",\"nickname\":\"皮皮巡管员\",\"id\":9,\"status\":0},{\"remark\":\"社交线王丽萍-公会厅管理使用\",\"managerName\":\"王丽萍\",\"userId\":1386768,\"userCode\":\"186768310\",\"createTime\":\"2020-06-22 17:01:56\",\"nickname\":\"皮皮巡管员\",\"id\":8,\"status\":0},{\"remark\":\"测试数据\\n\",\"managerName\":\"测试一下\",\"userId\":237459,\"userCode\":\"1008\",\"createTime\":\"2020-06-20 16:54:08\",\"nickname\":\"挽歌\",\"id\":7,\"status\":1},{\"remark\":\"陪练线梁鑫宇-派单厅管理使用\",\"managerName\":\"梁鑫宇\",\"userId\":2173932,\"userCode\":\"123937120\",\"createTime\":\"2020-06-19 14:55:27\",\"nickname\":\"皮皮巡管员\",\"id\":5,\"status\":0},{\"remark\":\"运营账号\",\"managerName\":\"于蕙铭\",\"userId\":1202786,\"userCode\":\"168720210\",\"createTime\":\"2020-06-12 14:33:25\",\"nickname\":\"皮皮巡管员\",\"id\":4,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":13,\"pages\":2,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:52:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======\r\n======本次用例运行消耗时间 366毫秒======\r","caseName":"testManagerList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"366毫秒","endTime":"2021-08-24 09:48:52","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:52","status":1}
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:54 GMT
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:53.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:54.041] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:54:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-08-24 09:48:54.041] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:54.041] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:54.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:54.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:54.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:54.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:54.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:54.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:54.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:54.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:54.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-24 09:48:54.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:54.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-24 09:48:54.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:54.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:54.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:54.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:55 GMT
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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":88.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":32,"activeTime":"2021-08-24 09:48:36","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-08-24 09:48:31","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":65610,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":5,"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}
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:54.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-08-24 09:48:54.226] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774134, nickname=test, remark=1, chargeBalance=88.00, userId=2203773, searchValue=2203773}
[2021-08-24 09:48:54.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:54.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=test&remark=1&chargeBalance=88.00&userId=2203773&searchValue=2203773
[2021-08-24 09:48:54.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:54.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:54.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:54.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:54.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:54.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:54.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:54.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:54.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:54.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:54.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:55 GMT
[2021-08-24 09:48:54.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:54.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:54.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:54.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-08-24 09:48:54.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:54.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:54.907] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMoneyDetailsSave--Test Mthod Success
[2021-08-24 09:48:54.907] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:54:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-08-24 09:48:54.907] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 866毫秒======
[2021-08-24 09:48:54.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:54.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:54.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-08-24 09:48:54:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:48:55 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\":88.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":32,\"activeTime\":\"2021-08-24 09:48:36\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-08-24 09:48:31\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":65610,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":5,\"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://t6-api-admin.apeiwan.com/api/v1/moneyDetails/save\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"88.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=88.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\":\"Tue, 24 Aug 2021 01:48:55 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:54:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 866毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"866毫秒","endTime":"2021-08-24 09:48:54","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:54","status":1}
[2021-08-24 09:48:55.162] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:55.162] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:55.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:55.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:55.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:55.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:55.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:56 GMT
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:55.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:55.676] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:55:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======
[2021-08-24 09:48:55.676] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:55.676] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:55.749] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:55.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:55.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:55.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:55.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:55.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:55.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:55.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:55.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-24 09:48:55.752] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:55.752] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-24 09:48:55.752] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:55.752] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:56 GMT
[2021-08-24 09:48:55.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:55.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:55.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:55.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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-08-24 09:48:53","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-08-24 09:48:32","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}
[2021-08-24 09:48:55.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:55.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:55.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/room/list
[2021-08-24 09:48:55.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:55.920] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/room/list
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1, userId=2203657}
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1&userId=2203657
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:55.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:56 GMT
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:55.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:55.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:55.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":0,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":0,"endRow":0,"list":[],"pageNum":1,"navigatePages":8,"total":0,"pages":1,"size":0,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-24 09:48:55.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:55.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:55.979] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomList--Test Mthod Success
[2021-08-24 09:48:55.980] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:55:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======
[2021-08-24 09:48:55.980] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 304毫秒======
[2021-08-24 09:48:55.980] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:55.980] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:55.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询房间","caseLog":"======2021-08-24 09:48:55:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:48: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-08-24 09:48:53\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-08-24 09:48:32\",\"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://t6-api-admin.apeiwan.com/api/v1/room/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:48:56 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":0,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":0,\"endRow\":0,\"list\":[],\"pageNum\":1,\"navigatePages\":8,\"total\":0,\"pages\":1,\"size\":0,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:55:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======\r\n======本次用例运行消耗时间 304毫秒======\r","caseName":"testRoomList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"304毫秒","endTime":"2021-08-24 09:48:55","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:55","status":1}
[2021-08-24 09:48:56.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:57 GMT
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:56.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:56.711] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:56:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】开始======
[2021-08-24 09:48:56.712] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/rask/manager/room/record
[2021-08-24 09:48:56.712] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:57.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:57.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:57.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/rask/manager/room/record
[2021-08-24 09:48:57.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:57.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:57.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:57.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:57.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:57.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-08-24 09:48:57.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:57.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-08-24 09:48:57.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:57.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:48:58 GMT
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:57.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:57.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:57.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询超管房间记录成功!","data":{"startRow":0,"lastPage":0,"navigatepageNums":[],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"record.enter_time desc","endRow":0,"list":[],"pageNum":1,"navigatePages":8,"total":0,"pages":0,"size":0,"firstPage":0,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-24 09:48:57.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:57.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:57.996] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomRecord--Test Mthod Success
[2021-08-24 09:48:57.997] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:48:57:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======
[2021-08-24 09:48:57.997] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒285毫秒======
[2021-08-24 09:48:57.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:57.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:57.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:57.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:57.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管巡查记录 /api/v1/rask/manager/room/record","caseLog":"======2021-08-24 09:48:56:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/rask/manager/room/record\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=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\":\"Tue, 24 Aug 2021 01:48:58 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询超管房间记录成功!\",\"data\":{\"startRow\":0,\"lastPage\":0,\"navigatepageNums\":[],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"record.enter_time desc\",\"endRow\":0,\"list\":[],\"pageNum\":1,\"navigatePages\":8,\"total\":0,\"pages\":0,\"size\":0,\"firstPage\":0,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-24 09:48:57:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======\r\n======本次用例运行消耗时间 01秒285毫秒======\r","caseName":"testRoomRecord","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒285毫秒","endTime":"2021-08-24 09:48:57","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:56","status":1}
[2021-08-24 09:48:59.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:59.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:59.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:48:59.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:59.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:59.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:48:59.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:48:59.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:48:59.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:48:59.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:59.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:48:59.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:00 GMT
[2021-08-24 09:48:59.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:48:59.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:59.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:59.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:48:59.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:59.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:59.741] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:48:59:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======
[2021-08-24 09:48:59.741] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:59.741] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:48:59.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:48:59.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:48:59.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:48:59.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:48:59.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:48:59.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:48:59.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:48:59.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:48:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-24 09:48:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:48:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-24 09:48:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:48:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:00 GMT
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:48:59.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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-08-24 09:48:53","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-08-24 09:48:32","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}
[2021-08-24 09:48:59.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:48:59.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:48:59.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-24 09:48:59.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:00.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:00.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:00.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-24 09:49:00.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:49:00.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:00.053] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:49:00.053] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:49:00.053] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:00.053] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=TEST119720, productId=393, userIds=2203657, timestamp=1621828487580}
[2021-08-24 09:49:00.053] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:00.053] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=TEST119720&productId=393&userIds=2203657×tamp=1621828487580
[2021-08-24 09:49:00.053] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:00.053] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:01 GMT
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:49:00.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:00.403] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:00.403] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPezKwxLlr0y01GgVbCZbNxMKFIoQ3y7K7Xg6/YNL2ctaXRZ9hYkLN/8PcSh0ZEBCE5OjCrf4dwupqUmBsYFFuyPpRvNbGzKIf6ld1huPz3Qw7SRD5i6dVQuNjrJnd0EekJDxuWj1PHSqBjrDgiYL+w1BlQm1uM5+vfrHuPlherU32NkWfM2i08Ubh+we/1dOTDsZm/224u3lDG5gpC+IZKN3oRqUrnm7Ee4pml5UAlOTGn7HfJSl4WtuuaiSESrgAEHQyp085rEjCl2puQKmvGMCwI442azk0galHCmAVEo/2OCV2eW8B9SctgtvlLga0rJMj+Kl3U08ByO6ODZZKp0xeihm5b6M8V6DFv8QAV7iIVFunje2lrqWDkyk/TbK8DxnKO1PgQXZh1uQJAYRZ9o52rU3LS7HhCUbIURCFaZvUm1MvY0navS99VsNJEAILHGbvNd9phpPow/xDwFrzTZ7xFArcVI3CfwDARcU/vVz57pFcmCZpbIobtsGth78AhLZ1UNQskdDO+EqhygkuYhs0G6GhJFhRekKnOuiICwSHFICSLHpQ8jW/EwpuNLS13XgO1UBQ6JFf4BDmSCiVyw","status":200}
[2021-08-24 09:49:00.403] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:00.403] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:00.404] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testSend--Test Mthod Success
[2021-08-24 09:49:00.404] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:49:00:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======
[2021-08-24 09:49:00.404] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 663毫秒======
[2021-08-24 09:49:00.404] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:00.404] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:00.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送礼物","caseLog":"======2021-08-24 09:48:59:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:49: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,\"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-08-24 09:48:53\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-08-24 09:48:32\",\"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://t6-api-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"TEST119720\",\"productId\":\"393\",\"userIds\":\"2203657\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=TEST119720&productId=393&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\":\"Tue, 24 Aug 2021 01:49:01 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPezKwxLlr0y01GgVbCZbNxMKFIoQ3y7K7Xg6/YNL2ctaXRZ9hYkLN/8PcSh0ZEBCE5OjCrf4dwupqUmBsYFFuyPpRvNbGzKIf6ld1huPz3Qw7SRD5i6dVQuNjrJnd0EekJDxuWj1PHSqBjrDgiYL+w1BlQm1uM5+vfrHuPlherU32NkWfM2i08Ubh+we/1dOTDsZm/224u3lDG5gpC+IZKN3oRqUrnm7Ee4pml5UAlOTGn7HfJSl4WtuuaiSESrgAEHQyp085rEjCl2puQKmvGMCwI442azk0galHCmAVEo/2OCV2eW8B9SctgtvlLga0rJMj+Kl3U08ByO6ODZZKp0xeihm5b6M8V6DFv8QAV7iIVFunje2lrqWDkyk/TbK8DxnKO1PgQXZh1uQJAYRZ9o52rU3LS7HhCUbIURCFaZvUm1MvY0navS99VsNJEAILHGbvNd9phpPow/xDwFrzTZ7xFArcVI3CfwDARcU/vVz57pFcmCZpbIobtsGth78AhLZ1UNQskdDO+EqhygkuYhs0G6GhJFhRekKnOuiICwSHFICSLHpQ8jW/EwpuNLS13XgO1UBQ6JFf4BDmSCiVyw\",\"status\":200}\r\n===================================\r\n======2021-08-24 09:49:00:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======\r\n======本次用例运行消耗时间 663毫秒======\r","caseName":"testSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"663毫秒","endTime":"2021-08-24 09:49:00","id":0,"serviceId":1,"startTime":"2021-08-24 09:48:59","status":1}
[2021-08-24 09:49:00.639] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:00.639] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:00.640] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:49:00.640] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:00.640] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:00.640] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:49:00.640] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:49:00.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:49:00.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:49:00.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:00.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:49:00.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:01 GMT
[2021-08-24 09:49:00.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:49:00.642] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:00.642] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:00.642] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:49:00.642] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:00.642] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:01.159] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:49:01:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======
[2021-08-24 09:49:01.160] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-08-24 09:49:01.160] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:01.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:01.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:01.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-08-24 09:49:01.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:49:01.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:01.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:49:01.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:49:01.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:01.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=TEST119720, type=2}
[2021-08-24 09:49:01.243] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:01.243] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=TEST119720&type=2
[2021-08-24 09:49:01.243] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:01.243] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:49:01.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:01.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:01.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:49:01.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:01.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:01.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:49:01.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:01.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:49:01.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:02 GMT
[2021-08-24 09:49:01.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:49:01.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:01.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:01.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":[],"status":200}
[2021-08-24 09:49:01.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:01.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:01.386] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpList--Test Mthod Success
[2021-08-24 09:49:01.386] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:49:01:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======
[2021-08-24 09:49:01.386] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 227毫秒======
[2021-08-24 09:49:01.386] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:01.386] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:01.387] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取上麦、试音申请列表数据","caseLog":"======2021-08-24 09:49:01:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-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-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"TEST119720\",\"type\":\"2\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=TEST119720&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\":\"Tue, 24 Aug 2021 01:49:02 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":[],\"status\":200}\r\n===================================\r\n======2021-08-24 09:49:01:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======\r\n======本次用例运行消耗时间 227毫秒======\r","caseName":"testUpList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"227毫秒","endTime":"2021-08-24 09:49:01","id":0,"serviceId":1,"startTime":"2021-08-24 09:49:01","status":1}
[2021-08-24 09:49:01.717] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:01.717] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:02 GMT
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:01.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:02.228] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:49:02:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======
[2021-08-24 09:49:02.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-08-24 09:49:02.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:02.360] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:02.361] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:02.361] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-08-24 09:49:02.362] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:49:02.362] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:02.362] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:49:02.362] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:49:02.362] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:02.362] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {types=2, roomNo=TEST119720}
[2021-08-24 09:49:02.363] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:02.363] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - types=2&roomNo=TEST119720
[2021-08-24 09:49:02.363] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:02.363] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:03 GMT
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"2":{"alreadyInList":false,"people":0}},"status":200}
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:02.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:02.481] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpSize--Test Mthod Success
[2021-08-24 09:49:02.481] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:49:02:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======
[2021-08-24 09:49:02.481] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 253毫秒======
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:49:02.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:02.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:49:02.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:02.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取聊天室内上麦试音队列、点单队列等","caseLog":"======2021-08-24 09:49:02:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-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-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"types\":\"2\",\"roomNo\":\"TEST119720\"}\r\n###Http Request queryString after URLEncoder### :\r\ntypes=2&roomNo=TEST119720\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\":\"Tue, 24 Aug 2021 01:49:03 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-08-24 09:49:02:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======\r\n======本次用例运行消耗时间 253毫秒======\r","caseName":"testUpSize","className":"com.pipi.invoker.CosPlayerTest","durationTime":"253毫秒","endTime":"2021-08-24 09:49:02","id":0,"serviceId":1,"startTime":"2021-08-24 09:49:02","status":1}
[2021-08-24 09:49:02.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:02.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:02.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:49:02.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:02.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:02.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:49:02.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:49:02.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:49:02.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:49:02.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:02.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:49:02.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:03 GMT
[2021-08-24 09:49:02.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:49:02.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:02.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:02.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:49:02.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:02.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:03.239] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:49:03:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======
[2021-08-24 09:49:03.239] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:49:03.239] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-24 09:49:03.354] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:03.355] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-24 09:49:03.355] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:03.355] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:49:03.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:03.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:03.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:49:03.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:03.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:03.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:49:03.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:03.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:49:03.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:04 GMT
[2021-08-24 09:49:03.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:49:03.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:03.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:03.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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":89.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":32,"activeTime":"2021-08-24 09:48:36","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-08-24 09:48:31","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":65610,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":5,"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}
[2021-08-24 09:49:03.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:03.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:03.446] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUserList--Test Mthod Success
[2021-08-24 09:49:03.446] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:49:03:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======
[2021-08-24 09:49:03.446] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 207毫秒======
[2021-08-24 09:49:03.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:03.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:03.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"用户信息","caseLog":"======2021-08-24 09:49:03:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:49: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\":89.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":32,\"activeTime\":\"2021-08-24 09:48:36\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-08-24 09:48:31\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":65610,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":5,\"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-08-24 09:49:03:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======\r\n======本次用例运行消耗时间 207毫秒======\r","caseName":"testUserList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"207毫秒","endTime":"2021-08-24 09:49:03","id":0,"serviceId":1,"startTime":"2021-08-24 09:49:03","status":1}
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:05 GMT
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:04.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:04.993] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:49:04:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-08-24 09:49:04.993] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:49:04.993] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:05.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:49:05.148] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:06 GMT
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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":89.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":32,"activeTime":"2021-08-24 09:48:36","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-08-24 09:48:31","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":65610,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":5,"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}
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-08-24 09:49:05.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:05.239] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1000, remark=1, type=1, userId=2203773}
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1000&remark=1&type=1&userId=2203773
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:05.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:06 GMT
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-08-24 09:49:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:05.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:05.865] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testVirtualMoneyModify--Test Mthod Success
[2021-08-24 09:49:05.866] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:49:05:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-08-24 09:49:05.866] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 873毫秒======
[2021-08-24 09:49:05.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:05.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:05.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-08-24 09:49:04:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:49:06 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\":89.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":32,\"activeTime\":\"2021-08-24 09:48:36\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-08-24 09:48:31\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":65610,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":5,\"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://t6-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:49:06 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-08-24 09:49:05:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 873毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"873毫秒","endTime":"2021-08-24 09:49:05","id":0,"serviceId":1,"startTime":"2021-08-24 09:49:04","status":1}
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:07 GMT
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:49:06.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:06.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:06.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:49:06.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:06.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:06.530] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:49:06:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======
[2021-08-24 09:49:06.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-08-24 09:49:06.531] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:06.634] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:06.634] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-0831f07f611c42a3a4797648165c759d#2203773
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {activityId=71, times=1, roomNo=TEST119720, timestamp=1621828487580}
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - activityId=71×=1&roomNo=TEST119720×tamp=1621828487580
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:06.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:08 GMT
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:07.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"开宝箱成功!","data":"9tfkrbYYmDmz9adgbEKM4BoR71hyVavX7FV0xdo5t+4Jq04QjbHqghqU4d6duMOaj2qazCz6Lo4NSiln8O8awCGcajuaOUJvWUsOJgupSiBPMXjqWv6vESUdQxGqbV9//o1yb6d3lDEtQn6SRXBnv8nRcTouGHxdIANn0Ed15AcLxYmwVy+DbtigmLo6ewv/VAkDXCSic0UWMBvk89dtI4+co/c6pmxGWR4cXUzwtcv4HUReysFXndGq2ygnpVec9nahqtLs3ou2nrVc/sAuLRAJdwO96CpjlGKHzclHfgGpAMq+XpAJAsnoi4JfQHT6StWwo3u+2MicExYxfvOx4nWL+HJq00Jdx3GKPx60KNjehGpSuebsR7imaXlQCU5Mafsd8lKXha265qJIRKuAAVimpCeQ9DSXLAckyrZA0T/r2bEaddoGGoS8qWCAPtqoJyE0nzd+ZMqITaXbTSc/jHEN/daxwjKc2ykEEV4qIHWr6D0d65D/roHBfmXvJqlKjBp0UnIllGB3EUFd5WQGAKac5HfFK94Cblmc4VBZiUWyo7wpbAx8Vs4qPFM5EmuTZyEwjx8IUrxpmK4xH+e46Vz+y2Huk3ppaLVaGSVH8avoErQuhoPlV7uGU3sE2kwyeHQDrRe+HIZ5Of9TAhG9D7RcJ/SEO4hwmSjWhZOQgtIR081FMHf9nOq564bD0SZa","status":200}
[2021-08-24 09:49:07.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:07.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:07.841] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testLotteryActivity--Test Mthod Success
[2021-08-24 09:49:07.842] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-24 09:49:07:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======
[2021-08-24 09:49:07.842] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒312毫秒======
[2021-08-24 09:49:07.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:07.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:07.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"开宝箱","caseLog":"======2021-08-24 09:49:06:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-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-0831f07f611c42a3a4797648165c759d#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"activityId\":\"71\",\"times\":\"1\",\"roomNo\":\"TEST119720\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactivityId=71×=1&roomNo=TEST119720×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\":\"Tue, 24 Aug 2021 01:49:08 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"开宝箱成功!\",\"data\":\"9tfkrbYYmDmz9adgbEKM4BoR71hyVavX7FV0xdo5t+4Jq04QjbHqghqU4d6duMOaj2qazCz6Lo4NSiln8O8awCGcajuaOUJvWUsOJgupSiBPMXjqWv6vESUdQxGqbV9//o1yb6d3lDEtQn6SRXBnv8nRcTouGHxdIANn0Ed15AcLxYmwVy+DbtigmLo6ewv/VAkDXCSic0UWMBvk89dtI4+co/c6pmxGWR4cXUzwtcv4HUReysFXndGq2ygnpVec9nahqtLs3ou2nrVc/sAuLRAJdwO96CpjlGKHzclHfgGpAMq+XpAJAsnoi4JfQHT6StWwo3u+2MicExYxfvOx4nWL+HJq00Jdx3GKPx60KNjehGpSuebsR7imaXlQCU5Mafsd8lKXha265qJIRKuAAVimpCeQ9DSXLAckyrZA0T/r2bEaddoGGoS8qWCAPtqoJyE0nzd+ZMqITaXbTSc/jHEN/daxwjKc2ykEEV4qIHWr6D0d65D/roHBfmXvJqlKjBp0UnIllGB3EUFd5WQGAKac5HfFK94Cblmc4VBZiUWyo7wpbAx8Vs4qPFM5EmuTZyEwjx8IUrxpmK4xH+e46Vz+y2Huk3ppaLVaGSVH8avoErQuhoPlV7uGU3sE2kwyeHQDrRe+HIZ5Of9TAhG9D7RcJ/SEO4hwmSjWhZOQgtIR081FMHf9nOq564bD0SZa\",\"status\":200}\r\n===================================\r\n======2021-08-24 09:49:07:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======\r\n======本次用例运行消耗时间 01秒312毫秒======\r","caseName":"testLotteryActivity","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒312毫秒","endTime":"2021-08-24 09:49:07","id":0,"serviceId":1,"startTime":"2021-08-24 09:49:06","status":1}
[2021-08-24 09:49:07.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:07.984] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:08 GMT
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:07.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:08.493] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:49:08:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======
[2021-08-24 09:49:08.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:49:08.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:08.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:08.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2e237848f5684cd5845056014821c074
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:08.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:09 GMT
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:08.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:08.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"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":89.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":32,"activeTime":"2021-08-24 09:48:36","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-08-24 09:48:31","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":65944,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":5,"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}
[2021-08-24 09:49:08.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:08.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:08.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-08-24 09:49:08.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-7c0e84dee3354becb7a09a669e50688a#2203657
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {userId=2203773}
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - userId=2203773
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:08.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:10 GMT
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"该用户不在您的公会中","status":500}
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:09.186] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:09.188] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testRemove--Test Mthod Failure
[2021-08-24 09:49:09.188] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-24 09:49:09:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======
[2021-08-24 09:49:09.188] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 695毫秒======
[2021-08-24 09:49:09.188] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:09.188] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:09.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"将成员从公会移除","caseLog":"======2021-08-24 09:49:08:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2e237848f5684cd5845056014821c074\",\"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\":\"Tue, 24 Aug 2021 01:49:09 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\":89.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":32,\"activeTime\":\"2021-08-24 09:48:36\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-08-24 09:48:31\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":65944,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":5,\"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://t6-guild-api.apeiwan.com/api/v2/guild-member/remove\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-7c0e84dee3354becb7a09a669e50688a#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\":\"Tue, 24 Aug 2021 01:49:10 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"该用户不在您的公会中\",\"status\":500}\r\n===================================\r\n======2021-08-24 09:49:09:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======\r\n======本次用例运行消耗时间 695毫秒======\r","caseMessage":"java.lang.AssertionError: expected [200] but found [500]\r\n\tat org.testng.Assert.fail(Assert.java:94)\r\n\tat org.testng.Assert.failNotEquals(Assert.java:513)\r\n\tat org.testng.Assert.assertEqualsImpl(Assert.java:135)\r\n\tat org.testng.Assert.assertEquals(Assert.java:116)\r\n\tat org.testng.Assert.assertEquals(Assert.java:389)\r\n\tat org.testng.Assert.assertEquals(Assert.java:399)\r\n\tat com.pipi.invoker.CosPlayerTest.testRemove(CosPlayerTest.java:172)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\n","caseName":"testRemove","className":"com.pipi.invoker.CosPlayerTest","durationTime":"695毫秒","endTime":"2021-08-24 09:49:09","id":0,"serviceId":1,"startTime":"2021-08-24 09:49:08","status":2}
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:10 GMT
[2021-08-24 09:49:09.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:49:09.689] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:09.689] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:09.689] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:49:09.689] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:09.689] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testLotteryActivity
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetMine
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMoneyDetailsSave
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomList
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testVirtualMoneyModify
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUserList
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple2
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomRecord
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpSize
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testSend
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserBalance
[2021-08-24 09:49:14.721] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGethome
[2021-08-24 09:49:14.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGuildSearch
[2021-08-24 09:49:14.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testManagerList
[2021-08-24 09:49:14.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpList
[2021-08-24 09:49:14.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testAuditGuild
[2021-08-24 09:49:14.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testRemove
[2021-08-24 09:49:14.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:18
[2021-08-24 09:49:14.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:2
[2021-08-24 09:49:14.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-24 09:49:14.727] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-24 09:49:14.729] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-24 09:49:14.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-24 09:49:14.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:49:14.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"46秒796毫秒","endTime":"2021-08-24 09:49:14","env":"t6","failed":2,"id":0,"passed":18,"serviceId":1,"skipped":0,"startTime":"2021-08-24 09:48:27","status":2,"teamId":0,"total":20}
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:49:20 GMT
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:49:19.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:49:19.132] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-24 09:49:14:测试集结束======
[2021-08-24 09:49:19.132] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 46秒796毫秒======
[2021-08-24 09:50:15.487] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-24 09:50:15.549] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-24 09:50:15:测试集开始======
[2021-08-24 09:50:15.754] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.PropUtil:51] - 配置项 dbConnectionURL 不存在,请检查配置!
[2021-08-24 09:50:15.765] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/login
[2021-08-24 09:50:15.766] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:50:15.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:50:15.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:50:15.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/login
[2021-08-24 09:50:15.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:50:15.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:50:15.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:50:15.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:50:15.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-08-24 09:50:15.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:50:15.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-08-24 09:50:15.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:50:15.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:50:15.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:50:15.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:50:15.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:50:15.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:50:16 GMT
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"66df77af1d0f4334a6fe6c04d3a4809b","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-08-24 09:50:15.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:50:15.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:50:15.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/sms/verify
[2021-08-24 09:50:15.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:50:16.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:50:16.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/sms/verify
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:50:16.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:50:16.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:50:16.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:50:16.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:50:17 GMT
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:50:16.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:50:16.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/login
[2021-08-24 09:50:16.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:50:16.261] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/login
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:50:16.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:50:16.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:50:16.892] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:50:16.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:50:16.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:50:16.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:50:16.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:50:16.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:50:16.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-24 09:50:16.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:50:17 GMT
[2021-08-24 09:50:16.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:50:16.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:50:16.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:50:16.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"137730220","nickname":"test","id":2203773,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","imId":"2203773_20210708","token":"APP-7f6e1fac2563471a87fefc0f1f6f3221#2203773","createTime":"2021-07-08 10:33:13","newUser":false,"status":1},"status":200}
[2021-08-24 09:50:16.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:50:16.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:50:16.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/sms/verify
[2021-08-24 09:50:16.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:50:16.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/sms/verify
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:50:16.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:50:17.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:50:17.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:50:17.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:50:17.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:50:17.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:50:17.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:50:18 GMT
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/login
[2021-08-24 09:50:17.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:50:17.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:50:17.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:50:17.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/login
[2021-08-24 09:50:17.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:50:17.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:50:17.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:50:17.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:50:17.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-24 09:50:17.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:50:17.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-24 09:50:17.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:50:17.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:50:17.857] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:50:17.857] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:50:17.857] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:50:17.857] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:50:17.857] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:50:18 GMT
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"175630220","nickname":"test","id":2203657,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","imId":"2203657_20210524","token":"APP-0fcdbb53c7f54d43982c416401127fee#2203657","createTime":"2021-05-24 14:01:01","newUser":false,"status":1},"status":200}
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:50:17.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:50:17.865] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-24 09:50:17:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-08-24 09:50:17.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-24 09:50:17.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:50:18.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:50:18.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:50:18.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-24 09:50:18.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:50:18.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:50:18.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-7f6e1fac2563471a87fefc0f1f6f3221#2203773
[2021-08-24 09:50:18.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:50:18.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:50:18.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18376254}
[2021-08-24 09:50:18.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:50:18.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18376254
[2021-08-24 09:50:18.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:50:18.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:50:18.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:50:18.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:50:18.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:50:18.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:50:18.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:50:18.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:50:18.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:50:18.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:50:18.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:50:19 GMT
[2021-08-24 09:50:18.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:50:18.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:50:18.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:50:18.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":0,"lastPage":0,"navigatepageNums":[],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":0,"list":[],"pageNum":1,"navigatePages":8,"total":0,"pages":0,"size":0,"firstPage":0,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-24 09:50:18.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:50:18.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:50:18.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-08-24 09:50:18.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:50:18.903] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:66df77af1d0f4334a6fe6c04d3a4809b
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=999999, guildCode=18376254, pageNum=1}
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=999999&guildCode=18376254&pageNum=1
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:50:18.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-24 09:50:18.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:50:18.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:50:18.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-24 09:50:18.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:50:18.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:50:18.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-24 09:50:18.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:50:18.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-24 09:50:18.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:50:19 GMT
[2021-08-24 09:50:18.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-24 09:50:18.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:50:18.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:50:18.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":0,"lastPage":0,"navigatepageNums":[],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":999999,"endRow":0,"list":[],"pageNum":1,"navigatePages":8,"total":0,"pages":0,"size":0,"firstPage":0,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-24 09:50:18.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:50:18.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:50:18.992] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testAuditGuild--Test Mthod Failure
[2021-08-24 09:50:18.992] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-24 09:50:18:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-08-24 09:50:18.992] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 01秒127毫秒======
[2021-08-24 09:50:19.003] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:50:19.004] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:50:19.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-08-24 09:50:17:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-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-7f6e1fac2563471a87fefc0f1f6f3221#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18376254\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18376254\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\":\"Tue, 24 Aug 2021 01:50:19 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":0,\"lastPage\":0,\"navigatepageNums\":[],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":0,\"list\":[],\"pageNum\":1,\"navigatePages\":8,\"total\":0,\"pages\":0,\"size\":0,\"firstPage\":0,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/guild-center/guild/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"66df77af1d0f4334a6fe6c04d3a4809b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":999999,\"guildCode\":\"18376254\",\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=999999&guildCode=18376254&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\":\"Tue, 24 Aug 2021 01:50:19 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":0,\"lastPage\":0,\"navigatepageNums\":[],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":999999,\"endRow\":0,\"list\":[],\"pageNum\":1,\"navigatePages\":8,\"total\":0,\"pages\":0,\"size\":0,\"firstPage\":0,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-24 09:50:18:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 01秒127毫秒======\r","caseMessage":"java.lang.IndexOutOfBoundsException: Index: 0, Size: 0\r\n\tat java.util.ArrayList.rangeCheck(ArrayList.java:657)\r\n\tat java.util.ArrayList.get(ArrayList.java:433)\r\n\tat com.alibaba.fastjson.JSONArray.get(JSONArray.java:189)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.guildList(CosPlyaPlayerServiceImpl.java:466)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.auditGuild(CosPlyaPlayerServiceImpl.java:714)\r\n\tat com.pipi.invoker.CosPlayerTest.testAuditGuild(CosPlayerTest.java:144)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\n","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒127毫秒","endTime":"2021-08-24 09:50:18","id":0,"serviceId":1,"startTime":"2021-08-24 09:50:17","status":2}
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:50:22 GMT
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:50:21.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:50:21.119] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:50:26.150] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testAuditGuild
[2021-08-24 09:50:26.150] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-08-24 09:50:26.150] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:1
[2021-08-24 09:50:26.150] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-24 09:50:26.153] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-24 09:50:26.154] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-24 09:50:26.158] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-24 09:50:26.158] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-24 09:50:26.159] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-24 09:50:26.159] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-24 09:50:26.159] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-24 09:50:26.159] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-24 09:50:26.159] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-24 09:50:26.159] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-24 09:50:26.159] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-24 09:50:26.159] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-24 09:50:26.159] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-24 09:50:26.160] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-24 09:50:26.160] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-24 09:50:26.160] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"10秒601毫秒","endTime":"2021-08-24 09:50:26","env":"t6","failed":1,"id":0,"passed":0,"serviceId":1,"skipped":0,"startTime":"2021-08-24 09:50:15","status":2,"teamId":0,"total":1}
[2021-08-24 09:50:26.535] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-24 09:50:26.535] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 24 Aug 2021 01:50:27 GMT
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-24 09:50:26.536] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-24 09:50:26.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-24 09:50:26.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-24 09:50:26.537] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-24 09:50:26:测试集结束======
[2021-08-24 09:50:26.537] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 10秒601毫秒======