debug.log.2021-07-06
591 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
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
[2021-07-06 10:40:46.499] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-07-06 10:40:46.562] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-07-06 10:40:46:测试集开始======
[2021-07-06 10:40:46.763] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 10:40:46:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-07-06 10:40:46.769] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:46.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:49.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:49.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:49.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:49.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:49.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:49.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:49.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:49.090] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-07-06 10:40:49.090] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:49.090] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-07-06 10:40:49.090] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:49.090] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:49.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:49.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:49.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:49.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:49.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:49.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:49.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:49.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-07-06 10:40:49.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:49 GMT
[2021-07-06 10:40:49.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:49.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:49.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:49.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"ca83c4fe9ef549269b121587fba37a2b","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-07-06 10:40:49.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:49.355] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:49.356] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-06 10:40:49.356] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:49.423] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:49.423] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:49.423] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-06 10:40:49.423] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:49.423] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:49.424] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:ca83c4fe9ef549269b121587fba37a2b
[2021-07-06 10:40:49.424] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:49.424] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:49.424] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-07-06 10:40:49.424] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:49.424] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-07-06 10:40:49.424] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:49.424] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:49.781] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:49.781] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:49.781] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:49.781] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:49.782] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:49.782] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:49.782] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:49.782] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:49.782] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:49 GMT
[2021-07-06 10:40:49.782] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:49.782] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:49.782] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:49.782] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":3,"navigatepageNums":[1,2,3],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"remark":"u酒啊就快点开门v出来ASDK学雷锋马上到了放大看了几个v阿莱克斯发过来KLFCJKVLSJFDLKJGBAL;KFSJGLKAFSJLGFJKLVFLJDLSAJFLKDSJGKLJFKGLJFAKLGJKFGHJKFHGJK按规划设计考虑对方看来是度过快乐圣诞节KFJGLAKSDJGKLSDJGKL大家回到国家队和关键环节党和国家SHJKFJGKADK加快进度是关键是第几个拉萨大家发快递给","staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/5/935416754399472994fe59692322e010.png","delFlag":false,"operatorName":"李必伟","openType":1,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/18/1ca6cae385284f68ac14ae0327dd34d4.png\",\"decorationId\":417,\"decorationName\":\"520聊天室气泡\"}","lotteryRules":"[{\"amount\":55,\"isReward\":0,\"probability\":25,\"isNotice\":1,\"name\":\"热度值礼物-三鲜豆皮*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/29/0a6a5a35615245e6ac2ca0d3346ba6e8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1490}]","id":200,"operatorId":219,"openRewardDiamonds":0,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/5/d54f863cdbdc4b198bf1b8f3894e5a1b.svga","updateTime":"2021-07-05 16:26:55","sort":999,"labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/5/888bfa6d02f34f58976e5c342bc79028.png","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/5/5d2baa946966453e9b7629918e10ec07.webp","remainLotteryDiamonds":55,"openPayDiamonds":0,"createTime":"2021-07-05 13:52:26","name":"的方式度过发生的噶阿三","remainLotteryCount":1,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"1\",\"times\":\"1\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":25198,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\",\"decorationId\":365,\"decorationName\":\"萌小兔座位框\"}","lotteryRules":"[{\"amount\":210,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿瓶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5fa24da0548944d28cbd6cb2aea0617a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1427},{\"amount\":266,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1428},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1429},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1430},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/8b79080ee17d4e4f98a37dee5d6e1d25.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1431},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1432},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1433},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1434},{\"amount\":66666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-时光之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/d2db47083eaa40de9c8b324bc41ea564.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1435},{\"amount\":18888,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-爱恋之城\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/1b3cae6c924b4c8db2cf70e00435f18a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1436}]","id":189,"operatorId":25,"rewardLotteryCount":25198,"openRewardDiamonds":22563247,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:26","sort":121,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":1023301,"openPayDiamonds":0,"createTime":"2021-05-24 12:04:17","name":"梦幻糖果机","remainLotteryCount":794,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":216285,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\",\"decorationId\":224,\"decorationName\":\"绚烂阳光座位框\"}","lotteryRules":"[{\"amount\":21,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-蓝色焰火*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1414},{\"amount\":30,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-小礼花*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1415},{\"amount\":52,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-点赞*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1416},{\"amount\":66,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-乐符*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/b436e56b9f7e4c6aab4d9318e3221362.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1417},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-水晶瓶*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/3de3e42108db46f08eecf50a073cff90.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1418},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天鹅之恋*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1419},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天生一对*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1420},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-一生有你*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/65e3617e22f545ec887c66f02d1a7a6f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1421},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-为你摘星*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/e19bacb19bfa46f481bb8c16dc02747e.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1422},{\"amount\":2000,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-梦幻奇遇*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/6b487a5275984ba1a779fa5436c88d19.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1423}]","id":188,"operatorId":25,"rewardLotteryCount":216285,"openRewardDiamonds":19093404,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:19","sort":120,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":172431,"openPayDiamonds":0,"createTime":"2021-05-24 11:55:16","name":"甜心糖果机","remainLotteryCount":1556,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":5,"staticUrl":"null","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小开心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1289},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小蛋糕*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f23a2d65b84444afba2fa0c518793e48.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1290},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小嘎嘎*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/00527efdb7514484acd8f91740244781.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1291},{\"amount\":5,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-鼓掌*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1292}]","id":157,"operatorId":34,"rewardLotteryCount":5,"openRewardDiamonds":5,"objectGifUrl":"null","updateTime":"2021-04-28 16:21:39","sort":113,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":775,"openPayDiamonds":0,"createTime":"2021-04-28 14:38:56","name":"梦幻测试","remainLotteryCount":295,"activityType":1,"priceRules":"[{\"price\":\"2\",\"times\":\"1\"},{\"price\":\"10\",\"times\":\"5\"},{\"price\":\"20\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":47,"delFlag":false,"operatorName":"章宇","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-甜甜草莓*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1285},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-荧光棒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/19/22ef4d05f54a4b3298d8c12cdb2bae19.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1286},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-萤火虫*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1287},{\"amount\":7,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-小花朵*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1288}]","id":156,"operatorId":25,"rewardLotteryCount":47,"openRewardDiamonds":81,"sort":111,"remainLotteryDiamonds":1599,"openPayDiamonds":0,"createTime":"2021-04-28 14:37:13","name":"甜心测试","remainLotteryCount":353,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"4/23日刷新","openedTimes":3449320,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/7c31798619334da792fff5279b8ec7bf.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/33a2ea85233149debbfcb2cfc19e0b67.png","lotteryActivityId":152,"createTime":"2021-06-16 10:06:26","id":127,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1241},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1240},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1239},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1238},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1237},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1236},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小可乐\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/9ce71421d70d47b099995395e9e330d9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1235},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-四叶草\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1234},{\"amount\":7,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小花朵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1233},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1232},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1231},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小开心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1230}]","id":152,"operatorId":34,"rewardLotteryCount":3449320,"openRewardDiamonds":34507957,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga","updateTime":"2021-06-16 10:06:26","sort":60,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e228e5a2414145809b4abc41efacbbba.webp","remainLotteryDiamonds":3420,"openPayDiamonds":34493160,"createTime":"2021-04-23 18:20:19","name":"普通宝箱","remainLotteryCount":316,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4/23日刷新","openedTimes":282123,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/717f1ee388b24e38b5888485e5299472.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c42f032ebb9f43ff81a127d8bd4b1a19.png","lotteryActivityId":153,"createTime":"2021-06-16 10:06:45","id":128,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=153&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1253},{\"amount\":1066,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-好运锦鲤\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1252},{\"amount\":990,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-心愿许愿池\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1251},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1250},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1249},{\"amount\":222,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-感恩豹豹\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1248},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天鹅之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1247},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1246},{\"amount\":122,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-告白气球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1244},{\"amount\":106,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1243},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-幸运铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1242},{\"amount\":15000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-魔法城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1256},{\"amount\":10000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-暗夜城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1255},{\"amount\":3000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-星辰之钥\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1254},{\"amount\":135,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-木碗星空*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e0549adc52ff4c1394cf3d41bad12237.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1284}]","id":153,"operatorId":34,"rewardLotteryCount":282123,"openRewardDiamonds":63157640,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga","updateTime":"2021-06-16 10:06:45","sort":59,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/bba8816d05324864bdbd80ca475525ae.webp","remainLotteryDiamonds":659104,"openPayDiamonds":59243730,"createTime":"2021-04-23 18:37:26","name":"白银宝箱","remainLotteryCount":3013,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":155483,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/b97af0eb6d784dad9557d4f4c734fc2d.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da468049c9a4df7aea562239b93bdab.png","lotteryActivityId":154,"createTime":"2021-06-16 10:06:53","id":129,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=gold&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\",\"decorationId\":231,\"decorationName\":\"耀金座位框\"}","lotteryRules":"[{\"amount\":33440,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-深海精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/05b37aede2014994a3094c7ccab4e55a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1268},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1267},{\"amount\":2998,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-花开万物\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6145fc5f4bb24a99a972764527999da7.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1266},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1265},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-圆梦精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/0a49819db4d542c1be74f52fe72def0f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1264},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1263},{\"amount\":666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/4/4c21272581fa4bb9aca4c0df6567a70e.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1262},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1261},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-天生一对\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1260},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1259},{\"amount\":300,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-飞鸽传书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9d32f897dcf34ff6948cff77d3ebb30c.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1258},{\"amount\":222,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-广寒月\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9f34c21030404601aaacfebea908f7ee.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1257}]","id":154,"operatorId":34,"rewardLotteryCount":155483,"openRewardDiamonds":108141243,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga","updateTime":"2021-06-16 10:06:53","sort":58,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/d31522c02db2434d9879a0f60005092b.webp","remainLotteryDiamonds":303863,"openPayDiamonds":103551678,"createTime":"2021-04-23 18:49:41","name":"黄金宝箱","remainLotteryCount":501,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":209626,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/ed1d7bf6ce3347a7b7d57ae1196b6e23.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/873b5a8b240349fb8c310d314e6fb32b.png","lotteryActivityId":155,"createTime":"2021-06-16 10:07:01","id":130,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=magic&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\",\"decorationId\":232,\"decorationName\":\"幻尊座位框\"}","lotteryRules":"[{\"amount\":58888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-浴火凤凰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f6c6128dfdaf400384125602fc516504.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1280},{\"amount\":9999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-毁灭魔法\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0b8db93fb99d445d8cd18923b759669a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1279},{\"amount\":8888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-战神之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f3f840c6159c42ec8e25d86328d0555c.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1278},{\"amount\":6666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恶魔之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/4e0febbdd402462b841d34a92949e667.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1277},{\"amount\":1688,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天使之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/498d1b0089e84308801095724e0593e6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1276},{\"amount\":1199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-白马王子\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/68e1039b32da4dd080a339e25529a9ff.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1275},{\"amount\":999,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-破茧成蝶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6c65021c3fab48ba949b9036b448dc1a.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1274},{\"amount\":568,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鎏金百合\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2601a655d29e4f74954aa67919557d53.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1273},{\"amount\":455,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔法手杖\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/7/21/2a8944054a554632b62c4cc7d7a076b4.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1272},{\"amount\":388,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔力娃娃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e6600ac593bc4ae88b95049bca873fd6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1271},{\"amount\":299,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-万箭穿心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/5b77d17b7a9c4c75a36286771eaedac9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1270},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-紫惊雷\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/44cf7b20185742fea258deffe6f11e45.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1269}]","id":155,"operatorId":34,"rewardLotteryCount":209626,"openRewardDiamonds":207985913,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga","updateTime":"2021-06-16 10:07:01","sort":57,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c467ccae646a4904bf580e3f2baffbb8.webp","remainLotteryDiamonds":653802,"openPayDiamonds":209416374,"createTime":"2021-04-23 19:19:29","name":"魔幻宝箱","remainLotteryCount":343,"activityType":1,"priceRules":"[{\"price\":\"999\",\"times\":\"1\"},{\"price\":\"4995\",\"times\":\"5\"},{\"price\":\"9990\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4月7日刷新","openedTimes":2574673,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/7f480df733a64dbcb2e0a1d61da99295.png","delFlag":false,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/4da3ee04c91e42249905d614d2d14627.png","lotteryActivityId":149,"createTime":"2021-04-24 20:39:54","id":74,"content":"","activityH5Url":"https://h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1185},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1184},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1183},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1182},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1181},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1180},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-心相印\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1179},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿星\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/cb68fc35ea3e42d6bf7b4149ecb9d91b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1178},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小心心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/364b732988a64d1aa4c7d6e4594607fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1177},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1176},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1175},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-甜甜草莓\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1174}]","id":149,"operatorId":139,"rewardLotteryCount":2574673,"openRewardDiamonds":25548878,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/580c3d76e85c42eaaf6cde0a4a8038fd.svga","updateTime":"2021-04-24 20:39:55","sort":53,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/a49899ab5cb44bd6a659e8244ca1d0a3.webp","remainLotteryDiamonds":13372,"openPayDiamonds":25746730,"createTime":"2021-04-07 10:49:04","name":"普通宝箱","remainLotteryCount":1288,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0}],"pageNum":1,"navigatePages":8,"total":29,"pages":3,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-06 10:40:49.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:49.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:49.787] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-07-06 10:40:49.788] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 10:40:49:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-07-06 10:40:49.788] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 03秒025毫秒======
[2021-07-06 10:40:49.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 10:40:49.804] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:49.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-07-06 10:40:46:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=MXFhejJ3c3gzZWRj&username=chengjie\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Tue, 06 Jul 2021 02:40:49 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"ca83c4fe9ef549269b121587fba37a2b\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"ca83c4fe9ef549269b121587fba37a2b\",\"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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 06 Jul 2021 02:40:49 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":3,\"navigatepageNums\":[1,2,3],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"remark\":\"u酒啊就快点开门v出来ASDK学雷锋马上到了放大看了几个v阿莱克斯发过来KLFCJKVLSJFDLKJGBAL;KFSJGLKAFSJLGFJKLVFLJDLSAJFLKDSJGKLJFKGLJFAKLGJKFGHJKFHGJK按规划设计考虑对方看来是度过快乐圣诞节KFJGLAKSDJGKLSDJGKL大家回到国家队和关键环节党和国家SHJKFJGKADK加快进度是关键是第几个拉萨大家发快递给\",\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/5/935416754399472994fe59692322e010.png\",\"delFlag\":false,\"operatorName\":\"李必伟\",\"openType\":1,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/18/1ca6cae385284f68ac14ae0327dd34d4.png\\\",\\\"decorationId\\\":417,\\\"decorationName\\\":\\\"520聊天室气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":55,\\\"isReward\\\":0,\\\"probability\\\":25,\\\"isNotice\\\":1,\\\"name\\\":\\\"热度值礼物-三鲜豆皮*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/29/0a6a5a35615245e6ac2ca0d3346ba6e8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1490}]\",\"id\":200,\"operatorId\":219,\"openRewardDiamonds\":0,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/5/d54f863cdbdc4b198bf1b8f3894e5a1b.svga\",\"updateTime\":\"2021-07-05 16:26:55\",\"sort\":999,\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/5/888bfa6d02f34f58976e5c342bc79028.png\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/5/5d2baa946966453e9b7629918e10ec07.webp\",\"remainLotteryDiamonds\":55,\"openPayDiamonds\":0,\"createTime\":\"2021-07-05 13:52:26\",\"name\":\"的方式度过发生的噶阿三\",\"remainLotteryCount\":1,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":25198,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\\\",\\\"decorationId\\\":365,\\\"decorationName\\\":\\\"萌小兔座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":210,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-许愿瓶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5fa24da0548944d28cbd6cb2aea0617a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1427},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1428},{\\\"amount\\\":406,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1429},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1430},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/8b79080ee17d4e4f98a37dee5d6e1d25.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1431},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1432},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1433},{\\\"amount\\\":13140,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1434},{\\\"amount\\\":66666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-时光之恋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/d2db47083eaa40de9c8b324bc41ea564.png\\\",\\\"rewardLevel\\\":4,\\\"isNew\\\":0,\\\"lotteryId\\\":1435},{\\\"amount\\\":18888,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-爱恋之城\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/1b3cae6c924b4c8db2cf70e00435f18a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1436}]\",\"id\":189,\"operatorId\":25,\"rewardLotteryCount\":25198,\"openRewardDiamonds\":22563247,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:26\",\"sort\":121,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":1023301,\"openPayDiamonds\":0,\"createTime\":\"2021-05-24 12:04:17\",\"name\":\"梦幻糖果机\",\"remainLotteryCount\":794,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":216285,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\\\",\\\"decorationId\\\":224,\\\"decorationName\\\":\\\"绚烂阳光座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-蓝色焰火*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1414},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小礼花*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1415},{\\\"amount\\\":52,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-点赞*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1416},{\\\"amount\\\":66,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-乐符*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/b436e56b9f7e4c6aab4d9318e3221362.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1417},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-水晶瓶*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/3de3e42108db46f08eecf50a073cff90.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1418},{\\\"amount\\\":213,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天鹅之恋*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1419},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天生一对*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1420},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-一生有你*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/65e3617e22f545ec887c66f02d1a7a6f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1421},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-为你摘星*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/e19bacb19bfa46f481bb8c16dc02747e.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1422},{\\\"amount\\\":2000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-梦幻奇遇*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/6b487a5275984ba1a779fa5436c88d19.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1423}]\",\"id\":188,\"operatorId\":25,\"rewardLotteryCount\":216285,\"openRewardDiamonds\":19093404,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:19\",\"sort\":120,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":172431,\"openPayDiamonds\":0,\"createTime\":\"2021-05-24 11:55:16\",\"name\":\"甜心糖果机\",\"remainLotteryCount\":1556,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":5,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小开心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1289},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小蛋糕*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f23a2d65b84444afba2fa0c518793e48.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1290},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小嘎嘎*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/00527efdb7514484acd8f91740244781.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1291},{\\\"amount\\\":5,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-鼓掌*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1292}]\",\"id\":157,\"operatorId\":34,\"rewardLotteryCount\":5,\"openRewardDiamonds\":5,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-04-28 16:21:39\",\"sort\":113,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":775,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:38:56\",\"name\":\"梦幻测试\",\"remainLotteryCount\":295,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"2\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"20\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":47,\"delFlag\":false,\"operatorName\":\"章宇\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜草莓*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1285},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-荧光棒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/19/22ef4d05f54a4b3298d8c12cdb2bae19.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1286},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-萤火虫*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1287},{\\\"amount\\\":7,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小花朵*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1288}]\",\"id\":156,\"operatorId\":25,\"rewardLotteryCount\":47,\"openRewardDiamonds\":81,\"sort\":111,\"remainLotteryDiamonds\":1599,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:37:13\",\"name\":\"甜心测试\",\"remainLotteryCount\":353,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"4/23日刷新\",\"openedTimes\":3449320,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/7c31798619334da792fff5279b8ec7bf.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/33a2ea85233149debbfcb2cfc19e0b67.png\",\"lotteryActivityId\":152,\"createTime\":\"2021-06-16 10:06:26\",\"id\":127,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":333,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1241},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1240},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1239},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-接放学\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1238},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小礼花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1237},{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-蓝色焰火\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1236},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小可乐\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/9ce71421d70d47b099995395e9e330d9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1235},{\\\"amount\\\":8,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-四叶草\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1234},{\\\"amount\\\":7,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小花朵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1233},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1232},{\\\"amount\\\":5,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1231},{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小开心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1230}]\",\"id\":152,\"operatorId\":34,\"rewardLotteryCount\":3449320,\"openRewardDiamonds\":34507957,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga\",\"updateTime\":\"2021-06-16 10:06:26\",\"sort\":60,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e228e5a2414145809b4abc41efacbbba.webp\",\"remainLotteryDiamonds\":3420,\"openPayDiamonds\":34493160,\"createTime\":\"2021-04-23 18:20:19\",\"name\":\"普通宝箱\",\"remainLotteryCount\":316,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"4/23日刷新\",\"openedTimes\":282123,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/717f1ee388b24e38b5888485e5299472.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c42f032ebb9f43ff81a127d8bd4b1a19.png\",\"lotteryActivityId\":153,\"createTime\":\"2021-06-16 10:06:45\",\"id\":128,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=153&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\\\",\\\"decorationId\\\":230,\\\"decorationName\\\":\\\"璀银座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1253},{\\\"amount\\\":1066,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-好运锦鲤\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1252},{\\\"amount\\\":990,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-心愿许愿池\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1251},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1250},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1249},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-感恩豹豹\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1248},{\\\"amount\\\":213,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-天鹅之恋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1247},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1246},{\\\"amount\\\":122,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-告白气球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1244},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1243},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-幸运铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1242},{\\\"amount\\\":15000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-魔法城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1256},{\\\"amount\\\":10000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-暗夜城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1255},{\\\"amount\\\":3000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-星辰之钥\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1254},{\\\"amount\\\":135,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-木碗星空*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e0549adc52ff4c1394cf3d41bad12237.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1284}]\",\"id\":153,\"operatorId\":34,\"rewardLotteryCount\":282123,\"openRewardDiamonds\":63157640,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga\",\"updateTime\":\"2021-06-16 10:06:45\",\"sort\":59,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/bba8816d05324864bdbd80ca475525ae.webp\",\"remainLotteryDiamonds\":659104,\"openPayDiamonds\":59243730,\"createTime\":\"2021-04-23 18:37:26\",\"name\":\"白银宝箱\",\"remainLotteryCount\":3013,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"423刷新\",\"openedTimes\":155483,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/b97af0eb6d784dad9557d4f4c734fc2d.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da468049c9a4df7aea562239b93bdab.png\",\"lotteryActivityId\":154,\"createTime\":\"2021-06-16 10:06:53\",\"id\":129,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=gold&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\\\",\\\"decorationId\\\":231,\\\"decorationName\\\":\\\"耀金座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":33440,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-深海精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/05b37aede2014994a3094c7ccab4e55a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1268},{\\\"amount\\\":13140,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1267},{\\\"amount\\\":2998,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-花开万物\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6145fc5f4bb24a99a972764527999da7.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1266},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1265},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-圆梦精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/0a49819db4d542c1be74f52fe72def0f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1264},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1263},{\\\"amount\\\":666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/4/4c21272581fa4bb9aca4c0df6567a70e.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1262},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1261},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-天生一对\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1260},{\\\"amount\\\":406,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1259},{\\\"amount\\\":300,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-飞鸽传书\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9d32f897dcf34ff6948cff77d3ebb30c.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1258},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-广寒月\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9f34c21030404601aaacfebea908f7ee.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1257}]\",\"id\":154,\"operatorId\":34,\"rewardLotteryCount\":155483,\"openRewardDiamonds\":108141243,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga\",\"updateTime\":\"2021-06-16 10:06:53\",\"sort\":58,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/d31522c02db2434d9879a0f60005092b.webp\",\"remainLotteryDiamonds\":303863,\"openPayDiamonds\":103551678,\"createTime\":\"2021-04-23 18:49:41\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":501,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"423刷新\",\"openedTimes\":209626,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/ed1d7bf6ce3347a7b7d57ae1196b6e23.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/873b5a8b240349fb8c310d314e6fb32b.png\",\"lotteryActivityId\":155,\"createTime\":\"2021-06-16 10:07:01\",\"id\":130,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=magic&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\\\",\\\"decorationId\\\":232,\\\"decorationName\\\":\\\"幻尊座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":58888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-浴火凤凰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f6c6128dfdaf400384125602fc516504.png\\\",\\\"rewardLevel\\\":4,\\\"isNew\\\":0,\\\"lotteryId\\\":1280},{\\\"amount\\\":9999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-毁灭魔法\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0b8db93fb99d445d8cd18923b759669a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1279},{\\\"amount\\\":8888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-战神之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f3f840c6159c42ec8e25d86328d0555c.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1278},{\\\"amount\\\":6666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恶魔之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/4e0febbdd402462b841d34a92949e667.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1277},{\\\"amount\\\":1688,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-天使之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/498d1b0089e84308801095724e0593e6.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1276},{\\\"amount\\\":1199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-白马王子\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/68e1039b32da4dd080a339e25529a9ff.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1275},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-破茧成蝶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6c65021c3fab48ba949b9036b448dc1a.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1274},{\\\"amount\\\":568,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鎏金百合\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2601a655d29e4f74954aa67919557d53.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1273},{\\\"amount\\\":455,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-魔法手杖\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/7/21/2a8944054a554632b62c4cc7d7a076b4.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1272},{\\\"amount\\\":388,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-魔力娃娃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e6600ac593bc4ae88b95049bca873fd6.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1271},{\\\"amount\\\":299,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-万箭穿心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/5b77d17b7a9c4c75a36286771eaedac9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1270},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-紫惊雷\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/44cf7b20185742fea258deffe6f11e45.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1269}]\",\"id\":155,\"operatorId\":34,\"rewardLotteryCount\":209626,\"openRewardDiamonds\":207985913,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga\",\"updateTime\":\"2021-06-16 10:07:01\",\"sort\":57,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c467ccae646a4904bf580e3f2baffbb8.webp\",\"remainLotteryDiamonds\":653802,\"openPayDiamonds\":209416374,\"createTime\":\"2021-04-23 19:19:29\",\"name\":\"魔幻宝箱\",\"remainLotteryCount\":343,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"999\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"4995\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"9990\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"4月7日刷新\",\"openedTimes\":2574673,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/7f480df733a64dbcb2e0a1d61da99295.png\",\"delFlag\":false,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/4da3ee04c91e42249905d614d2d14627.png\",\"lotteryActivityId\":149,\"createTime\":\"2021-04-24 20:39:54\",\"id\":74,\"content\":\"\",\"activityH5Url\":\"https://h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":333,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1185},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1184},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1183},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-接放学\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1182},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小礼花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1181},{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-蓝色焰火\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1180},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-心相印\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1179},{\\\"amount\\\":8,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-许愿星\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/cb68fc35ea3e42d6bf7b4149ecb9d91b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1178},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小心心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/364b732988a64d1aa4c7d6e4594607fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1177},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1176},{\\\"amount\\\":5,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1175},{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-甜甜草莓\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1174}]\",\"id\":149,\"operatorId\":139,\"rewardLotteryCount\":2574673,\"openRewardDiamonds\":25548878,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/580c3d76e85c42eaaf6cde0a4a8038fd.svga\",\"updateTime\":\"2021-04-24 20:39:55\",\"sort\":53,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/a49899ab5cb44bd6a659e8244ca1d0a3.webp\",\"remainLotteryDiamonds\":13372,\"openPayDiamonds\":25746730,\"createTime\":\"2021-04-07 10:49:04\",\"name\":\"普通宝箱\",\"remainLotteryCount\":1288,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":29,\"pages\":3,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-06 10:40:49:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 03秒025毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"03秒025毫秒","endTime":"2021-07-06 10:40:49","id":0,"serviceId":1,"startTime":"2021-07-06 10:40:46","status":1}
[2021-07-06 10:40:50.598] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:50.598] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:50 GMT
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:50.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:50.600] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 10:40:50.600] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:50.600] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:51.114] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 10:40:51:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-07-06 10:40:51.114] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:51.114] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:51.184] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:51.184] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:51.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:51.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:51.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:51.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:51.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:51.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:51 GMT
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"b85c6c8c32f849029fab0c1b3a92208c","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:51.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:51.378] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:51.456] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:51.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:51 GMT
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:51.528] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:51.529] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"a1f837bce9224e60969e523d24f79bba","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-07-06 10:40:51.529] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:51.529] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:51.529] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-06 10:40:51.529] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:51.598] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:51.598] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:51.598] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-06 10:40:51.598] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:51.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:51.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:a1f837bce9224e60969e523d24f79bba
[2021-07-06 10:40:51.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:51.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:51.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-07-06 10:40:51.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:51.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-07-06 10:40:51.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:51.599] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:51.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:52 GMT
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:51.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:51.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-06 10:40:51.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:51.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:51.889] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-07-06 10:40:51.889] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 10:40:51:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-07-06 10:40:51.889] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 775毫秒======
[2021-07-06 10:40:51.890] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 10:40:51.890] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:51.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 10:40:51.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:51.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-07-06 10:40:51:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=MXFhejJ3c3gzZWRj&username=chengjie\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Tue, 06 Jul 2021 02:40:51 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"b85c6c8c32f849029fab0c1b3a92208c\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=MXFhejJ3c3gzZWRj&username=chengjie\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Tue, 06 Jul 2021 02:40:51 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"a1f837bce9224e60969e523d24f79bba\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"a1f837bce9224e60969e523d24f79bba\",\"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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 06 Jul 2021 02:40:52 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":4,\"navigatepageNums\":[1,2,3,4],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png\",\"createTime\":\"2020-12-23 14:37:34\",\"refType\":1,\"id\":44,\"virtualProductId\":328,\"content\":\"每送1个,可增加房间热度10\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"每送1个,可增加房间热度10\",\"giftVersion\":24,\"price\":0,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png\",\"id\":328,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室热度礼物\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":69,\"virtualProductId\":314,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 14:48:40\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\\\",\\\"remark\\\":\\\"一心一意\\\"}]\",\"id\":55,\"virtualProductId\":314}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方185魅力值\",\"giftVersion\":11,\"price\":185,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":314,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":185,\"useStatus\":1,\"name\":\"超人泡泡糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-05-31 00:00:05\",\"labelUrl\":\"\",\"createTime\":\"2020-05-27 11:11:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":285,\"virtualProductId\":517,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png\",\"createTime\":\"2021-05-24 10:02:07\",\"refType\":1,\"id\":76,\"virtualProductId\":517,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":100,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png\",\"id\":517,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1001,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-24 10:02:08\",\"useStatus\":1,\"name\":\"皮皮糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"糖果制造机玩法礼物\",\"delFlag\":false,\"obtainType\":5,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-06-17 17:23:08\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-24 10:02:08\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:56:35\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":24,\"virtualProductId\":327}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可增加对方1魅力值\",\"giftVersion\":17,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":980,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"834861\",\"rangeName\":\"\",\"id\":242,\"virtualProductId\":474,\"roomType\":2,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png\",\"id\":474,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga\",\"giftType\":1,\"sort\":980,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-23 18:01:57\",\"useStatus\":1,\"name\":\"雾时牛啤\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"【雾时】聊天室专属礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-03-22 00:00:00\",\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 18:01:57\",\"endTime\":\"2021-08-22 23:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"3\",\"rangeName\":\"全部\",\"id\":244,\"virtualProductId\":476,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":128,\"remarkUrl\":\"\",\"id\":476,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-03-06 10:48:39\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"女生厅专属礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-03-06 10:48:39\"}},{\"virtualProductRange\":{\"roomRange\":\"17\",\"rangeName\":\"全部\",\"id\":260,\"virtualProductId\":492,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png\",\"createTime\":\"2021-05-13 15:42:15\",\"refType\":1,\"id\":73,\"virtualProductId\":492,\"content\":\"男生厅专属礼物\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":128,\"remarkUrl\":\"\",\"id\":492,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-04-20 12:01:04\",\"useStatus\":1,\"name\":\"游戏机\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 15:42:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-04-20 12:01:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":292,\"virtualProductId\":524,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":6,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":6,\"limitUpdateTime\":\"2021-05-28 17:21:11\",\"useStatus\":1,\"name\":\"爱心补给\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-28 18:00:32\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":293,\"virtualProductId\":525,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-06-02 13:43:36\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"66\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\\\",\\\"remark\\\":\\\"一切顺利\\\"}]\",\"id\":265,\"virtualProductId\":525}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png\",\"createTime\":\"2021-06-02 13:43:36\",\"refType\":1,\"id\":79,\"virtualProductId\":525,\"content\":\"一次性赠送66个该礼物,触发进阶动效。\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":10,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png\",\"id\":525,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":970,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-28 18:07:48\",\"useStatus\":1,\"name\":\"永远滴神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-06-02 13:49:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 18:07:48\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":97,\"virtualProductId\":220,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方21魅力值\",\"giftVersion\":10,\"price\":21,\"remarkUrl\":\"\",\"id\":220,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":960,\"charmValue\":21,\"useStatus\":1,\"name\":\"甜甜圈\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2019-08-07 16:02:15\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":34,\"pages\":4,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-06 10:40:51:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 775毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"775毫秒","endTime":"2021-07-06 10:40:51","id":0,"serviceId":1,"startTime":"2021-07-06 10:40:51","status":1}
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:52 GMT
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:52.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:52.150] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 10:40:52.150] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:52.150] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:52.662] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 10:40:52:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-07-06 10:40:52.662] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:52.662] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:52.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:52.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:52.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:52.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:52.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:52.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:52.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:52.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-07-06 10:40:52.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:52.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-07-06 10:40:52.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:52.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:52 GMT
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:52.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:52.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:52.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"7a4e55b6b3ee4d0fa40056173c3bbef2","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-07-06 10:40:52.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:52.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:52.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 10:40:52.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:52.857] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:7a4e55b6b3ee4d0fa40056173c3bbef2
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774138, pageSize=10, pageNum=1}
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774138&pageSize=10&pageNum=1
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:52.858] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:53 GMT
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:52.967] [TestNG] [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":507,"platformAuthUrl":"","platformAuth":0,"publicOpenId":"1047683-os6HU059MQKLgBJqzwKcdEau6Mzo-1624520485363","nobleName":"未开通","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":4022309,"chargeBalance":10038.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/18/82cd5b8c0bb741979ca92e634899fdf2.jpg","lastMemberExp":0,"nobleRankCode":-1,"activeTime":"2021-06-25 10:42:39","userInfoAuth":2,"status":1,"gender":1,"city":"武汉","registerType":3,"guildCode":"16208545","userCode":"190322040","loginTime":"2021-06-25 10:42:38","ordersTakeStatus":1,"nickname":"雨落心玄","registIp":"113.89.34.116","virtualBalance":181,"isCancel":false,"memberLevel":0,"mobile":"13823774138","imPsw":"2b98dd8b27e24e87937428bd67d7ba6b","updateTime":"2021-05-12 23:23:25","quickServerStatus":0,"imId":"4022309_20210415","scoreAvg":4.0,"charm":0,"createTime":"2021-04-15 15:23:14","newUser":false,"sourceName":"华为市场","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-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:52.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:52.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-06 10:40:52.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:53.008] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:7a4e55b6b3ee4d0fa40056173c3bbef2
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774138, nickname=雨落心玄, remark=1, chargeBalance=10038.00, userId=4022309, searchValue=4022309}
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774138&nickname=%E9%9B%A8%E8%90%BD%E5%BF%83%E7%8E%84&remark=1&chargeBalance=10038.00&userId=4022309&searchValue=4022309
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:53.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:53.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:53.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:53.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:53.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:53.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:53.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:53.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:53.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:53.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:53 GMT
[2021-07-06 10:40:53.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:53.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:53.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:53.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-06 10:40:53.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:53.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:53.162] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMoneyDetailsSave--Test Mthod Success
[2021-07-06 10:40:53.162] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 10:40:53:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-07-06 10:40:53.162] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 500毫秒======
[2021-07-06 10:40:53.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 10:40:53.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:53.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:53.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-07-06 10:40:52:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=MXFhejJ3c3gzZWRj&username=chengjie\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Tue, 06 Jul 2021 02:40:52 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"7a4e55b6b3ee4d0fa40056173c3bbef2\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"7a4e55b6b3ee4d0fa40056173c3bbef2\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774138\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774138&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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 06 Jul 2021 02:40:53 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":507,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"publicOpenId\":\"1047683-os6HU059MQKLgBJqzwKcdEau6Mzo-1624520485363\",\"nobleName\":\"未开通\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":4022309,\"chargeBalance\":10038.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/18/82cd5b8c0bb741979ca92e634899fdf2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":-1,\"activeTime\":\"2021-06-25 10:42:39\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"武汉\",\"registerType\":3,\"guildCode\":\"16208545\",\"userCode\":\"190322040\",\"loginTime\":\"2021-06-25 10:42:38\",\"ordersTakeStatus\":1,\"nickname\":\"雨落心玄\",\"registIp\":\"113.89.34.116\",\"virtualBalance\":181,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774138\",\"imPsw\":\"2b98dd8b27e24e87937428bd67d7ba6b\",\"updateTime\":\"2021-05-12 23:23:25\",\"quickServerStatus\":0,\"imId\":\"4022309_20210415\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-04-15 15:23:14\",\"newUser\":false,\"sourceName\":\"华为市场\",\"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://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/save\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"7a4e55b6b3ee4d0fa40056173c3bbef2\",\"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\":\"13823774138\",\"nickname\":\"雨落心玄\",\"remark\":\"1\",\"chargeBalance\":\"10038.00\",\"userId\":\"4022309\",\"searchValue\":\"4022309\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774138&nickname=%E9%9B%A8%E8%90%BD%E5%BF%83%E7%8E%84&remark=1&chargeBalance=10038.00&userId=4022309&searchValue=4022309\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 06 Jul 2021 02:40:53 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-06 10:40:53:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 500毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"500毫秒","endTime":"2021-07-06 10:40:53","id":0,"serviceId":1,"startTime":"2021-07-06 10:40:52","status":1}
[2021-07-06 10:40:53.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:53 GMT
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:53.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:53.825] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 10:40:53:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-07-06 10:40:53.825] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:53.825] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:53.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:53.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:53.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:53.982] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:53.982] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:54 GMT
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"5c4c8b66b5fe46d589bd919f2c0e9515","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 10:40:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:54.083] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:54.083] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:5c4c8b66b5fe46d589bd919f2c0e9515
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774138, pageSize=10, pageNum=1}
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774138&pageSize=10&pageNum=1
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:54.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:54.198] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:54.198] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:54 GMT
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:54.199] [TestNG] [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":507,"platformAuthUrl":"","platformAuth":0,"publicOpenId":"1047683-os6HU059MQKLgBJqzwKcdEau6Mzo-1624520485363","nobleName":"未开通","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":4022309,"chargeBalance":10039.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/18/82cd5b8c0bb741979ca92e634899fdf2.jpg","lastMemberExp":0,"nobleRankCode":-1,"activeTime":"2021-06-25 10:42:39","userInfoAuth":2,"status":1,"gender":1,"city":"武汉","registerType":3,"guildCode":"16208545","userCode":"190322040","loginTime":"2021-06-25 10:42:38","ordersTakeStatus":1,"nickname":"雨落心玄","registIp":"113.89.34.116","virtualBalance":181,"isCancel":false,"memberLevel":0,"mobile":"13823774138","imPsw":"2b98dd8b27e24e87937428bd67d7ba6b","updateTime":"2021-05-12 23:23:25","quickServerStatus":0,"imId":"4022309_20210415","scoreAvg":4.0,"charm":0,"createTime":"2021-04-15 15:23:14","newUser":false,"sourceName":"华为市场","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-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:54.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:54.200] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-06 10:40:54.200] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:54.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:54.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:54.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-06 10:40:54.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 10:40:54.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:54.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:5c4c8b66b5fe46d589bd919f2c0e9515
[2021-07-06 10:40:54.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 10:40:54.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:54.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, remark=1, type=1, userId=4022309}
[2021-07-06 10:40:54.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:54.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&remark=1&type=1&userId=4022309
[2021-07-06 10:40:54.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:54.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 10:40:54.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:54.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:54.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 10:40:54.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:54.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:54 GMT
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:54.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:54.445] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testVirtualMoneyModify--Test Mthod Success
[2021-07-06 10:40:54.445] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 10:40:54:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-07-06 10:40:54.445] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 620毫秒======
[2021-07-06 10:40:54.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 10:40:54.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:54.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:54.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:54.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 10:40:54.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 10:40:54.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:54.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 10:40:54.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:54.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 10:40:54.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:54.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 10:40:54.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:54.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-07-06 10:40:53:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=MXFhejJ3c3gzZWRj&username=chengjie\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Tue, 06 Jul 2021 02:40:54 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"5c4c8b66b5fe46d589bd919f2c0e9515\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"5c4c8b66b5fe46d589bd919f2c0e9515\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774138\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774138&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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 06 Jul 2021 02:40:54 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":507,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"publicOpenId\":\"1047683-os6HU059MQKLgBJqzwKcdEau6Mzo-1624520485363\",\"nobleName\":\"未开通\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":4022309,\"chargeBalance\":10039.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/18/82cd5b8c0bb741979ca92e634899fdf2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":-1,\"activeTime\":\"2021-06-25 10:42:39\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"武汉\",\"registerType\":3,\"guildCode\":\"16208545\",\"userCode\":\"190322040\",\"loginTime\":\"2021-06-25 10:42:38\",\"ordersTakeStatus\":1,\"nickname\":\"雨落心玄\",\"registIp\":\"113.89.34.116\",\"virtualBalance\":181,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774138\",\"imPsw\":\"2b98dd8b27e24e87937428bd67d7ba6b\",\"updateTime\":\"2021-05-12 23:23:25\",\"quickServerStatus\":0,\"imId\":\"4022309_20210415\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-04-15 15:23:14\",\"newUser\":false,\"sourceName\":\"华为市场\",\"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://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"5c4c8b66b5fe46d589bd919f2c0e9515\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":1,\"remark\":\"1\",\"type\":1,\"userId\":\"4022309\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&remark=1&type=1&userId=4022309\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 06 Jul 2021 02:40:54 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-06 10:40:54:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 620毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"620毫秒","endTime":"2021-07-06 10:40:54","id":0,"serviceId":1,"startTime":"2021-07-06 10:40:53","status":1}
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:54 GMT
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:54.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:55.308] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testVirtualMoneyModify
[2021-07-06 10:40:55.308] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-07-06 10:40:55.308] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMoneyDetailsSave
[2021-07-06 10:40:55.308] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-07-06 10:40:55.308] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:4
[2021-07-06 10:40:55.308] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-07-06 10:40:55.309] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-07-06 10:40:55.312] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-07-06 10:40:55.313] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-07-06 10:40:55.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-06 10:40:55.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 10:40:55.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"08秒747毫秒","endTime":"2021-07-06 10:40:55","env":"pre-test","failed":0,"id":0,"passed":4,"serviceId":1,"skipped":0,"startTime":"2021-07-06 10:40:46","status":1,"teamId":0,"total":4}
[2021-07-06 10:40:55.607] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 10:40:55.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 10:40:55.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 10:40:55.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 10:40:55.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 10:40:55.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 10:40:55.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 02:40:54 GMT
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 10:40:55.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 10:40:55.609] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-07-06 10:40:55:测试集结束======
[2021-07-06 10:40:55.609] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 08秒747毫秒======
[2021-07-06 17:07:19.742] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-07-06 17:07:19.803] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-07-06 17:07:19:测试集开始======
[2021-07-06 17:07:20.003] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 17:07:20:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-07-06 17:07:20.008] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:20.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:20.388] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:20.388] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:20.388] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:20.388] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:20.388] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:20.388] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:20.388] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:20.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 17:07:20.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:20.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 17:07:20.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:20.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:21.100] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:21.100] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:21.100] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:21.100] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:21.100] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:21.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:21.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:21.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 17:07:21.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:21 GMT
[2021-07-06 17:07:21.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:21.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:21.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:21.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"21b413c2c6f349a6bd6f3021fd83b4c8","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 17:07:21.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:21.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:21.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-06 17:07:21.103] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:21.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:21.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:21.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-06 17:07:21.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:21.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:21.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:21b413c2c6f349a6bd6f3021fd83b4c8
[2021-07-06 17:07:21.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:21.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:21.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-07-06 17:07:21.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:21.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-07-06 17:07:21.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:21.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:22.677] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:22.677] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:22.677] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:22.677] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:22.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:22.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:22.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:22.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:22.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:22 GMT
[2021-07-06 17:07:22.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:22.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:22.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:22.678] [TestNG] [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":9,"list":[{"remark":"1","openedTimes":4,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4861fc911ca4c32b6e3f11b61de19ca.png","lotteryActivityId":128,"createTime":"2020-11-20 14:12:14","startTime":"2020-11-01 00:00:00","id":17,"endTime":"2020-11-28 23:59:59","content":"","activityH5Url":"","status":2},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-课代表*永久\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":402}]","startTime":"2020-11-01 00:00:00","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":"2020-11-24 13:39:13","sort":111,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png","remainLotteryDiamonds":1,"openPayDiamonds":4,"createTime":"2020-11-20 14:12:15","name":"123","remainLotteryCount":1,"endTime":"2020-11-23 23:59:59","activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"}]","isActivate":false,"status":0},{"remark":"没后悔过控件工具库","openedTimes":2300796,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png","lotteryActivityId":63,"createTime":"2020-11-19 17:49:32","startTime":"2020-11-18 00:00:00","id":14,"endTime":"2020-11-30 23:59:59","content":"邂逅2","activityH5Url":"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1","status":2},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":123,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"礼物-小黄鸭*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":115},{\"amount\":6,\"isNotice\":0,\"name\":\"礼物-小心心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":116},{\"amount\":8,\"isNotice\":0,\"name\":\"钻石*8\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":117},{\"amount\":10,\"isNotice\":0,\"name\":\"礼物-心相印*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":118},{\"amount\":21,\"isNotice\":1,\"name\":\"礼物-甜甜圈*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":119},{\"amount\":52,\"isNotice\":1,\"name\":\"礼物-棒棒糖*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":120},{\"amount\":99,\"isNotice\":1,\"name\":\"钻石*99\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":121},{\"amount\":128,\"isNotice\":1,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":122},{\"amount\":158,\"isNotice\":1,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":123}]","startTime":"2020-11-24 00:00:00","id":63,"operatorId":34,"rewardLotteryCount":2300796,"openRewardDiamonds":23974491,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga","updateTime":"2020-11-24 16:52:31","sort":30,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif","remainLotteryDiamonds":12349,"openPayDiamonds":23007960,"createTime":"2019-10-16 18:36:18","name":"普通宝箱","remainLotteryCount":1204,"endTime":"2020-11-26 23:59:59","activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":6990255,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png","delFlag":false,"operatorName":"程杰","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":1,\"name\":\"礼物-甜甜圈\",\"isNew\":0,\"lotteryId\":181},{\"isNotice\":1,\"name\":\"礼物-棒棒糖\",\"isNew\":0,\"lotteryId\":182},{\"isNotice\":1,\"name\":\"礼物-么么哒\",\"isNew\":0,\"lotteryId\":183},{\"isNotice\":1,\"name\":\"礼物-麦克风\",\"isNew\":0,\"lotteryId\":184},{\"isNotice\":1,\"name\":\"礼物-玫瑰花\",\"isNew\":0,\"lotteryId\":185}]","id":69,"operatorId":75,"rewardLotteryCount":6990255,"openRewardDiamonds":67901769,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga","updateTime":"2020-06-29 18:33:46","sort":30,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif","remainLotteryDiamonds":12309,"openPayDiamonds":69902550,"createTime":"2020-01-11 11:37:53","name":"普通宝箱","remainLotteryCount":196,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":220031,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\",\"decorationId\":211,\"decorationName\":\"慵懒的猫个人名牌\"}","lotteryRules":"[{\"amount\":108,\"isReward\":0,\"isNotice\":0,\"name\":\"钻石*108\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":124},{\"amount\":128,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":125},{\"amount\":158,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":126},{\"amount\":188,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-怦然心动*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":127},{\"amount\":233,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-可爱小熊*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":128},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天使之心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":129},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-果果冰*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":130},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":132},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":133},{\"amount\":3344,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":134}]","id":64,"operatorId":34,"rewardLotteryCount":220031,"openRewardDiamonds":46225515,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga","updateTime":"2021-06-02 15:00:48","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif","remainLotteryDiamonds":413355,"openPayDiamonds":46206510,"createTime":"2019-10-16 18:38:39","name":"白银宝箱","remainLotteryCount":1969,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"","openedTimes":518608,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-魔力法典*1 天\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":396},{\"amount\":10,\"isNotice\":0,\"name\":\"钻石*10\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":395},{\"amount\":99,\"isNotice\":0,\"name\":\"魅力值礼物-水晶粽\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":394}]","startTime":"2020-11-16 00:00:00","id":70,"operatorId":34,"rewardLotteryCount":518608,"openRewardDiamonds":105724795,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga","updateTime":"2020-11-19 15:36:17","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif","remainLotteryDiamonds":10682,"openPayDiamonds":108906423,"createTime":"2020-01-11 11:46:04","name":"白银宝箱","remainLotteryCount":294,"endTime":"2020-11-18 23:59:59","activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"2\",\"times\":\"5\"},{\"price\":\"3\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":90508,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png","delFlag":false,"operatorName":"梁鑫宇","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":0,\"name\":\"礼物-可爱小熊*\",\"isNew\":0,\"lotteryId\":135},{\"isNotice\":0,\"name\":\"钻石*388\",\"isNew\":0,\"lotteryId\":136},{\"isNotice\":0,\"name\":\"礼物-天使之心*\",\"isNew\":0,\"lotteryId\":137},{\"isNotice\":0,\"name\":\"礼物-果果冰*\",\"isNew\":0,\"lotteryId\":138},{\"isNotice\":1,\"name\":\"钻石*788\",\"isNew\":0,\"lotteryId\":139},{\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"isNew\":0,\"lotteryId\":140},{\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"isNew\":0,\"lotteryId\":141},{\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"isNew\":0,\"lotteryId\":142},{\"isNotice\":1,\"name\":\"礼物-爱神之箭*\",\"isNew\":0,\"lotteryId\":143},{\"isNotice\":1,\"name\":\"礼物-心愿灯*\",\"isNew\":0,\"lotteryId\":144},{\"isNotice\":1,\"name\":\"座位框-花蝴蝶*1 天\",\"isNew\":0,\"lotteryId\":145},{\"isNotice\":1,\"name\":\"座位框-精灵梦*1 天\",\"isNew\":0,\"lotteryId\":146}]","id":65,"operatorId":55,"rewardLotteryCount":90508,"openRewardDiamonds":54735115,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga","updateTime":"2020-01-11 12:06:41","sort":10,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif","remainLotteryDiamonds":917525,"openPayDiamonds":60278328,"createTime":"2019-10-16 18:42:34","name":"黄金宝箱","remainLotteryCount":1492,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":503767,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":3,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天气泡\"}","lotteryRules":"[{\"amount\":222,\"isNotice\":0,\"name\":\"礼物-玫瑰花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":196},{\"amount\":233,\"isNotice\":0,\"name\":\"礼物-可爱小熊\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":197},{\"amount\":266,\"isNotice\":0,\"name\":\"礼物-天使之心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":198},{\"amount\":520,\"isNotice\":0,\"name\":\"礼物-果果冰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":199},{\"amount\":999,\"isNotice\":1,\"name\":\"礼物-樱花雨\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":200},{\"amount\":1314,\"isNotice\":1,\"name\":\"礼物-爱的告白\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":201},{\"amount\":3344,\"isNotice\":1,\"name\":\"礼物-永恒印记\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":202},{\"amount\":7777,\"isNotice\":1,\"name\":\"礼物-爱神之箭\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":203},{\"amount\":26666,\"isNotice\":1,\"name\":\"礼物-心愿灯\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":204},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-镜花*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":205},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-水月*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":206},{\"amount\":300,\"isNotice\":0,\"name\":\"礼物-粉色情书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":271}]","id":71,"operatorId":34,"rewardLotteryCount":503767,"openRewardDiamonds":330019417,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga","updateTime":"2020-11-19 18:52:40","sort":10,"labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif","remainLotteryDiamonds":283546,"openPayDiamonds":335508822,"createTime":"2020-01-11 12:01:31","name":"黄金宝箱","remainLotteryCount":503,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"2","openedTimes":18,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":9,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\",\"decorationId\":204,\"decorationName\":\"主页特效主页特效\"}","lotteryRules":"[{\"amount\":50,\"isReward\":0,\"probability\":0,\"isNotice\":0,\"name\":\"礼物-森林之星*\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":392},{\"amount\":10,\"isReward\":0,\"probability\":100,\"isNotice\":0,\"name\":\"座位框-萌爪爪*5 天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":326}]","id":97,"operatorId":34,"rewardLotteryCount":18,"openRewardDiamonds":730,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga","updateTime":"2021-04-08 18:15:18","sort":2,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif","remainLotteryDiamonds":8220,"openPayDiamonds":180,"createTime":"2020-06-29 18:51:02","name":"普通的","remainLotteryCount":182,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"}]","isActivate":true,"status":1},{"remark":"11111","staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/fee27761b55047fd975c569337003103.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/5c1995d78acb4ad4b99c4a7907bb7381.png","lotteryActivityId":126,"createTime":"2020-11-20 14:09:25","startTime":"2020-11-21 00:00:00","id":16,"endTime":"2020-11-21 23:59:59","content":"","activityH5Url":"","status":2},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/e3545401910a414c9c2dcef60c67e503.webp\",\"decorationId\":193,\"decorationName\":\"魔力法典座位框\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"魅力值礼物-壁咚主播\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":401}]","id":126,"operatorId":34,"openRewardDiamonds":0,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/e450922000bd40ce9e888296542bbf5e.svga","updateTime":"2020-11-20 14:10:35","sort":1,"labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/91968aadf5674df8ad183e8160a81d5d.png","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/2cc4a494096b47239c6daae31023c8ff.webp","remainLotteryDiamonds":1,"openPayDiamonds":0,"createTime":"2020-11-20 14:09:25","name":"测试","remainLotteryCount":1,"activityType":1,"priceRules":"[{\"price\":\"100\",\"times\":\"1\"}]","isActivate":false,"status":0}],"pageNum":1,"navigatePages":8,"total":9,"pages":1,"size":9,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-06 17:07:22.679] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:22.679] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:22.683] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-07-06 17:07:22.683] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 17:07:22:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-07-06 17:07:22.683] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 02秒680毫秒======
[2021-07-06 17:07:22.695] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 17:07:22.696] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:22.697] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-07-06 17:07:20:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 09:07:21 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"21b413c2c6f349a6bd6f3021fd83b4c8\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"21b413c2c6f349a6bd6f3021fd83b4c8\",\"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, 06 Jul 2021 09:07:22 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\":9,\"list\":[{\"remark\":\"1\",\"openedTimes\":4,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4861fc911ca4c32b6e3f11b61de19ca.png\",\"lotteryActivityId\":128,\"createTime\":\"2020-11-20 14:12:14\",\"startTime\":\"2020-11-01 00:00:00\",\"id\":17,\"endTime\":\"2020-11-28 23:59:59\",\"content\":\"\",\"activityH5Url\":\"\",\"status\":2},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-课代表*永久\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":402}]\",\"startTime\":\"2020-11-01 00:00:00\",\"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\":\"2020-11-24 13:39:13\",\"sort\":111,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png\",\"remainLotteryDiamonds\":1,\"openPayDiamonds\":4,\"createTime\":\"2020-11-20 14:12:15\",\"name\":\"123\",\"remainLotteryCount\":1,\"endTime\":\"2020-11-23 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"没后悔过控件工具库\",\"openedTimes\":2300796,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png\",\"lotteryActivityId\":63,\"createTime\":\"2020-11-19 17:49:32\",\"startTime\":\"2020-11-18 00:00:00\",\"id\":14,\"endTime\":\"2020-11-30 23:59:59\",\"content\":\"邂逅2\",\"activityH5Url\":\"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1\",\"status\":2},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":123,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小黄鸭*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":115},{\\\"amount\\\":6,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小心心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":116},{\\\"amount\\\":8,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*8\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":117},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-心相印*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":118},{\\\"amount\\\":21,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":119},{\\\"amount\\\":52,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":120},{\\\"amount\\\":99,\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*99\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":121},{\\\"amount\\\":128,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":122},{\\\"amount\\\":158,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":123}]\",\"startTime\":\"2020-11-24 00:00:00\",\"id\":63,\"operatorId\":34,\"rewardLotteryCount\":2300796,\"openRewardDiamonds\":23974491,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga\",\"updateTime\":\"2020-11-24 16:52:31\",\"sort\":30,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif\",\"remainLotteryDiamonds\":12349,\"openPayDiamonds\":23007960,\"createTime\":\"2019-10-16 18:36:18\",\"name\":\"普通宝箱\",\"remainLotteryCount\":1204,\"endTime\":\"2020-11-26 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":6990255,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png\",\"delFlag\":false,\"operatorName\":\"程杰\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":181},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":182},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":183},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":184},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":185}]\",\"id\":69,\"operatorId\":75,\"rewardLotteryCount\":6990255,\"openRewardDiamonds\":67901769,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga\",\"updateTime\":\"2020-06-29 18:33:46\",\"sort\":30,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif\",\"remainLotteryDiamonds\":12309,\"openPayDiamonds\":69902550,\"createTime\":\"2020-01-11 11:37:53\",\"name\":\"普通宝箱\",\"remainLotteryCount\":196,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":220031,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\\\",\\\"decorationId\\\":211,\\\"decorationName\\\":\\\"慵懒的猫个人名牌\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":108,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*108\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":124},{\\\"amount\\\":128,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":125},{\\\"amount\\\":158,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":126},{\\\"amount\\\":188,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-怦然心动*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":127},{\\\"amount\\\":233,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":128},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":129},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":130},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":132},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":133},{\\\"amount\\\":3344,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":134}]\",\"id\":64,\"operatorId\":34,\"rewardLotteryCount\":220031,\"openRewardDiamonds\":46225515,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga\",\"updateTime\":\"2021-06-02 15:00:48\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif\",\"remainLotteryDiamonds\":413355,\"openPayDiamonds\":46206510,\"createTime\":\"2019-10-16 18:38:39\",\"name\":\"白银宝箱\",\"remainLotteryCount\":1969,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"\",\"openedTimes\":518608,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-魔力法典*1 天\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":396},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*10\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":395},{\\\"amount\\\":99,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-水晶粽\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":394}]\",\"startTime\":\"2020-11-16 00:00:00\",\"id\":70,\"operatorId\":34,\"rewardLotteryCount\":518608,\"openRewardDiamonds\":105724795,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga\",\"updateTime\":\"2020-11-19 15:36:17\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif\",\"remainLotteryDiamonds\":10682,\"openPayDiamonds\":108906423,\"createTime\":\"2020-01-11 11:46:04\",\"name\":\"白银宝箱\",\"remainLotteryCount\":294,\"endTime\":\"2020-11-18 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"2\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"3\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":90508,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png\",\"delFlag\":false,\"operatorName\":\"梁鑫宇\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":135},{\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*388\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":136},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":137},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":138},{\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*788\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":139},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":140},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":141},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":142},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":143},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":144},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-花蝴蝶*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":145},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-精灵梦*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":146}]\",\"id\":65,\"operatorId\":55,\"rewardLotteryCount\":90508,\"openRewardDiamonds\":54735115,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga\",\"updateTime\":\"2020-01-11 12:06:41\",\"sort\":10,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif\",\"remainLotteryDiamonds\":917525,\"openPayDiamonds\":60278328,\"createTime\":\"2019-10-16 18:42:34\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":1492,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":503767,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":3,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":222,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":196},{\\\"amount\\\":233,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":197},{\\\"amount\\\":266,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":198},{\\\"amount\\\":520,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":199},{\\\"amount\\\":999,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":200},{\\\"amount\\\":1314,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":201},{\\\"amount\\\":3344,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":202},{\\\"amount\\\":7777,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":203},{\\\"amount\\\":26666,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":204},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-镜花*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":205},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-水月*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":206},{\\\"amount\\\":300,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-粉色情书\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":271}]\",\"id\":71,\"operatorId\":34,\"rewardLotteryCount\":503767,\"openRewardDiamonds\":330019417,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga\",\"updateTime\":\"2020-11-19 18:52:40\",\"sort\":10,\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif\",\"remainLotteryDiamonds\":283546,\"openPayDiamonds\":335508822,\"createTime\":\"2020-01-11 12:01:31\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":503,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"2\",\"openedTimes\":18,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":9,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\\\",\\\"decorationId\\\":204,\\\"decorationName\\\":\\\"主页特效主页特效\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":50,\\\"isReward\\\":0,\\\"probability\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-森林之星*\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":392},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"probability\\\":100,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-萌爪爪*5 天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":326}]\",\"id\":97,\"operatorId\":34,\"rewardLotteryCount\":18,\"openRewardDiamonds\":730,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga\",\"updateTime\":\"2021-04-08 18:15:18\",\"sort\":2,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif\",\"remainLotteryDiamonds\":8220,\"openPayDiamonds\":180,\"createTime\":\"2020-06-29 18:51:02\",\"name\":\"普通的\",\"remainLotteryCount\":182,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"11111\",\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/fee27761b55047fd975c569337003103.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/5c1995d78acb4ad4b99c4a7907bb7381.png\",\"lotteryActivityId\":126,\"createTime\":\"2020-11-20 14:09:25\",\"startTime\":\"2020-11-21 00:00:00\",\"id\":16,\"endTime\":\"2020-11-21 23:59:59\",\"content\":\"\",\"activityH5Url\":\"\",\"status\":2},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/e3545401910a414c9c2dcef60c67e503.webp\\\",\\\"decorationId\\\":193,\\\"decorationName\\\":\\\"魔力法典座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-壁咚主播\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":401}]\",\"id\":126,\"operatorId\":34,\"openRewardDiamonds\":0,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/e450922000bd40ce9e888296542bbf5e.svga\",\"updateTime\":\"2020-11-20 14:10:35\",\"sort\":1,\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/91968aadf5674df8ad183e8160a81d5d.png\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/2cc4a494096b47239c6daae31023c8ff.webp\",\"remainLotteryDiamonds\":1,\"openPayDiamonds\":0,\"createTime\":\"2020-11-20 14:09:25\",\"name\":\"测试\",\"remainLotteryCount\":1,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":false,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":9,\"pages\":1,\"size\":9,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-06 17:07:22:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 02秒680毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"02秒680毫秒","endTime":"2021-07-06 17:07:22","id":0,"serviceId":1,"startTime":"2021-07-06 17:07:20","status":1}
[2021-07-06 17:07:23.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:23 GMT
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 17:07:23.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:23.378] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:23.378] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 17:07:23.378] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:23.378] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:23.882] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 17:07:23:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-07-06 17:07:23.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:23.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:24.540] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:24.630] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:24.630] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:24.630] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:24.630] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:24.630] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:24 GMT
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"4242a081dbfc4b029156403883a2514d","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:24.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:24.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:26.807] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:26.899] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:26.899] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:26.899] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:26.899] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:26.899] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:27 GMT
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"71bff230f8554ecf85cf8febe587c258","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:26.900] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:26.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-06 17:07:26.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:27.081] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:71bff230f8554ecf85cf8febe587c258
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:27.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-07-06 17:07:27.083] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:27.083] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:28.130] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:28 GMT
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:28.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:28.131] [TestNG] [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":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":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"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":1,"virtualProductId":317,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-11-24 13:53:02","playMethod":"[{\"chainNum\":\"5\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/8c5af3e355f64274a777ac6a89378c42.svga\",\"remark\":\"心中有我\"}]","id":93,"virtualProductId":317}],"virtualProductActivity":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/8ae8aa6147c34995aace718f8ac33983.png","createTime":"2020-11-19 15:15:13","refType":1,"id":7,"virtualProductId":317,"content":"随时随地 找人陪你打游戏","activityH5Url":"https%2525253A%2525252F%2525252Fapp.apeiwan.com%2525252Fpipi20200624%2525252Findex.html%2525253FhideNavi%2525253D1%25252526source%2525253Dgift","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/5c4f4319af694a19965c29b3569d5182.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/f3ff156f321d49b58212f75fe1176f5a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":24,"price":1,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1dda9417f9ef4d479f015693884a6fe4.png","id":317,"objectGifUrl":"","giftType":1,"sort":1000,"charmValue":1,"limitUpdateTime":"2020-06-20 17:03:34","useStatus":1,"name":"荧光棒","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/089dd3f5536346f1af5d1e45b0da06a3.png","createTime":"2020-06-20 17:03:34"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":2,"virtualProductId":318,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-20 17:55:53","playMethod":"[{\"chainNum\":\"198\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/20/f13b90a3e3204291a83f39a3e6643b4d.svga\",\"remark\":\"一九八\"}]","id":2,"virtualProductId":318}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/214c5ff084fc4eb8a5f99ab74f83ec69.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/86ed37ea7cab483097d0a4e4243f9d4a.png","id":318,"objectGifUrl":"","giftType":1,"sort":1000,"charmValue":1,"limitUpdateTime":"2020-06-20 17:55:54","useStatus":1,"name":"萤火虫","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/fe5ac06e7cac47fda36e91c4df91f25f.png","createTime":"2020-06-20 17:55:54"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":3,"virtualProductId":319,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-20 17:57:22","playMethod":"[{\"chainNum\":\"99\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/20/89937e07e2674b899c5e5b599fdd6c92.svga\",\"remark\":\"长长久久\"}]","id":3,"virtualProductId":319}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/ec5172e646ea4821b8232d16b4509bdb.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":5,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/3ba87eae92af4e6b9a2d9fd6ef3d4017.png","id":319,"objectGifUrl":"","giftType":1,"sort":990,"charmValue":5,"limitUpdateTime":"2020-06-20 17:57:22","useStatus":1,"name":"鼓掌","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/3604810aec3c4027ab5c0cbf22078ab3.png","createTime":"2020-06-20 17:57:22"}}],"pageNum":1,"navigatePages":8,"total":43,"pages":5,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-06 17:07:28.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:28.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:28.133] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-07-06 17:07:28.133] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 17:07:28:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-07-06 17:07:28.133] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 04秒251毫秒======
[2021-07-06 17:07:28.135] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 17:07:28.135] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:28.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-07-06 17:07:23:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 09:07:24 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"4242a081dbfc4b029156403883a2514d\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 09:07:27 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"71bff230f8554ecf85cf8febe587c258\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"71bff230f8554ecf85cf8febe587c258\",\"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, 06 Jul 2021 09:07:28 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\":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\":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\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":1,\"virtualProductId\":317,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-11-24 13:53:02\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"5\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/8c5af3e355f64274a777ac6a89378c42.svga\\\",\\\"remark\\\":\\\"心中有我\\\"}]\",\"id\":93,\"virtualProductId\":317}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/8ae8aa6147c34995aace718f8ac33983.png\",\"createTime\":\"2020-11-19 15:15:13\",\"refType\":1,\"id\":7,\"virtualProductId\":317,\"content\":\"随时随地 找人陪你打游戏\",\"activityH5Url\":\"https%2525253A%2525252F%2525252Fapp.apeiwan.com%2525252Fpipi20200624%2525252Findex.html%2525253FhideNavi%2525253D1%25252526source%2525253Dgift\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/5c4f4319af694a19965c29b3569d5182.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/f3ff156f321d49b58212f75fe1176f5a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":24,\"price\":1,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1dda9417f9ef4d479f015693884a6fe4.png\",\"id\":317,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1000,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-20 17:03:34\",\"useStatus\":1,\"name\":\"荧光棒\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/089dd3f5536346f1af5d1e45b0da06a3.png\",\"createTime\":\"2020-06-20 17:03:34\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":2,\"virtualProductId\":318,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-20 17:55:53\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"198\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/20/f13b90a3e3204291a83f39a3e6643b4d.svga\\\",\\\"remark\\\":\\\"一九八\\\"}]\",\"id\":2,\"virtualProductId\":318}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/214c5ff084fc4eb8a5f99ab74f83ec69.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/86ed37ea7cab483097d0a4e4243f9d4a.png\",\"id\":318,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1000,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-20 17:55:54\",\"useStatus\":1,\"name\":\"萤火虫\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/fe5ac06e7cac47fda36e91c4df91f25f.png\",\"createTime\":\"2020-06-20 17:55:54\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":3,\"virtualProductId\":319,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-20 17:57:22\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"99\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/20/89937e07e2674b899c5e5b599fdd6c92.svga\\\",\\\"remark\\\":\\\"长长久久\\\"}]\",\"id\":3,\"virtualProductId\":319}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/ec5172e646ea4821b8232d16b4509bdb.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":5,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/3ba87eae92af4e6b9a2d9fd6ef3d4017.png\",\"id\":319,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":990,\"charmValue\":5,\"limitUpdateTime\":\"2020-06-20 17:57:22\",\"useStatus\":1,\"name\":\"鼓掌\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/3604810aec3c4027ab5c0cbf22078ab3.png\",\"createTime\":\"2020-06-20 17:57:22\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":43,\"pages\":5,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-06 17:07:28:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 04秒251毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"04秒251毫秒","endTime":"2021-07-06 17:07:28","id":0,"serviceId":1,"startTime":"2021-07-06 17:07:23","status":1}
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:28 GMT
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:28.766] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 17:07:28:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-07-06 17:07:28.766] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:28.766] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:30.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:30.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:30.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:30 GMT
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:30.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:30.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"adce03057c4c4ce1a441847a44377697","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 17:07:30.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:30.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:30.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 17:07:30.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:31.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:31.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:31.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 17:07:31.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:31.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:31.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:adce03057c4c4ce1a441847a44377697
[2021-07-06 17:07:31.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:31.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:31.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774138, pageSize=10, pageNum=1}
[2021-07-06 17:07:31.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:31.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774138&pageSize=10&pageNum=1
[2021-07-06 17:07:31.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:31.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:32 GMT
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:32.096] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:32.097] [TestNG] [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":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203564,"chargeBalance":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-01 15:30:38","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"userCode":"146530220","loginTime":"2021-07-01 15:24:51","nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774138","imPsw":"8b1c5d54d9fd493ca85c3e8d3a9ef836","updateTime":"2021-05-07 11:22:16","quickServerStatus":0,"imId":"2203564_20210507","scoreAvg":4.0,"charm":0,"createTime":"2021-05-07 11:22:14","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-07-06 17:07:32.097] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:32.097] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:32.097] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-06 17:07:32.097] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:32.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:32.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:adce03057c4c4ce1a441847a44377697
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774138, nickname=test, remark=1, chargeBalance=0.00, userId=2203564, searchValue=2203564}
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774138&nickname=test&remark=1&chargeBalance=0.00&userId=2203564&searchValue=2203564
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:32.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:33.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:33.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:33.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:33.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:33.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:33.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:33.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:33.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:33.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:33 GMT
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:33.213] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMoneyDetailsSave--Test Mthod Success
[2021-07-06 17:07:33.213] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 17:07:33:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-07-06 17:07:33.213] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 04秒447毫秒======
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:33.213] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 17:07:33.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 17:07:33.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:33.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 17:07:33.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:33.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 17:07:33.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:33.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 17:07:33.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:33.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-07-06 17:07:28:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 09:07:30 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"adce03057c4c4ce1a441847a44377697\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"adce03057c4c4ce1a441847a44377697\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774138\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774138&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, 06 Jul 2021 09:07: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\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203564,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-01 15:30:38\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"146530220\",\"loginTime\":\"2021-07-01 15:24:51\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774138\",\"imPsw\":\"8b1c5d54d9fd493ca85c3e8d3a9ef836\",\"updateTime\":\"2021-05-07 11:22:16\",\"quickServerStatus\":0,\"imId\":\"2203564_20210507\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-07 11:22:14\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"adce03057c4c4ce1a441847a44377697\",\"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\":\"13823774138\",\"nickname\":\"test\",\"remark\":\"1\",\"chargeBalance\":\"0.00\",\"userId\":\"2203564\",\"searchValue\":\"2203564\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774138&nickname=test&remark=1&chargeBalance=0.00&userId=2203564&searchValue=2203564\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, 06 Jul 2021 09:07:33 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-06 17:07:33:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 04秒447毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"04秒447毫秒","endTime":"2021-07-06 17:07:33","id":0,"serviceId":1,"startTime":"2021-07-06 17:07:28","status":1}
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 17:07:33.443] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:33 GMT
[2021-07-06 17:07:33.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 17:07:33.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:33.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:33.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 17:07:33.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:33.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:33.946] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 17:07:33:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-07-06 17:07:33.946] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:33.946] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:34.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:34 GMT
[2021-07-06 17:07:34.203] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:34.204] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:34.204] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:34.204] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"e471c1f757d5488e8b930c23b4c20f99","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 17:07:34.204] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:34.204] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:34.204] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 17:07:34.204] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:35.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:35.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:35.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 17:07:35.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:35.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:35.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e471c1f757d5488e8b930c23b4c20f99
[2021-07-06 17:07:35.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:35.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:35.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774138, pageSize=10, pageNum=1}
[2021-07-06 17:07:35.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:35.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774138&pageSize=10&pageNum=1
[2021-07-06 17:07:35.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:35.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:35 GMT
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:35.675] [TestNG] [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":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203564,"chargeBalance":1.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-01 15:30:38","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"userCode":"146530220","loginTime":"2021-07-01 15:24:51","nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774138","imPsw":"8b1c5d54d9fd493ca85c3e8d3a9ef836","updateTime":"2021-05-07 11:22:16","quickServerStatus":0,"imId":"2203564_20210507","scoreAvg":4.0,"charm":0,"createTime":"2021-05-07 11:22:14","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-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:35.675] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:35.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-06 17:07:35.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e471c1f757d5488e8b930c23b4c20f99
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, remark=1, type=1, userId=2203564}
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&remark=1&type=1&userId=2203564
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:35.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:36 GMT
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-06 17:07:36.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:36.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:36.162] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testVirtualMoneyModify--Test Mthod Success
[2021-07-06 17:07:36.162] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 17:07:36:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-07-06 17:07:36.162] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 02秒216毫秒======
[2021-07-06 17:07:36.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 17:07:36.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:36.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:36.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:36.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 17:07:36.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 17:07:36.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:36.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 17:07:36.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:36.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 17:07:36.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:36.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 17:07:36.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:36.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-07-06 17:07:33:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 09:07:34 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"e471c1f757d5488e8b930c23b4c20f99\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e471c1f757d5488e8b930c23b4c20f99\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774138\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774138&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, 06 Jul 2021 09:07:35 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\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203564,\"chargeBalance\":1.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-01 15:30:38\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"146530220\",\"loginTime\":\"2021-07-01 15:24:51\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774138\",\"imPsw\":\"8b1c5d54d9fd493ca85c3e8d3a9ef836\",\"updateTime\":\"2021-05-07 11:22:16\",\"quickServerStatus\":0,\"imId\":\"2203564_20210507\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-07 11:22:14\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e471c1f757d5488e8b930c23b4c20f99\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":1,\"remark\":\"1\",\"type\":1,\"userId\":\"2203564\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&remark=1&type=1&userId=2203564\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, 06 Jul 2021 09:07:36 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-06 17:07:36:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 02秒216毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"02秒216毫秒","endTime":"2021-07-06 17:07:36","id":0,"serviceId":1,"startTime":"2021-07-06 17:07:33","status":1}
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 17:07:36.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:36.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 17:07:36.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:36 GMT
[2021-07-06 17:07:36.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 17:07:36.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:36.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:36.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 17:07:36.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:36.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:36.844] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-07-06 17:07:36.844] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-07-06 17:07:36.844] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMoneyDetailsSave
[2021-07-06 17:07:36.844] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testVirtualMoneyModify
[2021-07-06 17:07:36.844] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:4
[2021-07-06 17:07:36.844] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-07-06 17:07:36.844] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-07-06 17:07:36.848] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-07-06 17:07:36.849] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-07-06 17:07:36.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-06 17:07:36.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 17:07:36.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"17秒043毫秒","endTime":"2021-07-06 17:07:36","env":"pre-test","failed":0,"id":0,"passed":4,"serviceId":1,"skipped":0,"startTime":"2021-07-06 17:07:19","status":1,"teamId":0,"total":4}
[2021-07-06 17:07:37.779] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 09:07:38 GMT
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 17:07:37.780] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 17:07:37.780] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-07-06 17:07:36:测试集结束======
[2021-07-06 17:07:37.780] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 17秒043毫秒======
[2021-07-06 18:05:25.531] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t2-api-admin.apeiwan.com/login
[2021-07-06 18:05:25.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:05:25.900] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:05:25.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:05:25.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t2-api-admin.apeiwan.com/login
[2021-07-06 18:05:25.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:05:25.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:05:25.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:05:25.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:05:25.902] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:05:25.902] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:05:25.902] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:05:25.902] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:05:25.902] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:05:26.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:05:26.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:05:26 GMT
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"e9063ff8c42343feb63975a27e102992","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:05:26.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:05:26.097] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:05:26.098] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t2-api-admin.apeiwan.com/login
[2021-07-06 18:05:26.098] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:05:26.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:05:26.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:05:26.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t2-api-admin.apeiwan.com/login
[2021-07-06 18:05:26.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:05:26.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:05:26.262] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:05:26.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:05:26.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:05:26.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:05:26.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:05:26.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:05:26.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:05:26.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:05:26 GMT
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"07b54386575c42de8585439d1b90c23b","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:05:26.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:05:26.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t2-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:05:26.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:05:26.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:05:26.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:05:26.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t2-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:05:26.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:05:26.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:05:26.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:07b54386575c42de8585439d1b90c23b
[2021-07-06 18:05:26.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:05:26.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:05:26.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-06 18:05:26.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:05:26.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-06 18:05:26.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:05:26.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:05:27.080] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:05:27.080] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:05:27 GMT
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:05:27.081] [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":3222859,"chargeBalance":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":-1,"activeTime":"2021-06-03 15:37:02","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"195822230","loginTime":"2021-06-28 14:44:42","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":8232,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"d7f66b8fd74d4ed5916ad50fa4422e44","updateTime":"2021-05-21 17:36:09","quickServerStatus":0,"imId":"3222859_20210521","scoreAvg":4.0,"charm":0,"createTime":"2021-05-21 17:36:09","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-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:05:27.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:07:30.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t2-api-admin.apeiwan.com/login
[2021-07-06 18:07:30.749] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:07:30.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:07:30.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:07:30.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t2-api-admin.apeiwan.com/login
[2021-07-06 18:07:30.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:07:30.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:07:30.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:07:30.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:07:30.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:07:30.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:07:30.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:07:30.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:07:30.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:07:31.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:07:31.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:07:31 GMT
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"299b852bc4424bfdb3b6c3f6ebe69257","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:07:31.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:07:31.070] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:07:31.070] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t2-api-admin.apeiwan.com/login
[2021-07-06 18:07:31.070] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:07:31.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:07:31.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:07:31.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t2-api-admin.apeiwan.com/login
[2021-07-06 18:07:31.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:07:31.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:07:31.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:07:31.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:07:31.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:07:31.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:07:31.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:07:31.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:07:31.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:07:31.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:07:31 GMT
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"b43375edbaae425e90e759737f21e35d","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:07:31.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:07:31.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:07:31.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t2-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:07:31.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:07:31.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:07:31.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:07:31.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t2-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:07:31.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:07:31.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:07:31.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b43375edbaae425e90e759737f21e35d
[2021-07-06 18:07:31.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:07:31.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:07:31.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-06 18:07:31.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:07:31.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-06 18:07:31.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:07:31.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:07:32.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:07:32.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:07:32.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:07:32.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:07:32.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:07:32.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:07:32.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:07:32.062] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:07:32.062] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:07:32 GMT
[2021-07-06 18:07:32.062] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:07:32.062] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:07:32.062] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:07:32.062] [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":3222859,"chargeBalance":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":-1,"activeTime":"2021-06-03 15:37:02","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"195822230","loginTime":"2021-06-28 14:44:42","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":8232,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"d7f66b8fd74d4ed5916ad50fa4422e44","updateTime":"2021-05-21 17:36:09","quickServerStatus":0,"imId":"3222859_20210521","scoreAvg":4.0,"charm":0,"createTime":"2021-05-21 17:36:09","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-07-06 18:07:32.062] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:07:32.062] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:08:00.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:08:00.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:08:00.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:08:00.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:08:00.494] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:08:00.494] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:08:00.494] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:08:00.494] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:08:00.494] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:08:00.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:08:00.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:08:00.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:08:00.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:08:00.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:08:00.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:08:00.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:08:00 GMT
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:08:00.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"5a8463bd9572422f92c21f9662dd3bcc","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:08:00.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:08:00.602] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:08:00.603] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:08:00.603] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:08:00.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:08:00.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:08:00.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:08:00.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:08:00.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:08:00.704] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:08:00.704] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:08:00.704] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:08:00.704] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:08:00.704] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:08:00.704] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:08:00.704] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:08:00.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:08:00.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:08:00 GMT
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"97a8f5a83bbc4e9a84ef05567cd4932f","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:08:00.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:08:00.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:08:00.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:08:00.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:08:00.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:08:00.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:08:00.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:08:00.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:08:00.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:97a8f5a83bbc4e9a84ef05567cd4932f
[2021-07-06 18:08:00.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:08:00.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:08:00.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-06 18:08:00.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:08:00.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-06 18:08:00.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:08:00.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:08:01.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:08:01.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:08:01.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:08:01 GMT
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:08:01.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,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-06 17:29:09","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-06 17:29:08","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"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-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:08:01.064] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:09:05.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:09:05.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:09:05.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:09:05.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:09:05.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:09:05.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:09:05.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:09:05.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:09:05.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:09:05.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:09:05.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:09:05.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:09:05.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:09:05.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:09:06.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:09:06.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:09:06 GMT
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"a126daae68a942b58c552ec6e02bfde4","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:09:06.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:09:06.098] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:09:06.098] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:09:06.098] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:09:06.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:09:06.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:09:06.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:09:06.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:09:06.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:09:06.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:09:06.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:09:06.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:09:06.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:09:06.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:09:06.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:09:06.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:09:06.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:09:06.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:09:06 GMT
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"b73746e2994a4682a281beebed7beccb","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:09:06.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:09:06.375] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:09:06.375] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b73746e2994a4682a281beebed7beccb
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:09:06.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-06 18:09:06.481] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:09:06.481] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:09:06.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:09:06.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:09:06.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:09:06.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:09:06.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:09:06.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:09:06.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:09:06.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:09:06.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:09:06 GMT
[2021-07-06 18:09:06.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:09:06.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:09:06.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:09:06.591] [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":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-06 17:29:09","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-06 17:29:08","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"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-07-06 18:09:06.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:09:06.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:10:39.805] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:10:39.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:10:40.100] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:10:40.100] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:10:40.100] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:10:40.100] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:10:40.100] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:10:40.100] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:10:40.100] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:10:40.101] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:10:40.101] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:10:40.101] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:10:40.102] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:10:40.102] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:10:40.200] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:10:40.200] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:10:40.200] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:10:40.200] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:10:40.200] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:10:40.201] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:10:40.201] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:10:40.201] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:10:40.201] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:10:40 GMT
[2021-07-06 18:10:40.201] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:10:40.201] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:10:40.201] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:10:40.201] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"0a9b11ff680c4c43b4f413f67aff2edd","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:10:40.201] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:10:40.203] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:10:40.203] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:10:40.203] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:10:40.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:10:40.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:10:40.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:10:40.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:10:40.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:10:40.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:10:40.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:10:40.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:10:40.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:10:40.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:10:40.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:10:40.279] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:10:40.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:10:40.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:10:40.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:10:40.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:10:40.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:10:40.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:10:40.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:10:40.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:10:40.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:10:40 GMT
[2021-07-06 18:10:40.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:10:40.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:10:40.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:10:40.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"e0be5b72cf764283b36996e9145c2130","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:10:40.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:10:40.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:10:40.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:10:40.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:10:40.411] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:10:40.411] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:10:40.411] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:10:40.411] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:10:40.411] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:10:40.411] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e0be5b72cf764283b36996e9145c2130
[2021-07-06 18:10:40.411] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:10:40.411] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:10:40.412] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-06 18:10:40.412] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:10:40.412] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-06 18:10:40.412] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:10:40.412] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:10:41 GMT
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:10:41.046] [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":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-06 17:29:09","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-06 17:29:08","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"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-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:10:41.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:10:41.047] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/room/list
[2021-07-06 18:10:41.047] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:10:41.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:10:41.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:10:41.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/room/list
[2021-07-06 18:10:41.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:10:41.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:10:41.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:0a9b11ff680c4c43b4f413f67aff2edd
[2021-07-06 18:10:41.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:10:41.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:10:41.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1, userId=2203657}
[2021-07-06 18:10:41.128] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:10:41.128] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1&userId=2203657
[2021-07-06 18:10:41.128] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:10:41.128] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:10:41 GMT
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:10:41.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:10:41.215] [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,"endRow":1,"list":[{"hostUserId":2203657,"scoreWeight":2,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":3085,"virtualPeople":1,"roomType":1,"realPeople":0,"roomNo":"TEST833760","recommendWeight":0,"sort":999,"guildId":232,"roomName":"我的厅1","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":true,"isHot":false,"template":1,"hostMobile":"13823774131","remark":"我的厅1","roomCode":"TEST833760","guildCode":"18306720","sortWeight":0,"guildName":"心玄的公会","isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","orderRoomSerial":"1","openTime":"2021-07-06 17:32:09","roomCategoryId":2,"collectCount":0,"micDuration":900,"isShow":true,"hostUserName":"test","createTime":"2021-07-06 17:32:09"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-06 18:10:41.216] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:10:41.216] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:12:58.997] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-07-06 18:12:59.058] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-07-06 18:12:59:测试集开始======
[2021-07-06 18:12:59.251] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 18:12:59:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-07-06 18:12:59.256] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:12:59.257] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:12:59.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:12:59.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:12:59.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:12:59.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:12:59.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:12:59.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:12:59.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:12:59.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:12:59.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:12:59.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:12:59.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:12:59.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:12:59.441] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:12:59.441] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:12:59.441] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:12:59 GMT
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"1a7692800e004d21ac199101b02bd471","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:12:59.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:12:59.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:12:59.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-06 18:12:59.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:1a7692800e004d21ac199101b02bd471
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-07-06 18:12:59.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:12:59.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:12:59 GMT
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:12:59.761] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:12:59.762] [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":9,"list":[{"remark":"1","openedTimes":4,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4861fc911ca4c32b6e3f11b61de19ca.png","lotteryActivityId":128,"createTime":"2020-11-20 14:12:14","startTime":"2020-11-01 00:00:00","id":17,"endTime":"2020-11-28 23:59:59","content":"","activityH5Url":"","status":2},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-课代表*永久\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":402}]","startTime":"2020-11-01 00:00:00","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":"2020-11-24 13:39:13","sort":111,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png","remainLotteryDiamonds":1,"openPayDiamonds":4,"createTime":"2020-11-20 14:12:15","name":"123","remainLotteryCount":1,"endTime":"2020-11-23 23:59:59","activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"}]","isActivate":false,"status":0},{"remark":"没后悔过控件工具库","openedTimes":2300796,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png","lotteryActivityId":63,"createTime":"2020-11-19 17:49:32","startTime":"2020-11-18 00:00:00","id":14,"endTime":"2020-11-30 23:59:59","content":"邂逅2","activityH5Url":"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1","status":2},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":123,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"礼物-小黄鸭*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":115},{\"amount\":6,\"isNotice\":0,\"name\":\"礼物-小心心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":116},{\"amount\":8,\"isNotice\":0,\"name\":\"钻石*8\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":117},{\"amount\":10,\"isNotice\":0,\"name\":\"礼物-心相印*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":118},{\"amount\":21,\"isNotice\":1,\"name\":\"礼物-甜甜圈*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":119},{\"amount\":52,\"isNotice\":1,\"name\":\"礼物-棒棒糖*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":120},{\"amount\":99,\"isNotice\":1,\"name\":\"钻石*99\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":121},{\"amount\":128,\"isNotice\":1,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":122},{\"amount\":158,\"isNotice\":1,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":123}]","startTime":"2020-11-24 00:00:00","id":63,"operatorId":34,"rewardLotteryCount":2300796,"openRewardDiamonds":23974491,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga","updateTime":"2020-11-24 16:52:31","sort":30,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif","remainLotteryDiamonds":12349,"openPayDiamonds":23007960,"createTime":"2019-10-16 18:36:18","name":"普通宝箱","remainLotteryCount":1204,"endTime":"2020-11-26 23:59:59","activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":6990255,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png","delFlag":false,"operatorName":"程杰","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":1,\"name\":\"礼物-甜甜圈\",\"isNew\":0,\"lotteryId\":181},{\"isNotice\":1,\"name\":\"礼物-棒棒糖\",\"isNew\":0,\"lotteryId\":182},{\"isNotice\":1,\"name\":\"礼物-么么哒\",\"isNew\":0,\"lotteryId\":183},{\"isNotice\":1,\"name\":\"礼物-麦克风\",\"isNew\":0,\"lotteryId\":184},{\"isNotice\":1,\"name\":\"礼物-玫瑰花\",\"isNew\":0,\"lotteryId\":185}]","id":69,"operatorId":75,"rewardLotteryCount":6990255,"openRewardDiamonds":67901769,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga","updateTime":"2020-06-29 18:33:46","sort":30,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif","remainLotteryDiamonds":12309,"openPayDiamonds":69902550,"createTime":"2020-01-11 11:37:53","name":"普通宝箱","remainLotteryCount":196,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":220031,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\",\"decorationId\":211,\"decorationName\":\"慵懒的猫个人名牌\"}","lotteryRules":"[{\"amount\":108,\"isReward\":0,\"isNotice\":0,\"name\":\"钻石*108\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":124},{\"amount\":128,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":125},{\"amount\":158,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":126},{\"amount\":188,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-怦然心动*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":127},{\"amount\":233,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-可爱小熊*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":128},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天使之心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":129},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-果果冰*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":130},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":132},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":133},{\"amount\":3344,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":134}]","id":64,"operatorId":34,"rewardLotteryCount":220031,"openRewardDiamonds":46225515,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga","updateTime":"2021-06-02 15:00:48","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif","remainLotteryDiamonds":413355,"openPayDiamonds":46206510,"createTime":"2019-10-16 18:38:39","name":"白银宝箱","remainLotteryCount":1969,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"","openedTimes":518608,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-魔力法典*1 天\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":396},{\"amount\":10,\"isNotice\":0,\"name\":\"钻石*10\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":395},{\"amount\":99,\"isNotice\":0,\"name\":\"魅力值礼物-水晶粽\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":394}]","startTime":"2020-11-16 00:00:00","id":70,"operatorId":34,"rewardLotteryCount":518608,"openRewardDiamonds":105724795,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga","updateTime":"2020-11-19 15:36:17","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif","remainLotteryDiamonds":10682,"openPayDiamonds":108906423,"createTime":"2020-01-11 11:46:04","name":"白银宝箱","remainLotteryCount":294,"endTime":"2020-11-18 23:59:59","activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"2\",\"times\":\"5\"},{\"price\":\"3\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":90508,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png","delFlag":false,"operatorName":"梁鑫宇","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":0,\"name\":\"礼物-可爱小熊*\",\"isNew\":0,\"lotteryId\":135},{\"isNotice\":0,\"name\":\"钻石*388\",\"isNew\":0,\"lotteryId\":136},{\"isNotice\":0,\"name\":\"礼物-天使之心*\",\"isNew\":0,\"lotteryId\":137},{\"isNotice\":0,\"name\":\"礼物-果果冰*\",\"isNew\":0,\"lotteryId\":138},{\"isNotice\":1,\"name\":\"钻石*788\",\"isNew\":0,\"lotteryId\":139},{\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"isNew\":0,\"lotteryId\":140},{\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"isNew\":0,\"lotteryId\":141},{\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"isNew\":0,\"lotteryId\":142},{\"isNotice\":1,\"name\":\"礼物-爱神之箭*\",\"isNew\":0,\"lotteryId\":143},{\"isNotice\":1,\"name\":\"礼物-心愿灯*\",\"isNew\":0,\"lotteryId\":144},{\"isNotice\":1,\"name\":\"座位框-花蝴蝶*1 天\",\"isNew\":0,\"lotteryId\":145},{\"isNotice\":1,\"name\":\"座位框-精灵梦*1 天\",\"isNew\":0,\"lotteryId\":146}]","id":65,"operatorId":55,"rewardLotteryCount":90508,"openRewardDiamonds":54735115,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga","updateTime":"2020-01-11 12:06:41","sort":10,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif","remainLotteryDiamonds":917525,"openPayDiamonds":60278328,"createTime":"2019-10-16 18:42:34","name":"黄金宝箱","remainLotteryCount":1492,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":503767,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":3,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天气泡\"}","lotteryRules":"[{\"amount\":222,\"isNotice\":0,\"name\":\"礼物-玫瑰花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":196},{\"amount\":233,\"isNotice\":0,\"name\":\"礼物-可爱小熊\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":197},{\"amount\":266,\"isNotice\":0,\"name\":\"礼物-天使之心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":198},{\"amount\":520,\"isNotice\":0,\"name\":\"礼物-果果冰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":199},{\"amount\":999,\"isNotice\":1,\"name\":\"礼物-樱花雨\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":200},{\"amount\":1314,\"isNotice\":1,\"name\":\"礼物-爱的告白\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":201},{\"amount\":3344,\"isNotice\":1,\"name\":\"礼物-永恒印记\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":202},{\"amount\":7777,\"isNotice\":1,\"name\":\"礼物-爱神之箭\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":203},{\"amount\":26666,\"isNotice\":1,\"name\":\"礼物-心愿灯\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":204},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-镜花*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":205},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-水月*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":206},{\"amount\":300,\"isNotice\":0,\"name\":\"礼物-粉色情书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":271}]","id":71,"operatorId":34,"rewardLotteryCount":503767,"openRewardDiamonds":330019417,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga","updateTime":"2020-11-19 18:52:40","sort":10,"labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif","remainLotteryDiamonds":283546,"openPayDiamonds":335508822,"createTime":"2020-01-11 12:01:31","name":"黄金宝箱","remainLotteryCount":503,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"2","openedTimes":18,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":9,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\",\"decorationId\":204,\"decorationName\":\"主页特效主页特效\"}","lotteryRules":"[{\"amount\":50,\"isReward\":0,\"probability\":0,\"isNotice\":0,\"name\":\"礼物-森林之星*\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":392},{\"amount\":10,\"isReward\":0,\"probability\":100,\"isNotice\":0,\"name\":\"座位框-萌爪爪*5 天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":326}]","id":97,"operatorId":34,"rewardLotteryCount":18,"openRewardDiamonds":730,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga","updateTime":"2021-04-08 18:15:18","sort":2,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif","remainLotteryDiamonds":8220,"openPayDiamonds":180,"createTime":"2020-06-29 18:51:02","name":"普通的","remainLotteryCount":182,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"}]","isActivate":true,"status":1},{"remark":"11111","staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/fee27761b55047fd975c569337003103.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/5c1995d78acb4ad4b99c4a7907bb7381.png","lotteryActivityId":126,"createTime":"2020-11-20 14:09:25","startTime":"2020-11-21 00:00:00","id":16,"endTime":"2020-11-21 23:59:59","content":"","activityH5Url":"","status":2},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/e3545401910a414c9c2dcef60c67e503.webp\",\"decorationId\":193,\"decorationName\":\"魔力法典座位框\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"魅力值礼物-壁咚主播\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":401}]","id":126,"operatorId":34,"openRewardDiamonds":0,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/e450922000bd40ce9e888296542bbf5e.svga","updateTime":"2020-11-20 14:10:35","sort":1,"labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/91968aadf5674df8ad183e8160a81d5d.png","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/2cc4a494096b47239c6daae31023c8ff.webp","remainLotteryDiamonds":1,"openPayDiamonds":0,"createTime":"2020-11-20 14:09:25","name":"测试","remainLotteryCount":1,"activityType":1,"priceRules":"[{\"price\":\"100\",\"times\":\"1\"}]","isActivate":false,"status":0}],"pageNum":1,"navigatePages":8,"total":9,"pages":1,"size":9,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-06 18:12:59.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:12:59.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:12:59.766] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-07-06 18:12:59.767] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 18:12:59:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-07-06 18:12:59.767] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 516毫秒======
[2021-07-06 18:12:59.798] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:12:59.798] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:12:59.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:12:59.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:12:59.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:12:59.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 18:12:59.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:12:59.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 18:12:59.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:12:59.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 18:12:59.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:12:59.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 18:12:59.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:12:59.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-07-06 18:12:59:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 10:12:59 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"1a7692800e004d21ac199101b02bd471\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"1a7692800e004d21ac199101b02bd471\",\"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, 06 Jul 2021 10:12:59 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\":9,\"list\":[{\"remark\":\"1\",\"openedTimes\":4,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4861fc911ca4c32b6e3f11b61de19ca.png\",\"lotteryActivityId\":128,\"createTime\":\"2020-11-20 14:12:14\",\"startTime\":\"2020-11-01 00:00:00\",\"id\":17,\"endTime\":\"2020-11-28 23:59:59\",\"content\":\"\",\"activityH5Url\":\"\",\"status\":2},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-课代表*永久\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":402}]\",\"startTime\":\"2020-11-01 00:00:00\",\"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\":\"2020-11-24 13:39:13\",\"sort\":111,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png\",\"remainLotteryDiamonds\":1,\"openPayDiamonds\":4,\"createTime\":\"2020-11-20 14:12:15\",\"name\":\"123\",\"remainLotteryCount\":1,\"endTime\":\"2020-11-23 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"没后悔过控件工具库\",\"openedTimes\":2300796,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png\",\"lotteryActivityId\":63,\"createTime\":\"2020-11-19 17:49:32\",\"startTime\":\"2020-11-18 00:00:00\",\"id\":14,\"endTime\":\"2020-11-30 23:59:59\",\"content\":\"邂逅2\",\"activityH5Url\":\"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1\",\"status\":2},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":123,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小黄鸭*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":115},{\\\"amount\\\":6,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小心心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":116},{\\\"amount\\\":8,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*8\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":117},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-心相印*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":118},{\\\"amount\\\":21,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":119},{\\\"amount\\\":52,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":120},{\\\"amount\\\":99,\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*99\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":121},{\\\"amount\\\":128,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":122},{\\\"amount\\\":158,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":123}]\",\"startTime\":\"2020-11-24 00:00:00\",\"id\":63,\"operatorId\":34,\"rewardLotteryCount\":2300796,\"openRewardDiamonds\":23974491,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga\",\"updateTime\":\"2020-11-24 16:52:31\",\"sort\":30,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif\",\"remainLotteryDiamonds\":12349,\"openPayDiamonds\":23007960,\"createTime\":\"2019-10-16 18:36:18\",\"name\":\"普通宝箱\",\"remainLotteryCount\":1204,\"endTime\":\"2020-11-26 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":6990255,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png\",\"delFlag\":false,\"operatorName\":\"程杰\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":181},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":182},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":183},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":184},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":185}]\",\"id\":69,\"operatorId\":75,\"rewardLotteryCount\":6990255,\"openRewardDiamonds\":67901769,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga\",\"updateTime\":\"2020-06-29 18:33:46\",\"sort\":30,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif\",\"remainLotteryDiamonds\":12309,\"openPayDiamonds\":69902550,\"createTime\":\"2020-01-11 11:37:53\",\"name\":\"普通宝箱\",\"remainLotteryCount\":196,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":220031,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\\\",\\\"decorationId\\\":211,\\\"decorationName\\\":\\\"慵懒的猫个人名牌\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":108,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*108\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":124},{\\\"amount\\\":128,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":125},{\\\"amount\\\":158,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":126},{\\\"amount\\\":188,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-怦然心动*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":127},{\\\"amount\\\":233,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":128},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":129},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":130},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":132},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":133},{\\\"amount\\\":3344,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":134}]\",\"id\":64,\"operatorId\":34,\"rewardLotteryCount\":220031,\"openRewardDiamonds\":46225515,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga\",\"updateTime\":\"2021-06-02 15:00:48\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif\",\"remainLotteryDiamonds\":413355,\"openPayDiamonds\":46206510,\"createTime\":\"2019-10-16 18:38:39\",\"name\":\"白银宝箱\",\"remainLotteryCount\":1969,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"\",\"openedTimes\":518608,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-魔力法典*1 天\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":396},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*10\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":395},{\\\"amount\\\":99,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-水晶粽\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":394}]\",\"startTime\":\"2020-11-16 00:00:00\",\"id\":70,\"operatorId\":34,\"rewardLotteryCount\":518608,\"openRewardDiamonds\":105724795,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga\",\"updateTime\":\"2020-11-19 15:36:17\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif\",\"remainLotteryDiamonds\":10682,\"openPayDiamonds\":108906423,\"createTime\":\"2020-01-11 11:46:04\",\"name\":\"白银宝箱\",\"remainLotteryCount\":294,\"endTime\":\"2020-11-18 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"2\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"3\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":90508,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png\",\"delFlag\":false,\"operatorName\":\"梁鑫宇\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":135},{\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*388\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":136},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":137},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":138},{\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*788\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":139},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":140},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":141},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":142},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":143},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":144},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-花蝴蝶*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":145},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-精灵梦*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":146}]\",\"id\":65,\"operatorId\":55,\"rewardLotteryCount\":90508,\"openRewardDiamonds\":54735115,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga\",\"updateTime\":\"2020-01-11 12:06:41\",\"sort\":10,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif\",\"remainLotteryDiamonds\":917525,\"openPayDiamonds\":60278328,\"createTime\":\"2019-10-16 18:42:34\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":1492,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":503767,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":3,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":222,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":196},{\\\"amount\\\":233,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":197},{\\\"amount\\\":266,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":198},{\\\"amount\\\":520,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":199},{\\\"amount\\\":999,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":200},{\\\"amount\\\":1314,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":201},{\\\"amount\\\":3344,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":202},{\\\"amount\\\":7777,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":203},{\\\"amount\\\":26666,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":204},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-镜花*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":205},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-水月*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":206},{\\\"amount\\\":300,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-粉色情书\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":271}]\",\"id\":71,\"operatorId\":34,\"rewardLotteryCount\":503767,\"openRewardDiamonds\":330019417,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga\",\"updateTime\":\"2020-11-19 18:52:40\",\"sort\":10,\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif\",\"remainLotteryDiamonds\":283546,\"openPayDiamonds\":335508822,\"createTime\":\"2020-01-11 12:01:31\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":503,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"2\",\"openedTimes\":18,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":9,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\\\",\\\"decorationId\\\":204,\\\"decorationName\\\":\\\"主页特效主页特效\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":50,\\\"isReward\\\":0,\\\"probability\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-森林之星*\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":392},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"probability\\\":100,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-萌爪爪*5 天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":326}]\",\"id\":97,\"operatorId\":34,\"rewardLotteryCount\":18,\"openRewardDiamonds\":730,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga\",\"updateTime\":\"2021-04-08 18:15:18\",\"sort\":2,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif\",\"remainLotteryDiamonds\":8220,\"openPayDiamonds\":180,\"createTime\":\"2020-06-29 18:51:02\",\"name\":\"普通的\",\"remainLotteryCount\":182,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"11111\",\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/fee27761b55047fd975c569337003103.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/5c1995d78acb4ad4b99c4a7907bb7381.png\",\"lotteryActivityId\":126,\"createTime\":\"2020-11-20 14:09:25\",\"startTime\":\"2020-11-21 00:00:00\",\"id\":16,\"endTime\":\"2020-11-21 23:59:59\",\"content\":\"\",\"activityH5Url\":\"\",\"status\":2},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/e3545401910a414c9c2dcef60c67e503.webp\\\",\\\"decorationId\\\":193,\\\"decorationName\\\":\\\"魔力法典座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-壁咚主播\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":401}]\",\"id\":126,\"operatorId\":34,\"openRewardDiamonds\":0,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/e450922000bd40ce9e888296542bbf5e.svga\",\"updateTime\":\"2020-11-20 14:10:35\",\"sort\":1,\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/91968aadf5674df8ad183e8160a81d5d.png\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/2cc4a494096b47239c6daae31023c8ff.webp\",\"remainLotteryDiamonds\":1,\"openPayDiamonds\":0,\"createTime\":\"2020-11-20 14:09:25\",\"name\":\"测试\",\"remainLotteryCount\":1,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":false,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":9,\"pages\":1,\"size\":9,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-06 18:12:59:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 516毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"516毫秒","endTime":"2021-07-06 18:12:59","id":0,"serviceId":1,"startTime":"2021-07-06 18:12:59","status":1}
[2021-07-06 18:13:00.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:00.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:00.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 18:13:00.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:00.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:00.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 18:13:00.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 18:13:00.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:00 GMT
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:00.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:00.713] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 18:13:00:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-07-06 18:13:00.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:00.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:00.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:00.786] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:00.839] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:01 GMT
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"5ceb25a37e904cf080a143ca9d641192","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:00.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:00.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:00.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:00.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:00.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:01 GMT
[2021-07-06 18:13:00.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:00.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:00.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:00.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"245bc10f1ae44d6e8cbe940c200492d1","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:13:00.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:00.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:00.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-06 18:13:00.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:01.045] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:01.045] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:01.045] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-06 18:13:01.045] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:01.045] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:01.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:245bc10f1ae44d6e8cbe940c200492d1
[2021-07-06 18:13:01.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:01.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:01.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-07-06 18:13:01.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:01.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-07-06 18:13:01.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:01.046] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:01.270] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:01 GMT
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:01.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:01.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:01.272] [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":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":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"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":1,"virtualProductId":317,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-11-24 13:53:02","playMethod":"[{\"chainNum\":\"5\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/8c5af3e355f64274a777ac6a89378c42.svga\",\"remark\":\"心中有我\"}]","id":93,"virtualProductId":317}],"virtualProductActivity":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/8ae8aa6147c34995aace718f8ac33983.png","createTime":"2020-11-19 15:15:13","refType":1,"id":7,"virtualProductId":317,"content":"随时随地 找人陪你打游戏","activityH5Url":"https%2525253A%2525252F%2525252Fapp.apeiwan.com%2525252Fpipi20200624%2525252Findex.html%2525253FhideNavi%2525253D1%25252526source%2525253Dgift","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/5c4f4319af694a19965c29b3569d5182.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/f3ff156f321d49b58212f75fe1176f5a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":24,"price":1,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1dda9417f9ef4d479f015693884a6fe4.png","id":317,"objectGifUrl":"","giftType":1,"sort":1000,"charmValue":1,"limitUpdateTime":"2020-06-20 17:03:34","useStatus":1,"name":"荧光棒","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/089dd3f5536346f1af5d1e45b0da06a3.png","createTime":"2020-06-20 17:03:34"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":2,"virtualProductId":318,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-20 17:55:53","playMethod":"[{\"chainNum\":\"198\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/20/f13b90a3e3204291a83f39a3e6643b4d.svga\",\"remark\":\"一九八\"}]","id":2,"virtualProductId":318}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/214c5ff084fc4eb8a5f99ab74f83ec69.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/86ed37ea7cab483097d0a4e4243f9d4a.png","id":318,"objectGifUrl":"","giftType":1,"sort":1000,"charmValue":1,"limitUpdateTime":"2020-06-20 17:55:54","useStatus":1,"name":"萤火虫","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/fe5ac06e7cac47fda36e91c4df91f25f.png","createTime":"2020-06-20 17:55:54"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":3,"virtualProductId":319,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-20 17:57:22","playMethod":"[{\"chainNum\":\"99\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/20/89937e07e2674b899c5e5b599fdd6c92.svga\",\"remark\":\"长长久久\"}]","id":3,"virtualProductId":319}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/ec5172e646ea4821b8232d16b4509bdb.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":5,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/3ba87eae92af4e6b9a2d9fd6ef3d4017.png","id":319,"objectGifUrl":"","giftType":1,"sort":990,"charmValue":5,"limitUpdateTime":"2020-06-20 17:57:22","useStatus":1,"name":"鼓掌","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/3604810aec3c4027ab5c0cbf22078ab3.png","createTime":"2020-06-20 17:57:22"}}],"pageNum":1,"navigatePages":8,"total":43,"pages":5,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-06 18:13:01.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:01.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:01.274] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-07-06 18:13:01.275] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 18:13:01:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-07-06 18:13:01.275] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 562毫秒======
[2021-07-06 18:13:01.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:13:01.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:01.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-07-06 18:13:00:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 10:13:01 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"5ceb25a37e904cf080a143ca9d641192\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 10:13:01 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"245bc10f1ae44d6e8cbe940c200492d1\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"245bc10f1ae44d6e8cbe940c200492d1\",\"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, 06 Jul 2021 10:13:01 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\":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\":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\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":1,\"virtualProductId\":317,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-11-24 13:53:02\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"5\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/8c5af3e355f64274a777ac6a89378c42.svga\\\",\\\"remark\\\":\\\"心中有我\\\"}]\",\"id\":93,\"virtualProductId\":317}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/8ae8aa6147c34995aace718f8ac33983.png\",\"createTime\":\"2020-11-19 15:15:13\",\"refType\":1,\"id\":7,\"virtualProductId\":317,\"content\":\"随时随地 找人陪你打游戏\",\"activityH5Url\":\"https%2525253A%2525252F%2525252Fapp.apeiwan.com%2525252Fpipi20200624%2525252Findex.html%2525253FhideNavi%2525253D1%25252526source%2525253Dgift\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/5c4f4319af694a19965c29b3569d5182.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/f3ff156f321d49b58212f75fe1176f5a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":24,\"price\":1,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1dda9417f9ef4d479f015693884a6fe4.png\",\"id\":317,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1000,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-20 17:03:34\",\"useStatus\":1,\"name\":\"荧光棒\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/089dd3f5536346f1af5d1e45b0da06a3.png\",\"createTime\":\"2020-06-20 17:03:34\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":2,\"virtualProductId\":318,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-20 17:55:53\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"198\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/20/f13b90a3e3204291a83f39a3e6643b4d.svga\\\",\\\"remark\\\":\\\"一九八\\\"}]\",\"id\":2,\"virtualProductId\":318}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/214c5ff084fc4eb8a5f99ab74f83ec69.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/86ed37ea7cab483097d0a4e4243f9d4a.png\",\"id\":318,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1000,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-20 17:55:54\",\"useStatus\":1,\"name\":\"萤火虫\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/fe5ac06e7cac47fda36e91c4df91f25f.png\",\"createTime\":\"2020-06-20 17:55:54\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":3,\"virtualProductId\":319,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-20 17:57:22\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"99\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/20/89937e07e2674b899c5e5b599fdd6c92.svga\\\",\\\"remark\\\":\\\"长长久久\\\"}]\",\"id\":3,\"virtualProductId\":319}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/20/ec5172e646ea4821b8232d16b4509bdb.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":5,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/3ba87eae92af4e6b9a2d9fd6ef3d4017.png\",\"id\":319,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":990,\"charmValue\":5,\"limitUpdateTime\":\"2020-06-20 17:57:22\",\"useStatus\":1,\"name\":\"鼓掌\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/3604810aec3c4027ab5c0cbf22078ab3.png\",\"createTime\":\"2020-06-20 17:57:22\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":43,\"pages\":5,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-06 18:13:01:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 562毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"562毫秒","endTime":"2021-07-06 18:13:01","id":0,"serviceId":1,"startTime":"2021-07-06 18:13:00","status":1}
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 18:13:01.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:01.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 18:13:01.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:02 GMT
[2021-07-06 18:13:01.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 18:13:01.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:01.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:01.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 18:13:01.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:01.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:02.338] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 18:13:02:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-07-06 18:13:02.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:02.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:02.422] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:02.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:02 GMT
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:02.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:02.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:02.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"bfc50f4c556f40f08d24ea83f26517ab","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:13:02.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:02.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:02.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:13:02.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:bfc50f4c556f40f08d24ea83f26517ab
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774138, pageSize=10, pageNum=1}
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:02.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774138&pageSize=10&pageNum=1
[2021-07-06 18:13:02.560] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:02.560] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:02 GMT
[2021-07-06 18:13:02.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:02.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:02.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:02.670] [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":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203564,"chargeBalance":1.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-01 15:30:38","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"userCode":"146530220","loginTime":"2021-07-01 15:24:51","nickname":"test","registIp":"61.183.246.70","virtualBalance":1,"isCancel":false,"memberLevel":0,"mobile":"13823774138","imPsw":"8b1c5d54d9fd493ca85c3e8d3a9ef836","updateTime":"2021-05-07 11:22:16","quickServerStatus":0,"imId":"2203564_20210507","scoreAvg":4.0,"charm":0,"createTime":"2021-05-07 11:22:14","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-07-06 18:13:02.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:02.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:02.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-06 18:13:02.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:bfc50f4c556f40f08d24ea83f26517ab
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774138, nickname=test, remark=1, chargeBalance=1.00, userId=2203564, searchValue=2203564}
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774138&nickname=test&remark=1&chargeBalance=1.00&userId=2203564&searchValue=2203564
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:02.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:03 GMT
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:03.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:03.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-06 18:13:03.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:03.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:03.111] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMoneyDetailsSave--Test Mthod Success
[2021-07-06 18:13:03.112] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 18:13:03:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-07-06 18:13:03.112] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 774毫秒======
[2021-07-06 18:13:03.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:13:03.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:03.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-07-06 18:13:02:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 10:13:02 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"bfc50f4c556f40f08d24ea83f26517ab\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"bfc50f4c556f40f08d24ea83f26517ab\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774138\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774138&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, 06 Jul 2021 10:13:02 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\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203564,\"chargeBalance\":1.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-01 15:30:38\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"146530220\",\"loginTime\":\"2021-07-01 15:24:51\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":1,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774138\",\"imPsw\":\"8b1c5d54d9fd493ca85c3e8d3a9ef836\",\"updateTime\":\"2021-05-07 11:22:16\",\"quickServerStatus\":0,\"imId\":\"2203564_20210507\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-07 11:22:14\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"bfc50f4c556f40f08d24ea83f26517ab\",\"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\":\"13823774138\",\"nickname\":\"test\",\"remark\":\"1\",\"chargeBalance\":\"1.00\",\"userId\":\"2203564\",\"searchValue\":\"2203564\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774138&nickname=test&remark=1&chargeBalance=1.00&userId=2203564&searchValue=2203564\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, 06 Jul 2021 10:13:03 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-06 18:13:03:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 774毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"774毫秒","endTime":"2021-07-06 18:13:03","id":0,"serviceId":1,"startTime":"2021-07-06 18:13:02","status":1}
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:03 GMT
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:03.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:03.926] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 18:13:03:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======
[2021-07-06 18:13:03.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:03.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:04.000] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:04.056] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:04.056] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:04.056] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:04.056] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:04.056] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:04.056] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:04.056] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:04.056] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:13:04.057] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:04 GMT
[2021-07-06 18:13:04.057] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:04.057] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:04.057] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:04.057] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"afa0a9c37eab44a3bff417afc4a566b6","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:13:04.057] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:04.057] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:04.057] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:04.057] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:04.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:04.188] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:04.188] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:04.188] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:04.188] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:04 GMT
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"c01ca163b234429c81e345f13275c71d","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:04.189] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:13:04.190] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c01ca163b234429c81e345f13275c71d
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:04.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:04.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:04.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:04.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:04.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:04.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:04.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:04.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:04.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:04.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:04 GMT
[2021-07-06 18:13:04.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:04.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:04.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:04.351] [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":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-06 17:29:09","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-06 17:29:08","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"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-07-06 18:13:04.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:04.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:04.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/room/list
[2021-07-06 18:13:04.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:04.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:04.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:04.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/room/list
[2021-07-06 18:13:04.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:04.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:04.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:afa0a9c37eab44a3bff417afc4a566b6
[2021-07-06 18:13:04.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:04.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:04.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1, userId=2203657}
[2021-07-06 18:13:04.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:04.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1&userId=2203657
[2021-07-06 18:13:04.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:04.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:04 GMT
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:04.507] [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,"endRow":1,"list":[{"hostUserId":2203657,"scoreWeight":2,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":3085,"virtualPeople":1,"roomType":1,"realPeople":0,"roomNo":"TEST833760","recommendWeight":0,"sort":999,"guildId":232,"roomName":"我的厅1","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":true,"isHot":false,"template":1,"hostMobile":"13823774131","remark":"我的厅1","roomCode":"TEST833760","guildCode":"18306720","sortWeight":0,"guildName":"心玄的公会","isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","orderRoomSerial":"1","openTime":"2021-07-06 17:32:09","roomCategoryId":2,"collectCount":0,"micDuration":900,"isShow":true,"hostUserName":"test","createTime":"2021-07-06 17:32:09"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:04.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:04.508] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomList--Test Mthod Success
[2021-07-06 18:13:04.508] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 18:13:04:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======
[2021-07-06 18:13:04.508] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 582毫秒======
[2021-07-06 18:13:04.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:13:04.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:04.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询房间","caseLog":"======2021-07-06 18:13:03:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 10:13:04 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"afa0a9c37eab44a3bff417afc4a566b6\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 10:13:04 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"c01ca163b234429c81e345f13275c71d\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c01ca163b234429c81e345f13275c71d\",\"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, 06 Jul 2021 10:13: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,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-06 17:29:09\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-06 17:29:08\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/room/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"afa0a9c37eab44a3bff417afc4a566b6\",\"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, 06 Jul 2021 10:13: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,\"endRow\":1,\"list\":[{\"hostUserId\":2203657,\"scoreWeight\":2,\"roomInfoTagList\":[],\"roomStatus\":1,\"password\":\"123456\",\"isOpenChat\":true,\"roomCategoryName\":\"派单\",\"id\":3085,\"virtualPeople\":1,\"roomType\":1,\"realPeople\":0,\"roomNo\":\"TEST833760\",\"recommendWeight\":0,\"sort\":999,\"guildId\":232,\"roomName\":\"我的厅1\",\"roomInfoTagConfigList\":[],\"roomVipCount\":15,\"basicHotValue\":0,\"isActivate\":true,\"isHot\":false,\"template\":1,\"hostMobile\":\"13823774131\",\"remark\":\"我的厅1\",\"roomCode\":\"TEST833760\",\"guildCode\":\"18306720\",\"sortWeight\":0,\"guildName\":\"心玄的公会\",\"isLock\":false,\"roomIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg\",\"orderRoomSerial\":\"1\",\"openTime\":\"2021-07-06 17:32:09\",\"roomCategoryId\":2,\"collectCount\":0,\"micDuration\":900,\"isShow\":true,\"hostUserName\":\"test\",\"createTime\":\"2021-07-06 17:32:09\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-06 18:13:04:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======\r\n======本次用例运行消耗时间 582毫秒======\r","caseName":"testRoomList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"582毫秒","endTime":"2021-07-06 18:13:04","id":0,"serviceId":1,"startTime":"2021-07-06 18:13:03","status":1}
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:04 GMT
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:04.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:04.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 18:13:04.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:04.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:05.259] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-06 18:13:05:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-07-06 18:13:05.260] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:05.260] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:05.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:05.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:05.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-06 18:13:05.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:05.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:05.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:05.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:05.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-06 18:13:05.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:05.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-06 18:13:05.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:05.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:05 GMT
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:05.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:05.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:05.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"077501f3049b42f3b1de122bd9111968","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-06 18:13:05.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:05.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:05.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:13:05.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:05.466] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:05.466] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:077501f3049b42f3b1de122bd9111968
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774138, pageSize=10, pageNum=1}
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774138&pageSize=10&pageNum=1
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:05.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:05.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:05.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:05.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:05.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:05.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:05.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:05 GMT
[2021-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:05.534] [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":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203564,"chargeBalance":2.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-01 15:30:38","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"userCode":"146530220","loginTime":"2021-07-01 15:24:51","nickname":"test","registIp":"61.183.246.70","virtualBalance":1,"isCancel":false,"memberLevel":0,"mobile":"13823774138","imPsw":"8b1c5d54d9fd493ca85c3e8d3a9ef836","updateTime":"2021-05-07 11:22:16","quickServerStatus":0,"imId":"2203564_20210507","scoreAvg":4.0,"charm":0,"createTime":"2021-05-07 11:22:14","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-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-06 18:13:05.534] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:077501f3049b42f3b1de122bd9111968
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, remark=1, type=1, userId=2203564}
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&remark=1&type=1&userId=2203564
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:05.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:05 GMT
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-06 18:13:05.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:05.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:05.744] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testVirtualMoneyModify--Test Mthod Success
[2021-07-06 18:13:05.744] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-06 18:13:05:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-07-06 18:13:05.745] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 485毫秒======
[2021-07-06 18:13:05.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:13:05.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:05.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:05.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:05.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-06 18:13:05.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 18:13:05.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:05.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 18:13:05.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:05.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 18:13:05.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:05.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 18:13:05.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:05.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-07-06 18:13:05:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/login\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"password\":\"ZnVsdTk5NjM1\",\"username\":\"admin\"}\r\n###Http Request queryString after URLEncoder### :\r\npassword=ZnVsdTk5NjM1&username=admin\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"776\",\"Date\":\"Tue, 06 Jul 2021 10:13:05 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":34,\"updateTime\":\"2018-09-29 18:53:26\",\"token\":\"077501f3049b42f3b1de122bd9111968\",\"createTime\":\"2018-09-29 18:53:24\",\"newUser\":false,\"name\":\"admin\",\"username\":\"admin\",\"status\":1},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"077501f3049b42f3b1de122bd9111968\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774138\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774138&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, 06 Jul 2021 10:13:05 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\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203564,\"chargeBalance\":2.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-01 15:30:38\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"146530220\",\"loginTime\":\"2021-07-01 15:24:51\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":1,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774138\",\"imPsw\":\"8b1c5d54d9fd493ca85c3e8d3a9ef836\",\"updateTime\":\"2021-05-07 11:22:16\",\"quickServerStatus\":0,\"imId\":\"2203564_20210507\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-07 11:22:14\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"077501f3049b42f3b1de122bd9111968\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":1,\"remark\":\"1\",\"type\":1,\"userId\":\"2203564\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&remark=1&type=1&userId=2203564\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, 06 Jul 2021 10:13:05 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-06 18:13:05:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 485毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"485毫秒","endTime":"2021-07-06 18:13:05","id":0,"serviceId":1,"startTime":"2021-07-06 18:13:05","status":1}
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:06 GMT
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:06.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:06.741] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomList
[2021-07-06 18:13:06.741] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-07-06 18:13:06.741] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testVirtualMoneyModify
[2021-07-06 18:13:06.741] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-07-06 18:13:06.741] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMoneyDetailsSave
[2021-07-06 18:13:06.741] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:5
[2021-07-06 18:13:06.741] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-07-06 18:13:06.741] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-07-06 18:13:06.746] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-07-06 18:13:06.747] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-07-06 18:13:06.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-06 18:13:06.752] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-06 18:13:06.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"07秒684毫秒","endTime":"2021-07-06 18:13:06","env":"pre-test","failed":0,"id":0,"passed":5,"serviceId":1,"skipped":0,"startTime":"2021-07-06 18:12:59","status":1,"teamId":0,"total":5}
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 06 Jul 2021 10:13:08 GMT
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-06 18:13:07.776] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-06 18:13:07.777] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-07-06 18:13:06:测试集结束======
[2021-07-06 18:13:07.777] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 07秒684毫秒======