debug.log
585 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
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
[2021-09-02 16:32:39.293] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-09-02 16:32:39.362] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-09-02 16:32:39:测试集开始======
[2021-09-02 16:32:39.616] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-09-02 16:32:39.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:42.217] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:42.217] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:42.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-09-02 16:32:42.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:42.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:42.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:42.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:42.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-09-02 16:32:42.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:42.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-09-02 16:32:42.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:42.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:42.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:42.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:42.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:42.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:42.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:32:42.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:42.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:42.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-09-02 16:32:42.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:42 GMT
[2021-09-02 16:32:42.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:42.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:42.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:42.366] [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":"c06082b5c7924835ac33b74b79a07091","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-09-02 16:32:42.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:42.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:42.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-09-02 16:32:42.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:42.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:42.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:42.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-09-02 16:32:42.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:42.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:42.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:42.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:42.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-09-02 16:32:42.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:42.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-09-02 16:32:42.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:42.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:42.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:42.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:42.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:42.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:42.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:43 GMT
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:42.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:42.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-09-02 16:32:42.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:44.029] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:44.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:44 GMT
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:44.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:44.165] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":0,"platformAuth":0,"type":1,"userCode":"115032550","nickname":"沉着的电脑","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","memberExp":18,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","imId":"5523051_20210831","token":"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051","createTime":"2021-08-31 11:13:53","newUser":false,"status":1},"status":200}
[2021-09-02 16:32:44.165] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:44.165] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:44.165] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-09-02 16:32:44.165] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:44.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:44.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:44.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-09-02 16:32:44.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:44.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:44.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:44.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:44.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-09-02 16:32:44.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:44.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-09-02 16:32:44.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:44.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:44.417] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:44.417] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:44 GMT
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:44.418] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:44.419] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-09-02 16:32:44.419] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:44.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:44.585] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:44.585] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-09-02 16:32:44.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:44.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:44.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:44.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:44.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-09-02 16:32:44.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:44.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-09-02 16:32:44.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:44.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:44.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:44.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:44.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:931
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:45 GMT
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"platformAuth":0,"type":2,"userCode":"125032550","nickname":"test","id":5523052,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","imId":"5523052_20210831","token":"APP-e334a2edeba3466cb4b6ff161e19d896#5523052","createTime":"2021-08-31 11:13:54","newUser":false,"status":1},"status":200}
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:44.723] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:44.740] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:32:44:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-09-02 16:32:44.743] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-09-02 16:32:44.743] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:44.853] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:44.854] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:44.854] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-09-02 16:32:44.854] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:44.854] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:44.854] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:32:44.854] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:44.854] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:44.854] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-09-02 16:32:44.854] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:44.855] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-09-02 16:32:44.855] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:44.855] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:45.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:45.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:45.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:45.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:45.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:45.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:32:45.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:45.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:45.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:45 GMT
[2021-09-02 16:32:45.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:45.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:45.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:45.189] [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":"","openedTimes":140294,"staticUrl":"null","delFlag":false,"ruleStatus":1,"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,\"endTime\":1943313072000,\"id\":6323,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1427,\"name\":\"许愿瓶\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":266,\"endTime\":1943313072000,\"id\":6324,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1428,\"name\":\"喵克里里\",\"perCount\":82,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":406,\"endTime\":1943313072000,\"id\":6325,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1429,\"name\":\"林中鹿\",\"perCount\":120,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":520,\"endTime\":1943313072000,\"id\":6326,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1430,\"name\":\"流光溢彩\",\"perCount\":190,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":999,\"endTime\":1943313072000,\"id\":6327,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1431,\"name\":\"小精灵\",\"perCount\":180,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1314,\"endTime\":1943313072000,\"id\":6328,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1432,\"name\":\"环游星河\",\"perCount\":40,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":5200,\"endTime\":1943313072000,\"id\":6329,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1433,\"name\":\"恋爱星球\",\"perCount\":5,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":13140,\"endTime\":1943313072000,\"id\":6330,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1434,\"name\":\"逐爱星辰\",\"perCount\":3,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":66666,\"endTime\":1943313072000,\"id\":6332,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1435,\"name\":\"时光之恋\",\"perCount\":1,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":18888,\"endTime\":1943313072000,\"id\":6331,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1436,\"name\":\"魅力值礼物-爱恋之城\",\"perCount\":2,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":189,"operatorId":25,"rewardLotteryCount":140294,"openRewardDiamonds":133116134,"objectGifUrl":"null","updateTime":"2021-06-25 16:06:56","sort":121,"labelUrl":"null","version":1,"gifUrl":"null","remainLotteryDiamonds":614599,"openPayDiamonds":68030,"createTime":"2021-05-24 12:04:17","name":"梦幻糖果机","remainLotteryCount":683,"endTime":"2031-08-01 09:11:12","activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":819103,"staticUrl":"null","delFlag":false,"ruleStatus":1,"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,\"endTime\":1943313072000,\"id\":5842,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1414,\"name\":\"礼物-蓝色焰火*\",\"perCount\":392,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":30,\"endTime\":1943313072000,\"id\":5843,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1415,\"name\":\"礼物-小礼花*\",\"perCount\":440,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":52,\"endTime\":1943313072000,\"id\":5844,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1416,\"name\":\"礼物-点赞*\",\"perCount\":400,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":66,\"endTime\":1943313072000,\"id\":5845,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1417,\"name\":\"礼物-乐符*\",\"perCount\":350,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":99,\"endTime\":1943313072000,\"id\":5846,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1418,\"name\":\"礼物-水晶瓶*\",\"perCount\":250,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":213,\"endTime\":1943313072000,\"id\":5847,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1419,\"name\":\"礼物-天鹅之恋*\",\"perCount\":120,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":520,\"endTime\":1943313072000,\"id\":5848,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1420,\"name\":\"天生一对\",\"perCount\":30,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1314,\"endTime\":1943313072000,\"id\":5849,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1421,\"name\":\"一生有你\",\"perCount\":5,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":5200,\"endTime\":1943313072000,\"id\":5850,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1422,\"name\":\"为你摘星\",\"perCount\":4,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":2000,\"endTime\":1943313072000,\"id\":5851,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1423,\"name\":\"礼物-梦幻奇遇*\",\"perCount\":4,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":188,"operatorId":25,"rewardLotteryCount":819103,"openRewardDiamonds":72553941,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:19","sort":120,"labelUrl":"null","version":1,"gifUrl":"null","remainLotteryDiamonds":188247,"openPayDiamonds":123607,"createTime":"2021-05-24 11:55:16","name":"甜心糖果机","remainLotteryCount":1835,"endTime":"2031-08-01 09:11:12","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,"ruleStatus":1,"operatorName":"张迪","coverThreshold":0,"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"endTime\":1943313072000,\"id\":6694,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1289,\"name\":\"礼物-小开心\",\"perCount\":40,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1,\"endTime\":1943313072000,\"id\":6695,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1290,\"name\":\"礼物-小蛋糕\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1,\"endTime\":1943313072000,\"id\":6696,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1291,\"name\":\"礼物-小嘎嘎\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":5,\"endTime\":1943313072000,\"id\":6697,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1292,\"name\":\"礼物-鼓掌\",\"perCount\":100,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":157,"operatorId":139,"rewardLotteryCount":5,"openRewardDiamonds":5,"objectGifUrl":"null","updateTime":"2021-07-31 15:37:39","sort":113,"labelUrl":"null","version":1,"gifUrl":"null","remainLotteryDiamonds":775,"openPayDiamonds":0,"createTime":"2021-04-28 14:38:56","name":"梦幻测试","remainLotteryCount":295,"endTime":"2031-08-01 09:11:12","activityType":1,"priceRules":"[{\"price\":2,\"times\":1},{\"price\":10,\"times\":5},{\"price\":20,\"times\":10}]","isActivate":false,"status":0},{"remark":"","openedTimes":61,"delFlag":false,"ruleStatus":1,"operatorName":"张迪","coverThreshold":0,"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"endTime\":1943313072000,\"id\":6698,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1285,\"name\":\"礼物-甜甜草莓\",\"perCount\":40,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1,\"endTime\":1943313072000,\"id\":6699,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1286,\"name\":\"礼物-荧光棒\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1,\"endTime\":1943313072000,\"id\":6700,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1287,\"name\":\"礼物-萤火虫\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":7,\"endTime\":1943313072000,\"id\":6701,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1288,\"name\":\"礼物-小花朵\",\"perCount\":100,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":156,"operatorId":139,"rewardLotteryCount":61,"openRewardDiamonds":95,"updateTime":"2021-07-31 15:38:13","sort":111,"labelUrl":"","version":1,"remainLotteryDiamonds":1585,"openPayDiamonds":14,"createTime":"2021-04-28 14:37:13","name":"甜心测试","remainLotteryCount":339,"endTime":"2031-08-01 09:11:12","activityType":1,"priceRules":"[{\"price\":1,\"times\":1},{\"price\":5,\"times\":5},{\"price\":10,\"times\":10}]","isActivate":false,"status":0},{"remark":"","openedTimes":1709740,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/1c8c826736504450b1264ca94afefddd.png","delFlag":false,"ruleStatus":1,"operatorName":"张迪","lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/9/ae6c941f02ad40b48434702e24d30b47.png","lotteryActivityId":218,"createTime":"2021-08-01 19:45:57","id":150,"content":"","activityH5Url":"https://html-public.apeiwan.com/article/20210613/index.html","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/14/3b4d53610c82490b954de52a0b8059fb.png\",\"decorationId\":447,\"decorationName\":\"海心座位框\"}","lotteryRules":"[{\"amount\":26,\"endTime\":1943313072000,\"id\":6359,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1545,\"name\":\"魅力值礼物-一条咸鱼\",\"perCount\":383,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":36,\"endTime\":1943313072000,\"id\":6360,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1546,\"name\":\"礼物-水果冰棒*\",\"perCount\":450,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":52,\"endTime\":1943313072000,\"id\":6361,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1547,\"name\":\"礼物-小熊风扇*\",\"perCount\":470,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":99,\"endTime\":1943313072000,\"id\":6362,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1548,\"name\":\"礼物-冰镇西瓜*\",\"perCount\":391,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":109,\"endTime\":1943313072000,\"id\":6363,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1549,\"name\":\"礼物-加油鸭*\",\"perCount\":200,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":365,\"endTime\":1943313072000,\"id\":6364,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1550,\"name\":\"礼物-惬意一下*\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1099,\"endTime\":1943313072000,\"id\":6365,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1551,\"name\":\"魅力值礼物-夏日凉爽\",\"perCount\":22,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":7777,\"endTime\":1943313072000,\"id\":6366,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1570,\"name\":\"礼物-游艇派对*\",\"perCount\":4,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":218,"operatorId":139,"rewardLotteryCount":1709740,"openRewardDiamonds":170877897,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/a36e814bedac49e4a519cb061ace8147.svga","updateTime":"2021-08-01 19:45:58","sort":61,"labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/474d3470afd348adbcf50daca5c74479.png","version":1,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/90a9f35a3a7542a5a8101116193beb38.webp","remainLotteryDiamonds":147294,"openPayDiamonds":169264260,"createTime":"2021-06-14 15:19:22","name":"夏日流星瓶","remainLotteryCount":1460,"endTime":"2031-08-01 09:11:12","activityType":1,"priceRules":"[{\"price\":99,\"times\":1},{\"price\":495,\"times\":5},{\"price\":990,\"times\":10}]","isActivate":true,"status":1},{"objectVapUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/a7ad4be1ddf24e0f85b914b4bf568ae8.mp4","remark":"","openedTimes":7818636,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/f75799a20219443b8791f4a5e5edf074.png","delFlag":false,"ruleStatus":2,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/13/ab29558d514d449998ba3a77dc35923e.png","lotteryActivityId":152,"createTime":"2021-08-02 09:08:43","id":152,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":3,\"endTime\":1696089599000,\"id\":7082,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1789,\"name\":\"魅力值礼物-小开心\",\"perCount\":1400,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":5,\"endTime\":1696089599000,\"id\":7081,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1790,\"name\":\"魅力值礼物-鼓掌\",\"perCount\":900,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":7,\"endTime\":1696089599000,\"id\":7080,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1791,\"name\":\"魅力值礼物-小花朵\",\"perCount\":900,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":8,\"endTime\":1696089599000,\"id\":7079,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1792,\"name\":\"魅力值礼物-四叶草\",\"perCount\":500,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":10,\"endTime\":1696089599000,\"id\":7078,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1793,\"name\":\"魅力值礼物-小可乐\",\"perCount\":480,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":21,\"endTime\":1696089599000,\"id\":7077,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1794,\"name\":\"魅力值礼物-甜甜圈\",\"perCount\":420,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":26,\"endTime\":1696089599000,\"id\":7076,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1795,\"name\":\"魅力值礼物-一条咸鱼\",\"perCount\":290,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":36,\"endTime\":1696089599000,\"id\":7075,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1796,\"name\":\"魅力值礼物-水果冰棒\",\"perCount\":55,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":52,\"endTime\":1696089599000,\"id\":7074,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1797,\"name\":\"魅力值礼物-小熊风扇\",\"perCount\":40,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":300,\"endTime\":1696089599000,\"id\":7073,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1798,\"name\":\"魅力值礼物-粉色情书\",\"perCount\":10,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":500,\"endTime\":1696089599000,\"id\":7072,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1799,\"name\":\"魅力值礼物-流光宝瓶\",\"perCount\":5,\"ruleStatus\":2,\"startTime\":1628849700000}]","startTime":"2021-08-13 18:15:00","id":152,"operatorId":139,"rewardLotteryCount":7818636,"openRewardDiamonds":78337346,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga","updateTime":"2021-08-13 18:02:49","sort":60,"labelUrl":"","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/35e5b6de04614e7aba6e62507bf694ca.webp","remainLotteryDiamonds":63537,"openPayDiamonds":78186320,"createTime":"2021-04-23 18:20:19","name":"普通祈愿","remainLotteryCount":6782,"endTime":"2023-09-30 23:59:59","activityType":1,"priceRules":"[{\"price\":10,\"times\":1},{\"price\":50,\"times\":5},{\"price\":100,\"times\":10}]","isActivate":true,"status":1},{"objectVapUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/8a036751310a47b59d83767f0bd83805.mp4","remark":"","openedTimes":683769,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d839550c64084898b321c8e3c0ba264f.png","delFlag":false,"ruleStatus":2,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/412f9b9d3e014b8f8b326feff6de672a.png","lotteryActivityId":153,"createTime":"2021-08-02 09:25:48","id":153,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":99,\"endTime\":1696089599000,\"id\":7122,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1778,\"name\":\"魅力值礼物-幸运铃\",\"perCount\":450,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":106,\"endTime\":1696089599000,\"id\":7121,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1779,\"name\":\"魅力值礼物-变瘦药水\",\"perCount\":350,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":122,\"endTime\":1696089599000,\"id\":7120,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1780,\"name\":\"魅力值礼物-告白气球\",\"perCount\":300,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":155,\"endTime\":1696089599000,\"id\":7119,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1781,\"name\":\"魅力值礼物-雨梦精灵\",\"perCount\":300,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":199,\"endTime\":1696089599000,\"id\":7118,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1782,\"name\":\"魅力值礼物-桃花水晶\",\"perCount\":200,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":299,\"endTime\":1696089599000,\"id\":7117,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1783,\"name\":\"魅力值礼物-万箭穿心\",\"perCount\":190,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":333,\"endTime\":1696089599000,\"id\":7116,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1784,\"name\":\"魅力值礼物-亲亲热热\",\"perCount\":100,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":388,\"endTime\":1696089599000,\"id\":7115,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1785,\"name\":\"魅力值礼物-魔力娃娃\",\"perCount\":90,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":999,\"endTime\":1696089599000,\"id\":7114,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1786,\"name\":\"魅力值礼物-破茧成蝶\",\"perCount\":13,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":5970,\"endTime\":1696089599000,\"id\":7113,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1787,\"name\":\"魅力值礼物-偷星大盗\",\"perCount\":5,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":9999,\"endTime\":1696089599000,\"id\":7112,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1788,\"name\":\"魅力值礼物-心愿马车\",\"perCount\":2,\"ruleStatus\":2,\"startTime\":1628960700000}]","startTime":"2021-08-15 01:05:00","id":153,"operatorId":139,"rewardLotteryCount":683769,"openRewardDiamonds":152921018,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga","updateTime":"2021-08-15 01:03:05","sort":59,"labelUrl":"","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/00a636de2f204339a1c61dc1acefe9b3.webp","remainLotteryDiamonds":764047,"openPayDiamonds":143589390,"createTime":"2021-04-23 18:37:26","name":"白银祈愿","remainLotteryCount":3751,"endTime":"2023-09-30 23:59:59","activityType":1,"priceRules":"[{\"price\":199,\"times\":1},{\"price\":995,\"times\":5},{\"price\":1990,\"times\":10}]","isActivate":true,"status":1},{"objectVapUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d185125a633b48a7855344422a77f004.mp4","remark":"","openedTimes":380443,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/df5175700b4749d4abf21eec3469e77b.png","delFlag":false,"ruleStatus":2,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/6abd2754b9c8431582c7ea6ebfda0404.png","lotteryActivityId":154,"createTime":"2021-08-02 14:25:04","id":154,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\",\"decorationId\":231,\"decorationName\":\"耀金座位框\"}","lotteryRules":"[{\"amount\":199,\"endTime\":1696089599000,\"id\":7143,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1814,\"name\":\"魅力值礼物-桃花水晶\",\"perCount\":490,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":222,\"endTime\":1696089599000,\"id\":7144,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1815,\"name\":\"魅力值礼物-广寒月\",\"perCount\":370,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":300,\"endTime\":1696089599000,\"id\":7145,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1816,\"name\":\"魅力值礼物-飞鸽传书\",\"perCount\":320,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":365,\"endTime\":1696089599000,\"id\":7146,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1817,\"name\":\"魅力值礼物-惬意一下\",\"perCount\":200,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":406,\"endTime\":1696089599000,\"id\":7147,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1818,\"name\":\"魅力值礼物-林中鹿\",\"perCount\":340,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":520,\"endTime\":1696089599000,\"id\":7148,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1819,\"name\":\"魅力值礼物-流光溢彩\",\"perCount\":170,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":999,\"endTime\":1696089599000,\"id\":7149,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1820,\"name\":\"魅力值礼物-圆梦精灵\",\"perCount\":86,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":1314,\"endTime\":1696089599000,\"id\":7150,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1821,\"name\":\"魅力值礼物-环游星河\",\"perCount\":12,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":2666,\"endTime\":1696089599000,\"id\":7151,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1822,\"name\":\"魅力值礼物-风崖闻铃\",\"perCount\":8,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":13140,\"endTime\":1696089599000,\"id\":7152,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1823,\"name\":\"魅力值礼物-逐爱星辰\",\"perCount\":4,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":20010,\"endTime\":1696089599000,\"id\":7153,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1824,\"name\":\"魅力值礼物-爱境仙池\",\"perCount\":2,\"ruleStatus\":2,\"startTime\":1629018000000}]","startTime":"2021-08-15 17:00:00","id":154,"operatorId":139,"rewardLotteryCount":380443,"openRewardDiamonds":263397644,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga","updateTime":"2021-08-15 18:41:55","sort":58,"labelUrl":"","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/e9448d6f0c2e4e5f80918bea1a9fda5c.webp","remainLotteryDiamonds":1109300,"openPayDiamonds":253375038,"createTime":"2021-04-23 18:49:41","name":"黄金祈愿","remainLotteryCount":1912,"endTime":"2023-09-30 23:59:59","activityType":1,"priceRules":"[{\"price\":399,\"times\":1},{\"price\":1995,\"times\":5},{\"price\":3990,\"times\":10}]","isActivate":true,"status":1},{"objectVapUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/5c31fdab34fc46e899a45bdda9012f03.mp4","remark":"","openedTimes":635827,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d1e55a78701b4298b013049d9ac8bed1.png","delFlag":false,"ruleStatus":2,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/9/3cec148fbc2347f187fd233785f32908.png","lotteryActivityId":155,"createTime":"2021-08-02 17:39:05","id":155,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\",\"decorationId\":232,\"decorationName\":\"幻尊座位框\"}","lotteryRules":"[{\"amount\":388,\"endTime\":1696089599000,\"id\":7035,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1768,\"name\":\"魅力值礼物-魔力娃娃\",\"perCount\":500,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":455,\"endTime\":1696089599000,\"id\":7036,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1769,\"name\":\"魅力值礼物-魔法手杖\",\"perCount\":450,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":568,\"endTime\":1696089599000,\"id\":7037,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1770,\"name\":\"魅力值礼物-鎏金百合\",\"perCount\":340,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":666,\"endTime\":1696089599000,\"id\":7038,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1771,\"name\":\"魅力值礼物-魔法喵喵\",\"perCount\":220,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":999,\"endTime\":1696089599000,\"id\":7039,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1772,\"name\":\"魅力值礼物-破茧成蝶\",\"perCount\":200,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":1199,\"endTime\":1696089599000,\"id\":7040,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1773,\"name\":\"魅力值礼物-白马王子\",\"perCount\":200,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":1688,\"endTime\":1696089599000,\"id\":7041,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1774,\"name\":\"魅力值礼物-天使之翼\",\"perCount\":58,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":6666,\"endTime\":1696089599000,\"id\":7042,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1775,\"name\":\"魅力值礼物-恶魔之翼\",\"perCount\":14,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":9999,\"endTime\":1696089599000,\"id\":7043,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1776,\"name\":\"魅力值礼物-毁灭魔法\",\"perCount\":10,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":58888,\"endTime\":1696089599000,\"id\":7044,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1777,\"name\":\"魅力值礼物-浴火凤凰\",\"perCount\":8,\"ruleStatus\":2,\"startTime\":1628780700000}]","startTime":"2021-08-12 23:05:00","id":155,"operatorId":139,"rewardLotteryCount":635827,"openRewardDiamonds":629272159,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga","updateTime":"2021-08-12 23:38:10","sort":57,"labelUrl":"","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/4debd04e5a1f4030ae49f2deed0c0353.webp","remainLotteryDiamonds":3288679,"openPayDiamonds":635191173,"createTime":"2021-04-23 19:19:29","name":"魔幻祈愿","remainLotteryCount":3285,"endTime":"2023-09-30 23:59:59","activityType":1,"priceRules":"[{\"price\":999,\"times\":1},{\"price\":4995,\"times\":5},{\"price\":9990,\"times\":10}]","isActivate":true,"status":1}],"pageNum":1,"navigatePages":8,"total":9,"pages":1,"size":9,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:32:45.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:45.190] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:45.193] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-09-02 16:32:45.193] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:32:45:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-09-02 16:32:45.193] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 453毫秒======
[2021-09-02 16:32:45.230] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:32:45.230] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:45.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:45.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:45.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:32:45.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:32:45.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:45.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:32:45.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:45.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:32:45.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:45.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:32:45.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:45.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-09-02 16:32:44:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"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\":\"Thu, 02 Sep 2021 08:32:45 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":9,\"list\":[{\"remark\":\"\",\"openedTimes\":140294,\"staticUrl\":\"null\",\"delFlag\":false,\"ruleStatus\":1,\"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,\\\"endTime\\\":1943313072000,\\\"id\\\":6323,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1427,\\\"name\\\":\\\"许愿瓶\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":266,\\\"endTime\\\":1943313072000,\\\"id\\\":6324,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1428,\\\"name\\\":\\\"喵克里里\\\",\\\"perCount\\\":82,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":406,\\\"endTime\\\":1943313072000,\\\"id\\\":6325,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1429,\\\"name\\\":\\\"林中鹿\\\",\\\"perCount\\\":120,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":520,\\\"endTime\\\":1943313072000,\\\"id\\\":6326,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1430,\\\"name\\\":\\\"流光溢彩\\\",\\\"perCount\\\":190,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":999,\\\"endTime\\\":1943313072000,\\\"id\\\":6327,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1431,\\\"name\\\":\\\"小精灵\\\",\\\"perCount\\\":180,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1314,\\\"endTime\\\":1943313072000,\\\"id\\\":6328,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1432,\\\"name\\\":\\\"环游星河\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":5200,\\\"endTime\\\":1943313072000,\\\"id\\\":6329,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1433,\\\"name\\\":\\\"恋爱星球\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":13140,\\\"endTime\\\":1943313072000,\\\"id\\\":6330,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1434,\\\"name\\\":\\\"逐爱星辰\\\",\\\"perCount\\\":3,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":66666,\\\"endTime\\\":1943313072000,\\\"id\\\":6332,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1435,\\\"name\\\":\\\"时光之恋\\\",\\\"perCount\\\":1,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":18888,\\\"endTime\\\":1943313072000,\\\"id\\\":6331,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1436,\\\"name\\\":\\\"魅力值礼物-爱恋之城\\\",\\\"perCount\\\":2,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":189,\"operatorId\":25,\"rewardLotteryCount\":140294,\"openRewardDiamonds\":133116134,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-06-25 16:06:56\",\"sort\":121,\"labelUrl\":\"null\",\"version\":1,\"gifUrl\":\"null\",\"remainLotteryDiamonds\":614599,\"openPayDiamonds\":68030,\"createTime\":\"2021-05-24 12:04:17\",\"name\":\"梦幻糖果机\",\"remainLotteryCount\":683,\"endTime\":\"2031-08-01 09:11:12\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":819103,\"staticUrl\":\"null\",\"delFlag\":false,\"ruleStatus\":1,\"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,\\\"endTime\\\":1943313072000,\\\"id\\\":5842,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1414,\\\"name\\\":\\\"礼物-蓝色焰火*\\\",\\\"perCount\\\":392,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":30,\\\"endTime\\\":1943313072000,\\\"id\\\":5843,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1415,\\\"name\\\":\\\"礼物-小礼花*\\\",\\\"perCount\\\":440,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":52,\\\"endTime\\\":1943313072000,\\\"id\\\":5844,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1416,\\\"name\\\":\\\"礼物-点赞*\\\",\\\"perCount\\\":400,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":66,\\\"endTime\\\":1943313072000,\\\"id\\\":5845,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1417,\\\"name\\\":\\\"礼物-乐符*\\\",\\\"perCount\\\":350,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":99,\\\"endTime\\\":1943313072000,\\\"id\\\":5846,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1418,\\\"name\\\":\\\"礼物-水晶瓶*\\\",\\\"perCount\\\":250,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":213,\\\"endTime\\\":1943313072000,\\\"id\\\":5847,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1419,\\\"name\\\":\\\"礼物-天鹅之恋*\\\",\\\"perCount\\\":120,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":520,\\\"endTime\\\":1943313072000,\\\"id\\\":5848,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1420,\\\"name\\\":\\\"天生一对\\\",\\\"perCount\\\":30,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1314,\\\"endTime\\\":1943313072000,\\\"id\\\":5849,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1421,\\\"name\\\":\\\"一生有你\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":5200,\\\"endTime\\\":1943313072000,\\\"id\\\":5850,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1422,\\\"name\\\":\\\"为你摘星\\\",\\\"perCount\\\":4,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":2000,\\\"endTime\\\":1943313072000,\\\"id\\\":5851,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1423,\\\"name\\\":\\\"礼物-梦幻奇遇*\\\",\\\"perCount\\\":4,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":188,\"operatorId\":25,\"rewardLotteryCount\":819103,\"openRewardDiamonds\":72553941,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:19\",\"sort\":120,\"labelUrl\":\"null\",\"version\":1,\"gifUrl\":\"null\",\"remainLotteryDiamonds\":188247,\"openPayDiamonds\":123607,\"createTime\":\"2021-05-24 11:55:16\",\"name\":\"甜心糖果机\",\"remainLotteryCount\":1835,\"endTime\":\"2031-08-01 09:11:12\",\"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,\"ruleStatus\":1,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"endTime\\\":1943313072000,\\\"id\\\":6694,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1289,\\\"name\\\":\\\"礼物-小开心\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1,\\\"endTime\\\":1943313072000,\\\"id\\\":6695,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1290,\\\"name\\\":\\\"礼物-小蛋糕\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1,\\\"endTime\\\":1943313072000,\\\"id\\\":6696,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1291,\\\"name\\\":\\\"礼物-小嘎嘎\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":5,\\\"endTime\\\":1943313072000,\\\"id\\\":6697,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1292,\\\"name\\\":\\\"礼物-鼓掌\\\",\\\"perCount\\\":100,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":157,\"operatorId\":139,\"rewardLotteryCount\":5,\"openRewardDiamonds\":5,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-07-31 15:37:39\",\"sort\":113,\"labelUrl\":\"null\",\"version\":1,\"gifUrl\":\"null\",\"remainLotteryDiamonds\":775,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:38:56\",\"name\":\"梦幻测试\",\"remainLotteryCount\":295,\"endTime\":\"2031-08-01 09:11:12\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":2,\\\"times\\\":1},{\\\"price\\\":10,\\\"times\\\":5},{\\\"price\\\":20,\\\"times\\\":10}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":61,\"delFlag\":false,\"ruleStatus\":1,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"endTime\\\":1943313072000,\\\"id\\\":6698,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1285,\\\"name\\\":\\\"礼物-甜甜草莓\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1,\\\"endTime\\\":1943313072000,\\\"id\\\":6699,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1286,\\\"name\\\":\\\"礼物-荧光棒\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1,\\\"endTime\\\":1943313072000,\\\"id\\\":6700,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1287,\\\"name\\\":\\\"礼物-萤火虫\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":7,\\\"endTime\\\":1943313072000,\\\"id\\\":6701,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1288,\\\"name\\\":\\\"礼物-小花朵\\\",\\\"perCount\\\":100,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":156,\"operatorId\":139,\"rewardLotteryCount\":61,\"openRewardDiamonds\":95,\"updateTime\":\"2021-07-31 15:38:13\",\"sort\":111,\"labelUrl\":\"\",\"version\":1,\"remainLotteryDiamonds\":1585,\"openPayDiamonds\":14,\"createTime\":\"2021-04-28 14:37:13\",\"name\":\"甜心测试\",\"remainLotteryCount\":339,\"endTime\":\"2031-08-01 09:11:12\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":1,\\\"times\\\":1},{\\\"price\\\":5,\\\"times\\\":5},{\\\"price\\\":10,\\\"times\\\":10}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":1709740,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/1c8c826736504450b1264ca94afefddd.png\",\"delFlag\":false,\"ruleStatus\":1,\"operatorName\":\"张迪\",\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/9/ae6c941f02ad40b48434702e24d30b47.png\",\"lotteryActivityId\":218,\"createTime\":\"2021-08-01 19:45:57\",\"id\":150,\"content\":\"\",\"activityH5Url\":\"https://html-public.apeiwan.com/article/20210613/index.html\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/14/3b4d53610c82490b954de52a0b8059fb.png\\\",\\\"decorationId\\\":447,\\\"decorationName\\\":\\\"海心座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":26,\\\"endTime\\\":1943313072000,\\\"id\\\":6359,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1545,\\\"name\\\":\\\"魅力值礼物-一条咸鱼\\\",\\\"perCount\\\":383,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":36,\\\"endTime\\\":1943313072000,\\\"id\\\":6360,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1546,\\\"name\\\":\\\"礼物-水果冰棒*\\\",\\\"perCount\\\":450,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":52,\\\"endTime\\\":1943313072000,\\\"id\\\":6361,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1547,\\\"name\\\":\\\"礼物-小熊风扇*\\\",\\\"perCount\\\":470,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":99,\\\"endTime\\\":1943313072000,\\\"id\\\":6362,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1548,\\\"name\\\":\\\"礼物-冰镇西瓜*\\\",\\\"perCount\\\":391,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":109,\\\"endTime\\\":1943313072000,\\\"id\\\":6363,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1549,\\\"name\\\":\\\"礼物-加油鸭*\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":365,\\\"endTime\\\":1943313072000,\\\"id\\\":6364,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1550,\\\"name\\\":\\\"礼物-惬意一下*\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1099,\\\"endTime\\\":1943313072000,\\\"id\\\":6365,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1551,\\\"name\\\":\\\"魅力值礼物-夏日凉爽\\\",\\\"perCount\\\":22,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":7777,\\\"endTime\\\":1943313072000,\\\"id\\\":6366,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1570,\\\"name\\\":\\\"礼物-游艇派对*\\\",\\\"perCount\\\":4,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":218,\"operatorId\":139,\"rewardLotteryCount\":1709740,\"openRewardDiamonds\":170877897,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/a36e814bedac49e4a519cb061ace8147.svga\",\"updateTime\":\"2021-08-01 19:45:58\",\"sort\":61,\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/474d3470afd348adbcf50daca5c74479.png\",\"version\":1,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/90a9f35a3a7542a5a8101116193beb38.webp\",\"remainLotteryDiamonds\":147294,\"openPayDiamonds\":169264260,\"createTime\":\"2021-06-14 15:19:22\",\"name\":\"夏日流星瓶\",\"remainLotteryCount\":1460,\"endTime\":\"2031-08-01 09:11:12\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":99,\\\"times\\\":1},{\\\"price\\\":495,\\\"times\\\":5},{\\\"price\\\":990,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"objectVapUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/a7ad4be1ddf24e0f85b914b4bf568ae8.mp4\",\"remark\":\"\",\"openedTimes\":7818636,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/f75799a20219443b8791f4a5e5edf074.png\",\"delFlag\":false,\"ruleStatus\":2,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/13/ab29558d514d449998ba3a77dc35923e.png\",\"lotteryActivityId\":152,\"createTime\":\"2021-08-02 09:08:43\",\"id\":152,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"endTime\\\":1696089599000,\\\"id\\\":7082,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1789,\\\"name\\\":\\\"魅力值礼物-小开心\\\",\\\"perCount\\\":1400,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":5,\\\"endTime\\\":1696089599000,\\\"id\\\":7081,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1790,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"perCount\\\":900,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":7,\\\"endTime\\\":1696089599000,\\\"id\\\":7080,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1791,\\\"name\\\":\\\"魅力值礼物-小花朵\\\",\\\"perCount\\\":900,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":8,\\\"endTime\\\":1696089599000,\\\"id\\\":7079,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1792,\\\"name\\\":\\\"魅力值礼物-四叶草\\\",\\\"perCount\\\":500,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":10,\\\"endTime\\\":1696089599000,\\\"id\\\":7078,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1793,\\\"name\\\":\\\"魅力值礼物-小可乐\\\",\\\"perCount\\\":480,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":21,\\\"endTime\\\":1696089599000,\\\"id\\\":7077,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1794,\\\"name\\\":\\\"魅力值礼物-甜甜圈\\\",\\\"perCount\\\":420,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":26,\\\"endTime\\\":1696089599000,\\\"id\\\":7076,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1795,\\\"name\\\":\\\"魅力值礼物-一条咸鱼\\\",\\\"perCount\\\":290,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":36,\\\"endTime\\\":1696089599000,\\\"id\\\":7075,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1796,\\\"name\\\":\\\"魅力值礼物-水果冰棒\\\",\\\"perCount\\\":55,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":52,\\\"endTime\\\":1696089599000,\\\"id\\\":7074,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1797,\\\"name\\\":\\\"魅力值礼物-小熊风扇\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":300,\\\"endTime\\\":1696089599000,\\\"id\\\":7073,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1798,\\\"name\\\":\\\"魅力值礼物-粉色情书\\\",\\\"perCount\\\":10,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":500,\\\"endTime\\\":1696089599000,\\\"id\\\":7072,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1799,\\\"name\\\":\\\"魅力值礼物-流光宝瓶\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000}]\",\"startTime\":\"2021-08-13 18:15:00\",\"id\":152,\"operatorId\":139,\"rewardLotteryCount\":7818636,\"openRewardDiamonds\":78337346,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga\",\"updateTime\":\"2021-08-13 18:02:49\",\"sort\":60,\"labelUrl\":\"\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/35e5b6de04614e7aba6e62507bf694ca.webp\",\"remainLotteryDiamonds\":63537,\"openPayDiamonds\":78186320,\"createTime\":\"2021-04-23 18:20:19\",\"name\":\"普通祈愿\",\"remainLotteryCount\":6782,\"endTime\":\"2023-09-30 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":10,\\\"times\\\":1},{\\\"price\\\":50,\\\"times\\\":5},{\\\"price\\\":100,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"objectVapUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/8a036751310a47b59d83767f0bd83805.mp4\",\"remark\":\"\",\"openedTimes\":683769,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d839550c64084898b321c8e3c0ba264f.png\",\"delFlag\":false,\"ruleStatus\":2,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/412f9b9d3e014b8f8b326feff6de672a.png\",\"lotteryActivityId\":153,\"createTime\":\"2021-08-02 09:25:48\",\"id\":153,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\\\",\\\"decorationId\\\":230,\\\"decorationName\\\":\\\"璀银座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":99,\\\"endTime\\\":1696089599000,\\\"id\\\":7122,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1778,\\\"name\\\":\\\"魅力值礼物-幸运铃\\\",\\\"perCount\\\":450,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":106,\\\"endTime\\\":1696089599000,\\\"id\\\":7121,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1779,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"perCount\\\":350,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":122,\\\"endTime\\\":1696089599000,\\\"id\\\":7120,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1780,\\\"name\\\":\\\"魅力值礼物-告白气球\\\",\\\"perCount\\\":300,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":155,\\\"endTime\\\":1696089599000,\\\"id\\\":7119,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1781,\\\"name\\\":\\\"魅力值礼物-雨梦精灵\\\",\\\"perCount\\\":300,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":199,\\\"endTime\\\":1696089599000,\\\"id\\\":7118,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1782,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":299,\\\"endTime\\\":1696089599000,\\\"id\\\":7117,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1783,\\\"name\\\":\\\"魅力值礼物-万箭穿心\\\",\\\"perCount\\\":190,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":333,\\\"endTime\\\":1696089599000,\\\"id\\\":7116,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1784,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"perCount\\\":100,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":388,\\\"endTime\\\":1696089599000,\\\"id\\\":7115,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1785,\\\"name\\\":\\\"魅力值礼物-魔力娃娃\\\",\\\"perCount\\\":90,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":999,\\\"endTime\\\":1696089599000,\\\"id\\\":7114,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1786,\\\"name\\\":\\\"魅力值礼物-破茧成蝶\\\",\\\"perCount\\\":13,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":5970,\\\"endTime\\\":1696089599000,\\\"id\\\":7113,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1787,\\\"name\\\":\\\"魅力值礼物-偷星大盗\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":9999,\\\"endTime\\\":1696089599000,\\\"id\\\":7112,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1788,\\\"name\\\":\\\"魅力值礼物-心愿马车\\\",\\\"perCount\\\":2,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000}]\",\"startTime\":\"2021-08-15 01:05:00\",\"id\":153,\"operatorId\":139,\"rewardLotteryCount\":683769,\"openRewardDiamonds\":152921018,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga\",\"updateTime\":\"2021-08-15 01:03:05\",\"sort\":59,\"labelUrl\":\"\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/00a636de2f204339a1c61dc1acefe9b3.webp\",\"remainLotteryDiamonds\":764047,\"openPayDiamonds\":143589390,\"createTime\":\"2021-04-23 18:37:26\",\"name\":\"白银祈愿\",\"remainLotteryCount\":3751,\"endTime\":\"2023-09-30 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":199,\\\"times\\\":1},{\\\"price\\\":995,\\\"times\\\":5},{\\\"price\\\":1990,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"objectVapUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d185125a633b48a7855344422a77f004.mp4\",\"remark\":\"\",\"openedTimes\":380443,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/df5175700b4749d4abf21eec3469e77b.png\",\"delFlag\":false,\"ruleStatus\":2,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/6abd2754b9c8431582c7ea6ebfda0404.png\",\"lotteryActivityId\":154,\"createTime\":\"2021-08-02 14:25:04\",\"id\":154,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\\\",\\\"decorationId\\\":231,\\\"decorationName\\\":\\\"耀金座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":199,\\\"endTime\\\":1696089599000,\\\"id\\\":7143,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1814,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"perCount\\\":490,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":222,\\\"endTime\\\":1696089599000,\\\"id\\\":7144,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1815,\\\"name\\\":\\\"魅力值礼物-广寒月\\\",\\\"perCount\\\":370,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":300,\\\"endTime\\\":1696089599000,\\\"id\\\":7145,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1816,\\\"name\\\":\\\"魅力值礼物-飞鸽传书\\\",\\\"perCount\\\":320,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":365,\\\"endTime\\\":1696089599000,\\\"id\\\":7146,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1817,\\\"name\\\":\\\"魅力值礼物-惬意一下\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":406,\\\"endTime\\\":1696089599000,\\\"id\\\":7147,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1818,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"perCount\\\":340,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":520,\\\"endTime\\\":1696089599000,\\\"id\\\":7148,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1819,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"perCount\\\":170,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":999,\\\"endTime\\\":1696089599000,\\\"id\\\":7149,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1820,\\\"name\\\":\\\"魅力值礼物-圆梦精灵\\\",\\\"perCount\\\":86,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":1314,\\\"endTime\\\":1696089599000,\\\"id\\\":7150,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1821,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"perCount\\\":12,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":2666,\\\"endTime\\\":1696089599000,\\\"id\\\":7151,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1822,\\\"name\\\":\\\"魅力值礼物-风崖闻铃\\\",\\\"perCount\\\":8,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":13140,\\\"endTime\\\":1696089599000,\\\"id\\\":7152,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1823,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"perCount\\\":4,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":20010,\\\"endTime\\\":1696089599000,\\\"id\\\":7153,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1824,\\\"name\\\":\\\"魅力值礼物-爱境仙池\\\",\\\"perCount\\\":2,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000}]\",\"startTime\":\"2021-08-15 17:00:00\",\"id\":154,\"operatorId\":139,\"rewardLotteryCount\":380443,\"openRewardDiamonds\":263397644,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga\",\"updateTime\":\"2021-08-15 18:41:55\",\"sort\":58,\"labelUrl\":\"\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/e9448d6f0c2e4e5f80918bea1a9fda5c.webp\",\"remainLotteryDiamonds\":1109300,\"openPayDiamonds\":253375038,\"createTime\":\"2021-04-23 18:49:41\",\"name\":\"黄金祈愿\",\"remainLotteryCount\":1912,\"endTime\":\"2023-09-30 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":399,\\\"times\\\":1},{\\\"price\\\":1995,\\\"times\\\":5},{\\\"price\\\":3990,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"objectVapUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/5c31fdab34fc46e899a45bdda9012f03.mp4\",\"remark\":\"\",\"openedTimes\":635827,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d1e55a78701b4298b013049d9ac8bed1.png\",\"delFlag\":false,\"ruleStatus\":2,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/9/3cec148fbc2347f187fd233785f32908.png\",\"lotteryActivityId\":155,\"createTime\":\"2021-08-02 17:39:05\",\"id\":155,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\\\",\\\"decorationId\\\":232,\\\"decorationName\\\":\\\"幻尊座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":388,\\\"endTime\\\":1696089599000,\\\"id\\\":7035,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1768,\\\"name\\\":\\\"魅力值礼物-魔力娃娃\\\",\\\"perCount\\\":500,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":455,\\\"endTime\\\":1696089599000,\\\"id\\\":7036,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1769,\\\"name\\\":\\\"魅力值礼物-魔法手杖\\\",\\\"perCount\\\":450,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":568,\\\"endTime\\\":1696089599000,\\\"id\\\":7037,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1770,\\\"name\\\":\\\"魅力值礼物-鎏金百合\\\",\\\"perCount\\\":340,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":666,\\\"endTime\\\":1696089599000,\\\"id\\\":7038,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1771,\\\"name\\\":\\\"魅力值礼物-魔法喵喵\\\",\\\"perCount\\\":220,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":999,\\\"endTime\\\":1696089599000,\\\"id\\\":7039,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1772,\\\"name\\\":\\\"魅力值礼物-破茧成蝶\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":1199,\\\"endTime\\\":1696089599000,\\\"id\\\":7040,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1773,\\\"name\\\":\\\"魅力值礼物-白马王子\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":1688,\\\"endTime\\\":1696089599000,\\\"id\\\":7041,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1774,\\\"name\\\":\\\"魅力值礼物-天使之翼\\\",\\\"perCount\\\":58,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":6666,\\\"endTime\\\":1696089599000,\\\"id\\\":7042,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1775,\\\"name\\\":\\\"魅力值礼物-恶魔之翼\\\",\\\"perCount\\\":14,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":9999,\\\"endTime\\\":1696089599000,\\\"id\\\":7043,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1776,\\\"name\\\":\\\"魅力值礼物-毁灭魔法\\\",\\\"perCount\\\":10,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":58888,\\\"endTime\\\":1696089599000,\\\"id\\\":7044,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1777,\\\"name\\\":\\\"魅力值礼物-浴火凤凰\\\",\\\"perCount\\\":8,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000}]\",\"startTime\":\"2021-08-12 23:05:00\",\"id\":155,\"operatorId\":139,\"rewardLotteryCount\":635827,\"openRewardDiamonds\":629272159,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga\",\"updateTime\":\"2021-08-12 23:38:10\",\"sort\":57,\"labelUrl\":\"\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/4debd04e5a1f4030ae49f2deed0c0353.webp\",\"remainLotteryDiamonds\":3288679,\"openPayDiamonds\":635191173,\"createTime\":\"2021-04-23 19:19:29\",\"name\":\"魔幻祈愿\",\"remainLotteryCount\":3285,\"endTime\":\"2023-09-30 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":999,\\\"times\\\":1},{\\\"price\\\":4995,\\\"times\\\":5},{\\\"price\\\":9990,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1}],\"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-09-02 16:32:45:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 453毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"453毫秒","endTime":"2021-09-02 16:32:45","id":0,"serviceId":1,"startTime":"2021-09-02 16:32:44","status":1}
[2021-09-02 16:32:47.137] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:47.137] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:47.137] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:32:47.137] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:47.137] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:47.137] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:47 GMT
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:47.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:47.661] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:32:47:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-09-02 16:32:47.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-09-02 16:32:47.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=16677017}
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=16677017
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:47.859] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:48.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:48.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:48.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:48.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:48 GMT
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:48.028] [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":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-09-01 09:57:04","maxNum":50,"guildCode":"16677017","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":5523052,"curNum":1,"createTime":"2021-08-31 13:45:00","guildType":1,"id":1739,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:48.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:48.029] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-09-02 16:32:48.029] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:48.183] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:48.184] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:48.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-09-02 16:32:48.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:48.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:48.185] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:32:48.186] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:48.186] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:48.186] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyRemark=我是test,想加入公会, guildId=1739}
[2021-09-02 16:32:48.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:48.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyRemark=%E6%88%91%E6%98%AFtest%EF%BC%8C%E6%83%B3%E5%8A%A0%E5%85%A5%E5%85%AC%E4%BC%9A&guildId=1739
[2021-09-02 16:32:48.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:48.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:48.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:48.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:48.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:48.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:48.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:48.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:48.376] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:48 GMT
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"已提交入会申请,审核中","status":500}
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-09-02 16:32:48.377] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:48.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:48.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:48.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-09-02 16:32:48.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:48.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:48.541] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:32:48.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:48.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:48.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=999999, guildCode=16677017, pageNum=1}
[2021-09-02 16:32:48.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:48.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=999999&guildCode=16677017&pageNum=1
[2021-09-02 16:32:48.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:48.542] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:48.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:48.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:48.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:48.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:48.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:48.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:32:48.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:48.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:48.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:49 GMT
[2021-09-02 16:32:48.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:48.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:48.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:48.661] [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":999999,"endRow":1,"list":[{"roomNums":0,"guildStatus":2,"mobile":"13823774131","description":"欢迎来到我的公会","updateTime":"2021-09-01 09:57:04","leaderNickName":"test","maxNum":50,"guildCode":"16677017","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":5523052,"guildMaxNumDesc":"50人以下","curNum":1,"createTime":"2021-08-31 13:45:00","guildType":1,"id":1739,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:32:48.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:48.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:48.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:32:48.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:50.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:50.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:50.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:50.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:50.252] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:50.252] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:50.252] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:50.252] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:50 GMT
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:50.253] [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":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"冠39","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":39}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:50.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:50.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-09-02 16:32:50.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:50.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:50.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:50.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-09-02 16:32:50.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:50.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:50.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:32:50.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:50.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:50.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=16677017}
[2021-09-02 16:32:50.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:50.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=16677017
[2021-09-02 16:32:50.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:50.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:50.564] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:50.564] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:50.564] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:50.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:50.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:50.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:50.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:50.566] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:50.566] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:50 GMT
[2021-09-02 16:32:50.566] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:50.566] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:50.566] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:50.566] [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":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-09-01 09:57:04","maxNum":50,"guildCode":"16677017","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":5523052,"curNum":1,"createTime":"2021-08-31 13:45:00","guildType":1,"id":1739,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:32:50.566] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:50.566] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:50.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-09-02 16:32:50.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:50.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:50.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-e334a2edeba3466cb4b6ff161e19d896#5523052
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyType=1, pageSize=20, pageNum=1, guildId=1739}
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyType=1&pageSize=20&pageNum=1&guildId=1739
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:50.722] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:51.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:51.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:51.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:51.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:51 GMT
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:51.254] [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":100,"orderBy":"id desc","endRow":1,"list":[{"baseInfo":{"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":73,"memberExp":18,"gender":0,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/05ab37e76a8b4617af24433fa3dbd38b.png","memberLevel":0,"nobleRankName":"国王Ⅲ","hideActiveTime":false,"hideRoomStatus":false,"type":1,"userId":5523051,"userCode":"115032550","fans":0,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/0c1f1a210d9043b891015cb2f9800536.png","nickname":"沉着的电脑","nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png","showInTops":false,"status":1},"applyType":1,"applyId":121598,"applyRemark":"我是test,想加入公会","handleDesc":"","handleStatus":1,"applyTime":"2021-09-01 17:46:30"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:51.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:51.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/handle-apply
[2021-09-02 16:32:51.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:51.554] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/handle-apply
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-e334a2edeba3466cb4b6ff161e19d896#5523052
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyId=121598, configs=[], handleStatus=2}
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyId=121598&configs=%5B%5D&handleStatus=2
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:51.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:51.948] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:52 GMT
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"已同意","status":200}
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:51.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:51.950] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testAuditGuild--Test Mthod Success
[2021-09-02 16:32:51.950] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:32:51:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-09-02 16:32:51.950] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 04秒289毫秒======
[2021-09-02 16:32:51.951] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:32:51.951] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:51.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-09-02 16:32:47:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"16677017\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=16677017\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:32:48 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-09-01 09:57:04\",\"maxNum\":50,\"guildCode\":\"16677017\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":5523052,\"curNum\":1,\"createTime\":\"2021-08-31 13:45:00\",\"guildType\":1,\"id\":1739,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/join\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyRemark\":\"我是test,想加入公会\",\"guildId\":1739}\r\n###Http Request queryString after URLEncoder### :\r\napplyRemark=%E6%88%91%E6%98%AFtest%EF%BC%8C%E6%83%B3%E5%8A%A0%E5%85%A5%E5%85%AC%E4%BC%9A&guildId=1739\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:32:48 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"已提交入会申请,审核中\",\"status\":500}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/guild-center/guild/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":999999,\"guildCode\":\"16677017\",\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=999999&guildCode=16677017&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\":\"Thu, 02 Sep 2021 08:32:49 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":999999,\"endRow\":1,\"list\":[{\"roomNums\":0,\"guildStatus\":2,\"mobile\":\"13823774131\",\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-09-01 09:57:04\",\"leaderNickName\":\"test\",\"maxNum\":50,\"guildCode\":\"16677017\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":5523052,\"guildMaxNumDesc\":\"50人以下\",\"curNum\":1,\"createTime\":\"2021-08-31 13:45:00\",\"guildType\":1,\"id\":1739,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c06082b5c7924835ac33b74b79a07091\",\"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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:32:50 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"冠39\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":39}],\"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-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"16677017\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=16677017\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:32:50 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-09-01 09:57:04\",\"maxNum\":50,\"guildCode\":\"16677017\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":5523052,\"curNum\":1,\"createTime\":\"2021-08-31 13:45:00\",\"guildType\":1,\"id\":1739,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-e334a2edeba3466cb4b6ff161e19d896#5523052\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyType\":\"1\",\"pageSize\":\"20\",\"pageNum\":\"1\",\"guildId\":1739}\r\n###Http Request queryString after URLEncoder### :\r\napplyType=1&pageSize=20&pageNum=1&guildId=1739\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:32:51 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"baseInfo\":{\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":73,\"memberExp\":18,\"gender\":0,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/05ab37e76a8b4617af24433fa3dbd38b.png\",\"memberLevel\":0,\"nobleRankName\":\"国王Ⅲ\",\"hideActiveTime\":false,\"hideRoomStatus\":false,\"type\":1,\"userId\":5523051,\"userCode\":\"115032550\",\"fans\":0,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/0c1f1a210d9043b891015cb2f9800536.png\",\"nickname\":\"沉着的电脑\",\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png\",\"showInTops\":false,\"status\":1},\"applyType\":1,\"applyId\":121598,\"applyRemark\":\"我是test,想加入公会\",\"handleDesc\":\"\",\"handleStatus\":1,\"applyTime\":\"2021-09-01 17:46:30\"}],\"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-guild-api.apeiwan.com/api/v1/guild-center/guild/handle-apply\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-e334a2edeba3466cb4b6ff161e19d896#5523052\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyId\":121598,\"configs\":\"[]\",\"handleStatus\":2}\r\n###Http Request queryString after URLEncoder### :\r\napplyId=121598&configs=%5B%5D&handleStatus=2\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:32:52 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"已同意\",\"status\":200}\r\n===================================\r\n======2021-09-02 16:32:51:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 04秒289毫秒======\r","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"04秒289毫秒","endTime":"2021-09-02 16:32:51","id":0,"serviceId":1,"startTime":"2021-09-02 16:32:47","status":1}
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:52 GMT
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:52.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:52.758] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:32:52:用例【com.pipi.invoker.CosPlayerTest.testBSend】开始======
[2021-09-02 16:32:52.758] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:32:52.758] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:52.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:52.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:52.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:32:52.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:52.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:52.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:32:52.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:52.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:52.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-09-02 16:32:52.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:52.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-09-02 16:32:52.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:52.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:53.058] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:53.058] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:53 GMT
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:53.059] [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":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"冠39","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":39}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:53.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:53.060] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v4/room/gift/backpack/send
[2021-09-02 16:32:53.060] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:53.606] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:53.606] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v4/room/gift/backpack/send
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=882100, backpackId=4106747, userIds=5523052, timestamp=1630395325064}
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=882100&backpackId=4106747&userIds=5523052×tamp=1630395325064
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:53.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:32:53.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:53.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:53.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:32:53.981] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:53.981] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:53.981] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:32:53.981] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:53.982] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:32:53.982] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:54 GMT
[2021-09-02 16:32:53.982] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:32:53.982] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:53.982] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"6rgldZGre6KtGGv6kURKF/Qtwk8Q+adbT7VPClxSi4npL/wKbUd5JqbuUyiM6R9pRQvNlav4pvrfZRhBTgnZSajlzkqwL7luaOdSXqTKNkK/XVuQtWS3Zd4hVXcowi8xbYEpMumFWkcK8X2dVNiL8V+6zJeJAWB4VAv1CfzkrMtIVTrUmdETEUCODbBpYcOzPb1YyFzmYxlvrTBzZ46z0BOVzTwBUAlgR3x4LYyxiPJcpl+3zj3+ugcqjmy0YueeE/y5Iv8/n07fUIGsTBPnoV8M/sQw6taeQ2OUrQ21B1uKluo68B7IXLnKLe+huAHglQk3AevK6PbKckIjahjVIvh+nuYEpecRlN/O+GmZMjq5rcqLeovxg7o4+0N611NT+bD29LY5XQbXyr7k5q+hKx6hl4WfF1rQ3QEvC/+OBOAZGqtA3IDl8nUpITsTBgZcAA82aTGH6PkFswOjyxktVg==","status":200}
[2021-09-02 16:32:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:53.983] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:53.984] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testBSend--Test Mthod Success
[2021-09-02 16:32:53.985] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:32:53:用例【com.pipi.invoker.CosPlayerTest.testBSend】结束======
[2021-09-02 16:32:53.985] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒227毫秒======
[2021-09-02 16:32:53.985] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:32:53.985] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:53.986] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送背包礼物","caseLog":"======2021-09-02 16:32:52:用例【com.pipi.invoker.CosPlayerTest.testBSend】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:32:53 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"冠39\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":39}],\"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-app.apeiwan.com/api/v4/room/gift/backpack/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":1,\"amount\":\"1\",\"roomNo\":\"882100\",\"backpackId\":\"4106747\",\"userIds\":\"5523052\",\"timestamp\":\"1630395325064\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=882100&backpackId=4106747&userIds=5523052×tamp=1630395325064\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:32:54 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"6rgldZGre6KtGGv6kURKF/Qtwk8Q+adbT7VPClxSi4npL/wKbUd5JqbuUyiM6R9pRQvNlav4pvrfZRhBTgnZSajlzkqwL7luaOdSXqTKNkK/XVuQtWS3Zd4hVXcowi8xbYEpMumFWkcK8X2dVNiL8V+6zJeJAWB4VAv1CfzkrMtIVTrUmdETEUCODbBpYcOzPb1YyFzmYxlvrTBzZ46z0BOVzTwBUAlgR3x4LYyxiPJcpl+3zj3+ugcqjmy0YueeE/y5Iv8/n07fUIGsTBPnoV8M/sQw6taeQ2OUrQ21B1uKluo68B7IXLnKLe+huAHglQk3AevK6PbKckIjahjVIvh+nuYEpecRlN/O+GmZMjq5rcqLeovxg7o4+0N611NT+bD29LY5XQbXyr7k5q+hKx6hl4WfF1rQ3QEvC/+OBOAZGqtA3IDl8nUpITsTBgZcAA82aTGH6PkFswOjyxktVg==\",\"status\":200}\r\n===================================\r\n======2021-09-02 16:32:53:用例【com.pipi.invoker.CosPlayerTest.testBSend】结束======\r\n======本次用例运行消耗时间 01秒227毫秒======\r","caseName":"testBSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒227毫秒","endTime":"2021-09-02 16:32:53","id":0,"serviceId":1,"startTime":"2021-09-02 16:32:52","status":1}
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:54 GMT
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:54.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:54.651] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:32:54:用例【com.pipi.invoker.CosPlayerTest.testGetMine】开始======
[2021-09-02 16:32:54.651] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v3/user/get-mine
[2021-09-02 16:32:54.651] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:57.662] [TestNG] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.SocketTimeoutException: connect timed out
at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.getMine(CosPlyaPlayerServiceImpl.java:836)
at com.pipi.invoker.CosPlayerTest.testGetMine(CosPlayerTest.java:351)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.access$000(SuiteRunner.java:39)
at org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)
at org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[2021-09-02 16:32:57.663] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:32:57.664] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testGetMine--Test Mthod Failure
[2021-09-02 16:32:57.664] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-09-02 16:32:57:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======
[2021-09-02 16:32:57.664] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 03秒013毫秒======
[2021-09-02 16:32:57.664] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:32:57.665] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:32:57.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"/api/v3/user/get-mine 获取用户信(人气等级)","caseLog":"======2021-09-02 16:32:54:用例【com.pipi.invoker.CosPlayerTest.testGetMine】开始======\r\n======2021-09-02 16:32:57:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======\r\n======本次用例运行消耗时间 03秒013毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://pre-test-api-app.apeiwan.com/api/v3/user/get-mine,异常信息:connect timed out\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:340)\r\n\tat com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.getMine(CosPlyaPlayerServiceImpl.java:836)\r\n\tat com.pipi.invoker.CosPlayerTest.testGetMine(CosPlayerTest.java:351)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.access$000(SuiteRunner.java:39)\r\n\tat org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)\r\n\tat org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)\r\n\tat java.util.concurrent.FutureTask.run(FutureTask.java:266)\r\n\tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)\r\n\tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)\r\n\tat java.lang.Thread.run(Thread.java:748)\r\nCaused by: java.net.SocketTimeoutException: connect timed out\r\n\tat java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)\r\n\tat java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)\r\n\tat java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)\r\n\tat java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)\r\n\tat java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)\r\n\tat java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)\r\n\tat java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\r\n\tat java.net.Socket.connect(Socket.java:589)\r\n\tat sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)\r\n\tat sun.net.NetworkClient.doConnect(NetworkClient.java:175)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:463)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:558)\r\n\tat sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)\r\n\tat sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)\r\n\t... 26 more\r\n","caseName":"testGetMine","className":"com.pipi.invoker.CosPlayerTest","durationTime":"03秒013毫秒","endTime":"2021-09-02 16:32:57","id":0,"serviceId":1,"startTime":"2021-09-02 16:32:54","status":2}
[2021-09-02 16:32:58.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:32:58.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:32:58.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:32:58.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:32:58.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:32:58.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:32:58.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:32:58 GMT
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:32:58.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:03.590] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:03:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】开始======
[2021-09-02 16:33:03.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/user/balance/get
[2021-09-02 16:33:03.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:03.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:03.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/user/balance/get
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:03.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:04.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:04.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:04.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:04.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:04.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:04.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:04.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:04.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:04.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:04 GMT
[2021-09-02 16:33:04.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:04.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:04.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:04.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"virtualBalance":456810,"balance":0.00,"charm":0,"charmMoney":0.00,"chargeBalance":10005.90,"bodyAuthDesc":"未实名认证","newCharm":0},"status":200}
[2021-09-02 16:33:04.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:04.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:04.055] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserBalance--Test Mthod Success
[2021-09-02 16:33:04.055] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:04:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======
[2021-09-02 16:33:04.055] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 465毫秒======
[2021-09-02 16:33:04.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:04.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:04.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:04.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:04.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:04.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:04.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:04.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:04.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:04.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:04.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:04.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:04.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:04.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户皮皮币/钻石余额","caseLog":"======2021-09-02 16:33:03:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v1/user/balance/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:04 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"virtualBalance\":456810,\"balance\":0.00,\"charm\":0,\"charmMoney\":0.00,\"chargeBalance\":10005.90,\"bodyAuthDesc\":\"未实名认证\",\"newCharm\":0},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:04:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======\r\n======本次用例运行消耗时间 465毫秒======\r","caseName":"testGetUserBalance","className":"com.pipi.invoker.CosPlayerTest","durationTime":"465毫秒","endTime":"2021-09-02 16:33:04","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:03","status":1}
[2021-09-02 16:33:04.268] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:04.268] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:04.268] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:04.268] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:04 GMT
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:04.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:04.779] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:04:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】开始======
[2021-09-02 16:33:04.779] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:04.779] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:05.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:05.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:05.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:05.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:05.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:05.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:05.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:05.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:05.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-09-02 16:33:05.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:05.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-09-02 16:33:05.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:05.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:05.718] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:06 GMT
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:05.719] [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":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"国王Ⅲ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10005.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"nobleRankCode":73,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456810,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:05.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:05.720] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:05.720] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/user/simple/get
[2021-09-02 16:33:05.720] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:06.873] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:06.873] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:06.873] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/user/simple/get
[2021-09-02 16:33:06.873] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:06.873] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:06.873] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:06.873] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:06.873] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:06.873] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=882100, userId=5523051}
[2021-09-02 16:33:06.874] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:06.874] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=882100&userId=5523051
[2021-09-02 16:33:06.874] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:06.874] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:07.053] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:07.053] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:07 GMT
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"获取个人信息成功!","data":{"platformAuthUrl":"","type":1,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/0c1f1a210d9043b891015cb2f9800536.png","balance":0.00,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10005.90,"lastMemberExp":18,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userProducts":[],"isAttention":0,"status":1,"gender":0,"city":"未设置","managerPermit":false,"registerType":0,"userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","virtualBalance":456810,"memberLevel":0,"updateTime":"2021-08-31 11:13:53","mainPicUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png","quickServerStatus":0,"userId":5523051,"imId":"5523051_20210831","charm":0,"createTime":"2021-08-31 11:13:53","newUser":false,"nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png","sourceId":0,"platformAuth":0,"charmDrawSum":0,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":73,"isRoomBlacked":false,"userInfoAuth":0,"totalFootprints":21,"orderTakeSwitch":false,"userTechList":[],"registIp":"61.183.246.70","accessCount":0,"openedTechs":0,"isCancel":false,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/05ab37e76a8b4617af24433fa3dbd38b.png","attentions":0,"imPsw":"b739ce120f584a7597187eecc691bba8","scoreAvg":4.0,"fans":0,"totalAccessedCnt":4},"status":200}
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:07.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:07.055] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple--Test Mthod Success
[2021-09-02 16:33:07.055] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:07:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======
[2021-09-02 16:33:07.055] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 02秒276毫秒======
[2021-09-02 16:33:07.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:07.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:07.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:07.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:07.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v1","caseLog":"======2021-09-02 16:33:04:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:06 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"国王Ⅲ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10005.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"nobleRankCode\":73,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456810,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"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-app.apeiwan.com/api/v1/user/simple/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"882100\",\"userId\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=882100&userId=5523051\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:07 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"获取个人信息成功!\",\"data\":{\"platformAuthUrl\":\"\",\"type\":1,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/0c1f1a210d9043b891015cb2f9800536.png\",\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10005.90,\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userProducts\":[],\"isAttention\":0,\"status\":1,\"gender\":0,\"city\":\"未设置\",\"managerPermit\":false,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"virtualBalance\":456810,\"memberLevel\":0,\"updateTime\":\"2021-08-31 11:13:53\",\"mainPicUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png\",\"quickServerStatus\":0,\"userId\":5523051,\"imId\":\"5523051_20210831\",\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false,\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png\",\"sourceId\":0,\"platformAuth\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":73,\"isRoomBlacked\":false,\"userInfoAuth\":0,\"totalFootprints\":21,\"orderTakeSwitch\":false,\"userTechList\":[],\"registIp\":\"61.183.246.70\",\"accessCount\":0,\"openedTechs\":0,\"isCancel\":false,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/05ab37e76a8b4617af24433fa3dbd38b.png\",\"attentions\":0,\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"scoreAvg\":4.0,\"fans\":0,\"totalAccessedCnt\":4},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:07:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======\r\n======本次用例运行消耗时间 02秒276毫秒======\r","caseName":"testGetUserSimple","className":"com.pipi.invoker.CosPlayerTest","durationTime":"02秒276毫秒","endTime":"2021-09-02 16:33:07","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:04","status":1}
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:07 GMT
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:07.269] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:07.785] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:07:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】开始======
[2021-09-02 16:33:07.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:07.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:07.893] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:07.893] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:07.893] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:07.893] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:07.894] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:07.894] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:07.894] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:07.894] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:07.894] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-09-02 16:33:07.894] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:07.894] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-09-02 16:33:07.894] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:07.894] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:08.047] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:08.047] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:08.047] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:08.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:08.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:08.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:08.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:08.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:08.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:08 GMT
[2021-09-02 16:33:08.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:08.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:08.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:08.050] [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":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"国王Ⅲ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10005.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"nobleRankCode":73,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456810,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:08.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:08.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:08.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v2/user/simple/get
[2021-09-02 16:33:08.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:08.198] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v2/user/simple/get
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=882100, userId=5523051}
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=882100&userId=5523051
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:08.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:08.386] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:08.386] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:08.386] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:08.386] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:08.386] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:08.386] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:08.386] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:08.386] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:08.387] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:08 GMT
[2021-09-02 16:33:08.387] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:08.387] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:08.387] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:08.387] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"获取个人信息成功!","data":{"platformAuthUrl":"","about":"TA还没有个性签名哟~","type":1,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/0c1f1a210d9043b891015cb2f9800536.png","balance":0.00,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10005.90,"lastMemberExp":18,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userProducts":[],"isAttention":0,"status":1,"gender":0,"city":"未设置","managerPermit":false,"registerType":0,"userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","virtualBalance":456810,"memberLevel":0,"updateTime":"2021-08-31 11:13:53","mainPicUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png","quickServerStatus":0,"userId":5523051,"imId":"5523051_20210831","charm":0,"createTime":"2021-08-31 11:13:53","newUser":false,"nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png","sourceId":0,"platformAuth":0,"charmDrawSum":0,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":73,"isRoomBlacked":false,"userInfoAuth":0,"totalFootprints":21,"orderTakeSwitch":false,"userTechList":[],"registIp":"61.183.246.70","accessCount":0,"openedTechs":0,"isCancel":false,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/05ab37e76a8b4617af24433fa3dbd38b.png","attentions":0,"imPsw":"b739ce120f584a7597187eecc691bba8","scoreAvg":4.0,"fans":0,"totalAccessedCnt":4},"status":200}
[2021-09-02 16:33:08.387] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:08.387] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:08.387] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple2--Test Mthod Success
[2021-09-02 16:33:08.387] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:08:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======
[2021-09-02 16:33:08.387] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 602毫秒======
[2021-09-02 16:33:08.388] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:08.388] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:08.392] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:08.392] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:08.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v2","caseLog":"======2021-09-02 16:33:07:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:08 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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"国王Ⅲ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10005.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"nobleRankCode\":73,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456810,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"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-app.apeiwan.com/api/v2/user/simple/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"882100\",\"userId\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=882100&userId=5523051\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:08 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"获取个人信息成功!\",\"data\":{\"platformAuthUrl\":\"\",\"about\":\"TA还没有个性签名哟~\",\"type\":1,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/0c1f1a210d9043b891015cb2f9800536.png\",\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10005.90,\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userProducts\":[],\"isAttention\":0,\"status\":1,\"gender\":0,\"city\":\"未设置\",\"managerPermit\":false,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"virtualBalance\":456810,\"memberLevel\":0,\"updateTime\":\"2021-08-31 11:13:53\",\"mainPicUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png\",\"quickServerStatus\":0,\"userId\":5523051,\"imId\":\"5523051_20210831\",\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false,\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png\",\"sourceId\":0,\"platformAuth\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":73,\"isRoomBlacked\":false,\"userInfoAuth\":0,\"totalFootprints\":21,\"orderTakeSwitch\":false,\"userTechList\":[],\"registIp\":\"61.183.246.70\",\"accessCount\":0,\"openedTechs\":0,\"isCancel\":false,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/05ab37e76a8b4617af24433fa3dbd38b.png\",\"attentions\":0,\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"scoreAvg\":4.0,\"fans\":0,\"totalAccessedCnt\":4},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:08:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======\r\n======本次用例运行消耗时间 602毫秒======\r","caseName":"testGetUserSimple2","className":"com.pipi.invoker.CosPlayerTest","durationTime":"602毫秒","endTime":"2021-09-02 16:33:08","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:07","status":1}
[2021-09-02 16:33:08.701] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:08.701] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:09 GMT
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:08.702] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:09.214] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:09:用例【com.pipi.invoker.CosPlayerTest.testGethome】开始======
[2021-09-02 16:33:09.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v3/user/get-home
[2021-09-02 16:33:09.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:09.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:09.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:09.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v3/user/get-home
[2021-09-02 16:33:09.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:09.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:09.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:09.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:09.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:09.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:09.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:09.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:09.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:09.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:09.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:09.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:09.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:09.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:09.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:09.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:09.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:09.554] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:09.554] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:09 GMT
[2021-09-02 16:33:09.554] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:09.554] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:09.554] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:09.554] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"signFlag":false,"userInfo":{"platformAuthUrl":"","gender":"0","managerPermit":false,"type":1,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/0c1f1a210d9043b891015cb2f9800536.png","nickname":"沉着的电脑","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":73,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/05ab37e76a8b4617af24433fa3dbd38b.png","memberLevel":0,"skillsGroup":"b44f12547c1d455c8cf8aba14ed22e7f","mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","userId":5523051,"imId":"5523051_20210831","isInGuild":true,"isRicher":false},"signDays":3,"userSetting":{"orderMsg":1,"productNotifySettings":[],"noticeMsg":1,"userId":5523051,"newMessageReminder":1,"proclamationMsg":1,"assignOrderMsgDnd":false,"robOrderMsgDnd":true,"messageDetail":1,"assignMsg":1},"showGuildCenter":true,"signImg":"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png","userAlertInfo":{"orderNoPayAmount":0,"orderWaitingAmount":0,"guildApplyCount":0,"welfareCount":1,"grabOrderAmount":0,"addCouponCount":0}},"status":200}
[2021-09-02 16:33:09.554] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:09.554] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:09.554] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGethome--Test Mthod Success
[2021-09-02 16:33:09.554] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:09:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======
[2021-09-02 16:33:09.555] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 340毫秒======
[2021-09-02 16:33:09.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:09.555] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:09.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":" /api/v3/user/get-home获取用户信息(用户是否是巡管员) ","caseLog":"======2021-09-02 16:33:09:用例【com.pipi.invoker.CosPlayerTest.testGethome】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v3/user/get-home\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:09 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"signFlag\":false,\"userInfo\":{\"platformAuthUrl\":\"\",\"gender\":\"0\",\"managerPermit\":false,\"type\":1,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/0c1f1a210d9043b891015cb2f9800536.png\",\"nickname\":\"沉着的电脑\",\"id\":5523051,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":73,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/05ab37e76a8b4617af24433fa3dbd38b.png\",\"memberLevel\":0,\"skillsGroup\":\"b44f12547c1d455c8cf8aba14ed22e7f\",\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"userId\":5523051,\"imId\":\"5523051_20210831\",\"isInGuild\":true,\"isRicher\":false},\"signDays\":3,\"userSetting\":{\"orderMsg\":1,\"productNotifySettings\":[],\"noticeMsg\":1,\"userId\":5523051,\"newMessageReminder\":1,\"proclamationMsg\":1,\"assignOrderMsgDnd\":false,\"robOrderMsgDnd\":true,\"messageDetail\":1,\"assignMsg\":1},\"showGuildCenter\":true,\"signImg\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png\",\"userAlertInfo\":{\"orderNoPayAmount\":0,\"orderWaitingAmount\":0,\"guildApplyCount\":0,\"welfareCount\":1,\"grabOrderAmount\":0,\"addCouponCount\":0}},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:09:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======\r\n======本次用例运行消耗时间 340毫秒======\r","caseName":"testGethome","className":"com.pipi.invoker.CosPlayerTest","durationTime":"340毫秒","endTime":"2021-09-02 16:33:09","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:09","status":1}
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:10 GMT
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:09.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:09.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:09.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:09.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:10.346] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:10:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-09-02 16:33:10.346] [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-09-02 16:33:10.346] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:10.451] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:10.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:10.643] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:10.643] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:10.643] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:10.643] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:10.643] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:10.643] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:10.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:10.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:10.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:10 GMT
[2021-09-02 16:33:10.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:10.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:10.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:10.644] [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":136,"virtualProductId":376,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-09-11 20:31:28","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/11/f143b1c700e24aa6b29af3d93f452d20.svga\",\"remark\":\"一心一意\",\"vapUrl\":\"\"}]","id":182,"virtualProductId":376}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/23/d3b5c42ee22f4c0aa2e5bd4dfdb5e6ca.png","createTime":"2021-08-23 13:04:59","refType":1,"id":91,"virtualProductId":376,"content":"","activityH5Url":"https://h5.apeiwan.com/app/toplist2.html?hideNavi=1","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5945c7db61dc47a2887c4c4876d0e67e.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送一个,可触发动效,增加对方99魅力值","giftVersion":6,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":376,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":99,"limitUpdateTime":"2020-09-11 20:31:29","useStatus":1,"name":"捕梦网","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-08-23 13:04:59","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2020-09-11 20:31:29"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":306,"virtualProductId":538,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":4,"createTime":"2021-06-22 16:23:25","playMethod":"[{\"broadcastRangType\":3,\"chainNum\":5000,\"level\":1,\"remark\":\"穿云火箭\",\"roomBannerId\":146,\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/f05f44c8b19c4264baa85a99301c0b63.png\"},{\"broadcastRangType\":5,\"chainNum\":20000,\"level\":2,\"remark\":\"太空火箭\",\"roomBannerId\":147,\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/53dbc470a89b4855a9bf846147db8ecc.png\"},{\"broadcastRangType\":2,\"chainNum\":50000,\"level\":3,\"listBannerId\":149,\"remark\":\"星际火箭\",\"roomBannerId\":148,\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/3d4f314da33943d68e0396cd3903810b.png\"}]","id":268,"virtualProductId":538}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/29/4e48ff76c05e4acdbdc56421d91081dc.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":28,"price":1000,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/28/e60cc230c27e4118b80eb2bd6f8020cb.png","id":538,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/29/927c0d38397f46ff8c29b690d8fd0bc3.svga","giftType":1,"sort":2000,"charmValue":1000,"limitUpdateTime":"2021-06-22 16:23:25","useStatus":1,"name":"火箭","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"startTime":"2021-06-29 11:00:00","hasAnimation":true,"rewardLevel":2,"updateTime":"2021-07-12 15:15:44","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/28/44d71ef8cc8d45efbcaed560f3577445.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-06-22 16:23:25","endTime":"2029-07-31 23:59:59"}},{"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","objectVapUrl":"","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-08-30 16:41:16","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":"","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","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":6,"remarkUrl":"","id":524,"objectGifUrl":"","giftType":1,"sort":975,"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-08-23 11:24:47","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"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":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":4,"price":10,"remarkUrl":"","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-15 14:18:18","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","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":12,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"startTime":"2021-07-01 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-25 10:30:06","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2019-08-07 16:02:15","endTime":"2026-07-31 23:59:59"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:10.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:10.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:10.645] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-09-02 16:33:10.645] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:10:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-09-02 16:33:10.645] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 299毫秒======
[2021-09-02 16:33:10.645] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:10.645] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:10.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-09-02 16:33:10:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"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\":\"Thu, 02 Sep 2021 08:33:10 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\":136,\"virtualProductId\":376,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-09-11 20:31:28\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/11/f143b1c700e24aa6b29af3d93f452d20.svga\\\",\\\"remark\\\":\\\"一心一意\\\",\\\"vapUrl\\\":\\\"\\\"}]\",\"id\":182,\"virtualProductId\":376}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/23/d3b5c42ee22f4c0aa2e5bd4dfdb5e6ca.png\",\"createTime\":\"2021-08-23 13:04:59\",\"refType\":1,\"id\":91,\"virtualProductId\":376,\"content\":\"\",\"activityH5Url\":\"https://h5.apeiwan.com/app/toplist2.html?hideNavi=1\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5945c7db61dc47a2887c4c4876d0e67e.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送一个,可触发动效,增加对方99魅力值\",\"giftVersion\":6,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":376,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":99,\"limitUpdateTime\":\"2020-09-11 20:31:29\",\"useStatus\":1,\"name\":\"捕梦网\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-08-23 13:04:59\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2020-09-11 20:31:29\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":306,\"virtualProductId\":538,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":4,\"createTime\":\"2021-06-22 16:23:25\",\"playMethod\":\"[{\\\"broadcastRangType\\\":3,\\\"chainNum\\\":5000,\\\"level\\\":1,\\\"remark\\\":\\\"穿云火箭\\\",\\\"roomBannerId\\\":146,\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/f05f44c8b19c4264baa85a99301c0b63.png\\\"},{\\\"broadcastRangType\\\":5,\\\"chainNum\\\":20000,\\\"level\\\":2,\\\"remark\\\":\\\"太空火箭\\\",\\\"roomBannerId\\\":147,\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/53dbc470a89b4855a9bf846147db8ecc.png\\\"},{\\\"broadcastRangType\\\":2,\\\"chainNum\\\":50000,\\\"level\\\":3,\\\"listBannerId\\\":149,\\\"remark\\\":\\\"星际火箭\\\",\\\"roomBannerId\\\":148,\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/3d4f314da33943d68e0396cd3903810b.png\\\"}]\",\"id\":268,\"virtualProductId\":538}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/29/4e48ff76c05e4acdbdc56421d91081dc.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":28,\"price\":1000,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/28/e60cc230c27e4118b80eb2bd6f8020cb.png\",\"id\":538,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/29/927c0d38397f46ff8c29b690d8fd0bc3.svga\",\"giftType\":1,\"sort\":2000,\"charmValue\":1000,\"limitUpdateTime\":\"2021-06-22 16:23:25\",\"useStatus\":1,\"name\":\"火箭\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-06-29 11:00:00\",\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-07-12 15:15:44\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/28/44d71ef8cc8d45efbcaed560f3577445.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-06-22 16:23:25\",\"endTime\":\"2029-07-31 23:59:59\"}},{\"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\",\"objectVapUrl\":\"\",\"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-08-30 16:41:16\",\"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\":\"\",\"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\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":6,\"remarkUrl\":\"\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":975,\"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-08-23 11:24:47\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"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\":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\":4,\"price\":10,\"remarkUrl\":\"\",\"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-15 14:18:18\",\"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\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方21魅力值\",\"giftVersion\":12,\"price\":21,\"remarkUrl\":\"\",\"id\":220,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":960,\"charmValue\":21,\"useStatus\":1,\"name\":\"甜甜圈\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-07-01 00:00:00\",\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-06-25 10:30:06\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2019-08-07 16:02:15\",\"endTime\":\"2026-07-31 23:59:59\"}}],\"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-09-02 16:33:10:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 299毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"299毫秒","endTime":"2021-09-02 16:33:10","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:10","status":1}
[2021-09-02 16:33:10.930] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:10.930] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:10.930] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:10.930] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:10.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:10.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:10.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:10.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:10.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:10.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:10.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:10.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:11 GMT
[2021-09-02 16:33:10.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:10.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:10.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:10.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:10.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:10.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:11.446] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:11:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======
[2021-09-02 16:33:11.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-09-02 16:33:11.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:11.770] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:11.770] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:11.770] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-09-02 16:33:11.770] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:11.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:11.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-e334a2edeba3466cb4b6ff161e19d896#5523052
[2021-09-02 16:33:11.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:11.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:11.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=16677017}
[2021-09-02 16:33:11.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:11.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=16677017
[2021-09-02 16:33:11.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:11.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:12 GMT
[2021-09-02 16:33:11.931] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:11.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:11.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:11.932] [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":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-09-02 16:32:52","maxNum":50,"guildCode":"16677017","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":5523052,"curNum":2,"createTime":"2021-08-31 13:45:00","guildType":1,"id":1739,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:11.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:11.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:11.932] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGuildSearch--Test Mthod Success
[2021-09-02 16:33:11.932] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:11:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======
[2021-09-02 16:33:11.932] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 486毫秒======
[2021-09-02 16:33:11.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:11.933] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:11.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"搜索公会","caseLog":"======2021-09-02 16:33:11:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-e334a2edeba3466cb4b6ff161e19d896#5523052\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"16677017\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=16677017\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:12 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-09-02 16:32:52\",\"maxNum\":50,\"guildCode\":\"16677017\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":5523052,\"curNum\":2,\"createTime\":\"2021-08-31 13:45:00\",\"guildType\":1,\"id\":1739,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:11:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======\r\n======本次用例运行消耗时间 486毫秒======\r","caseName":"testGuildSearch","className":"com.pipi.invoker.CosPlayerTest","durationTime":"486毫秒","endTime":"2021-09-02 16:33:11","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:11","status":1}
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:12 GMT
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:12.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:13.056] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:13:用例【com.pipi.invoker.CosPlayerTest.testMSend】开始======
[2021-09-02 16:33:13.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:13.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:13.217] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:13.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:13 GMT
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:13.370] [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":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"冠39","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":39}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:13.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:13.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:13.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-09-02 16:33:13.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:13.509] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=882100, productId=496, userIds=5523052, timestamp=1621828487580}
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=882100&productId=496&userIds=5523052×tamp=1621828487580
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:13.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:14 GMT
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3Pj2JdoRsqE3S9fOEfjNpXK7VTvr9/1KuJ5+3QSF4gFUabnozv/zR45zoXBImJosob7E6nr6rFKLMBatWRZYcRmJpp6fibKZwGM0CWjOnnu88syrMTuP5ExUjihR2VShvuZQOlFelisTJsZ1/yJDm5gcE1bnut4PR0EWDazt/l0myGQD4yEfP4WLuORyCk4n2hiYRgBA2TxKQdEvIOTmboXllmQ90SZgdITT4d2FyzcdazM1haZuD8Ng1qI2rJJNi1WWckExJ6mWJZbM2eJ2SoieTBfj/tzaz+zfrNaAS3lRizRT/mPrH5ITgZMDzQ7IYz4kAAzPyZWh9CfK/hbY8eji9HXpEKm4AuubBLjltcmiQofrb1/Mr/8Pcn6C6EQsyy","status":200}
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:13.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:13.954] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMSend--Test Mthod Success
[2021-09-02 16:33:13.954] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:13:用例【com.pipi.invoker.CosPlayerTest.testMSend】结束======
[2021-09-02 16:33:13.954] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 898毫秒======
[2021-09-02 16:33:13.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:13.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:13.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送魅力值礼物","caseLog":"======2021-09-02 16:33:13:用例【com.pipi.invoker.CosPlayerTest.testMSend】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:13 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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"冠39\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":39}],\"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-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"882100\",\"productId\":\"496\",\"userIds\":\"5523052\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=882100&productId=496&userIds=5523052×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:14 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3Pj2JdoRsqE3S9fOEfjNpXK7VTvr9/1KuJ5+3QSF4gFUabnozv/zR45zoXBImJosob7E6nr6rFKLMBatWRZYcRmJpp6fibKZwGM0CWjOnnu88syrMTuP5ExUjihR2VShvuZQOlFelisTJsZ1/yJDm5gcE1bnut4PR0EWDazt/l0myGQD4yEfP4WLuORyCk4n2hiYRgBA2TxKQdEvIOTmboXllmQ90SZgdITT4d2FyzcdazM1haZuD8Ng1qI2rJJNi1WWckExJ6mWJZbM2eJ2SoieTBfj/tzaz+zfrNaAS3lRizRT/mPrH5ITgZMDzQ7IYz4kAAzPyZWh9CfK/hbY8eji9HXpEKm4AuubBLjltcmiQofrb1/Mr/8Pcn6C6EQsyy\",\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:13:用例【com.pipi.invoker.CosPlayerTest.testMSend】结束======\r\n======本次用例运行消耗时间 898毫秒======\r","caseName":"testMSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"898毫秒","endTime":"2021-09-02 16:33:13","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:13","status":1}
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:14 GMT
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:14.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:14.195] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:14.195] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:14.195] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:14.195] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:14.698] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:14:用例【com.pipi.invoker.CosPlayerTest.testManagerList】开始======
[2021-09-02 16:33:14.698] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/list
[2021-09-02 16:33:14.698] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:14.796] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:14.796] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/list
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:14.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:15.363] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:15.363] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:15 GMT
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询超管列表成功!","data":{"startRow":1,"lastPage":6,"navigatepageNums":[1,2,3,4,5,6],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"manager.create_time desc","endRow":10,"list":[{"remark":"12","managerName":"杨文慧","userId":5523061,"userCode":"116032550","createTime":"2021-09-02 14:14:47","nickname":"失眠的黄蜂","id":57,"status":0},{"remark":"1","managerName":"安","userId":5523055,"userCode":"155032550","createTime":"2021-08-31 16:54:44","nickname":"巡56号","id":56,"status":0},{"remark":"平台服务审核监控","managerName":"彭成","userId":4421470,"userCode":"107412440","createTime":"2021-08-18 14:19:55","nickname":"皮皮巡管员","id":55,"status":0},{"remark":"平台服务审核监控","managerName":"李领桢","userId":5416383,"userCode":"138361450","createTime":"2021-08-17 14:30:01","nickname":"皮皮巡管员","id":54,"status":0},{"remark":"平台服务审核监控","managerName":"郝德龙","userId":5416522,"userCode":"122561450","createTime":"2021-08-17 14:29:08","nickname":"皮皮巡管员","id":53,"status":0},{"remark":"平台服务审核监控","managerName":"杜修齐","userId":5416386,"userCode":"168361450","createTime":"2021-08-17 14:26:31","nickname":"皮皮巡管员","id":52,"status":0},{"remark":"平台服务审核监控","managerName":"余洋","userId":5416391,"userCode":"119361450","createTime":"2021-08-17 14:25:35","nickname":"皮皮巡管员","id":51,"status":0},{"remark":"平台服务审核监控","managerName":"高先柯","userId":5315382,"userCode":"128351350","createTime":"2021-08-11 09:46:00","nickname":"皮皮巡管员","id":50,"status":0},{"remark":"平台服务审核监控","managerName":"王庆君","userId":5315386,"userCode":"168351350","createTime":"2021-08-11 09:43:55","nickname":"皮皮巡管员","id":49,"status":0},{"remark":"平台服务审核监控","managerName":"高为福","userId":5315344,"userCode":"144351350","createTime":"2021-08-11 09:40:26","nickname":"皮皮巡管员","id":48,"status":0}],"pageNum":1,"navigatePages":8,"total":51,"pages":6,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:15.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:15.365] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testManagerList--Test Mthod Success
[2021-09-02 16:33:15.365] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:15:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======
[2021-09-02 16:33:15.365] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 667毫秒======
[2021-09-02 16:33:15.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:15.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:15.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管列表 /api/v1/rask/manager/list","caseLog":"======2021-09-02 16:33:14:用例【com.pipi.invoker.CosPlayerTest.testManagerList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:15 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询超管列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":6,\"navigatepageNums\":[1,2,3,4,5,6],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"manager.create_time desc\",\"endRow\":10,\"list\":[{\"remark\":\"12\",\"managerName\":\"杨文慧\",\"userId\":5523061,\"userCode\":\"116032550\",\"createTime\":\"2021-09-02 14:14:47\",\"nickname\":\"失眠的黄蜂\",\"id\":57,\"status\":0},{\"remark\":\"1\",\"managerName\":\"安\",\"userId\":5523055,\"userCode\":\"155032550\",\"createTime\":\"2021-08-31 16:54:44\",\"nickname\":\"巡56号\",\"id\":56,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"彭成\",\"userId\":4421470,\"userCode\":\"107412440\",\"createTime\":\"2021-08-18 14:19:55\",\"nickname\":\"皮皮巡管员\",\"id\":55,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"李领桢\",\"userId\":5416383,\"userCode\":\"138361450\",\"createTime\":\"2021-08-17 14:30:01\",\"nickname\":\"皮皮巡管员\",\"id\":54,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"郝德龙\",\"userId\":5416522,\"userCode\":\"122561450\",\"createTime\":\"2021-08-17 14:29:08\",\"nickname\":\"皮皮巡管员\",\"id\":53,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"杜修齐\",\"userId\":5416386,\"userCode\":\"168361450\",\"createTime\":\"2021-08-17 14:26:31\",\"nickname\":\"皮皮巡管员\",\"id\":52,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"余洋\",\"userId\":5416391,\"userCode\":\"119361450\",\"createTime\":\"2021-08-17 14:25:35\",\"nickname\":\"皮皮巡管员\",\"id\":51,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"高先柯\",\"userId\":5315382,\"userCode\":\"128351350\",\"createTime\":\"2021-08-11 09:46:00\",\"nickname\":\"皮皮巡管员\",\"id\":50,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"王庆君\",\"userId\":5315386,\"userCode\":\"168351350\",\"createTime\":\"2021-08-11 09:43:55\",\"nickname\":\"皮皮巡管员\",\"id\":49,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"高为福\",\"userId\":5315344,\"userCode\":\"144351350\",\"createTime\":\"2021-08-11 09:40:26\",\"nickname\":\"皮皮巡管员\",\"id\":48,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":51,\"pages\":6,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:15:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======\r\n======本次用例运行消耗时间 667毫秒======\r","caseName":"testManagerList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"667毫秒","endTime":"2021-09-02 16:33:15","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:14","status":1}
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:16 GMT
[2021-09-02 16:33:15.877] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:15.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:15.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:15.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:15.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:15.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:16.387] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:16:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-09-02 16:33:16.387] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:16.387] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:16.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:16.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:16.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:16.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:16.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:16.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:16.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:16.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:16.901] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:16.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:17 GMT
[2021-09-02 16:33:16.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:16.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:16.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:16.902] [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":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"国王Ⅲ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10005.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"nobleRankCode":73,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456803,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:16.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:16.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:16.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-09-02 16:33:16.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:17.006] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:17.006] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774134, nickname=沉着的电脑, remark=1, chargeBalance=10005.90, userId=5523051, searchValue=5523051}
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=%E6%B2%89%E7%9D%80%E7%9A%84%E7%94%B5%E8%84%91&remark=1&chargeBalance=10005.90&userId=5523051&searchValue=5523051
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:17.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:17 GMT
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:17.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:17.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-09-02 16:33:17.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:17.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:17.178] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMoneyDetailsSave--Test Mthod Success
[2021-09-02 16:33:17.178] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:17:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-09-02 16:33:17.178] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 791毫秒======
[2021-09-02 16:33:17.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:17.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:17.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-09-02 16:33:16:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:17 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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"国王Ⅲ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10005.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"nobleRankCode\":73,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456803,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"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\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":1,\"balance\":\"0.00\",\"isSearch\":true,\"moneyType\":1,\"mobile\":\"13823774134\",\"nickname\":\"沉着的电脑\",\"remark\":\"1\",\"chargeBalance\":\"10005.90\",\"userId\":\"5523051\",\"searchValue\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=%E6%B2%89%E7%9D%80%E7%9A%84%E7%94%B5%E8%84%91&remark=1&chargeBalance=10005.90&userId=5523051&searchValue=5523051\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\":\"Thu, 02 Sep 2021 08:33:17 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:17:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 791毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"791毫秒","endTime":"2021-09-02 16:33:17","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:16","status":1}
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:17 GMT
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:17.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:17.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:17.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:18.091] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:18:用例【com.pipi.invoker.CosPlayerTest.testOrderList】开始======
[2021-09-02 16:33:18.092] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/order/list
[2021-09-02 16:33:18.092] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:18.246] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:18.246] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/order/list
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {chanType=0, pageSize=10, pageNum=1, status=20}
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - chanType=0&pageSize=10&pageNum=1&status=20
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:18.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:19 GMT
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:19.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询列表成功!","data":{"startRow":1,"lastPage":8,"navigatepageNums":[1,2,3,4,5,6,7,8],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"id DESC","endRow":10,"list":[{"payTime":"2021-08-31 18:49:17","serverUser":{"sourceId":5,"platformAuth":0,"publicOpenId":"os6HU086KNhZYVSgNnjbfyqPIrVc","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3678490,"chargeBalance":3.31,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/3c916ace9dd84ae4a037e8444c74aa6e.jpg","lastMemberExp":43,"memberExp":43,"activeTime":"2021-09-01 10:33:50","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"109487630","loginTime":"2021-08-31 17:58:54","ordersTakeStatus":1,"nickname":"㣧濫䙸㩋㒧","registIp":"171.113.49.113","virtualBalance":7,"isCancel":false,"mobile":"13247120415","imPsw":"404ec75e3b074ba590499e33f9996f04","updateTime":"2021-08-31 09:48:46","quickServerStatus":2,"imId":"3678490_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-03-15 16:44:10","newUser":false,"registDeviceNo":"e66a63f4-ebf6-37c0-1cdf-fddfb5767046"},"type":3,"orderIp":"61.183.246.70","payment":2,"id":3041399,"beginTime":"2021-08-31 19:15:00","userNickName":"难过的月饼","actualMoney":2.00,"orderNo":"TEST210831152466","totalMoney":2.00,"completeTime":"2021-08-31 18:49:49","serviceTime":"2021-08-31 18:49:41","typeStr":"android注册来源","charges":0.3000,"name":"五子棋 1*半小时","status":600,"statusStr":"已完成","commissionMoney":0.60,"isPayCallback":true,"sourceOs":3,"remark":"","platform":5,"incomeMoney":2.00,"serviceUserNickName":"㣧濫䙸㩋㒧","sourcePlatform":5,"orderProduct":{"amount":1,"unit":"半小时","orderNo":"TEST210831152466","productId":204595,"createTime":"2021-08-31 18:49:17","price":2.00,"updateTime":"2021-08-31 18:49:17","id":3040773,"productName":"五子棋 1*半小时"},"platformName":"android注册来源","receivingTime":"2021-08-31 18:49:37","isPay":true,"updateTime":"2021-08-31 18:49:52","userId":5523057,"serviceUserId":3678490,"serverMoney":1.40,"createTime":"2021-08-31 18:49:17","user":{"sourceId":5,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523057,"chargeBalance":3.00,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":2,"memberExp":2,"activeTime":"2021-09-01 09:34:24","userInfoAuth":0,"status":1,"gender":0,"city":"","registerType":3,"userCode":"175032550","loginTime":"2021-08-31 18:33:25","nickname":"难过的月饼","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"18040507113","imPsw":"9c22c375dcea4c28899921475792cfa9","updateTime":"2021-08-31 18:33:26","quickServerStatus":0,"imId":"5523057_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 18:33:26","newUser":false,"registDeviceNo":""},"payableMoney":2.00,"categoryId":68},{"payTime":"2021-08-31 18:00:14","serverUser":{"sourceId":5,"platformAuth":0,"publicOpenId":"os6HU086KNhZYVSgNnjbfyqPIrVc","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3678490,"chargeBalance":3.31,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/3c916ace9dd84ae4a037e8444c74aa6e.jpg","lastMemberExp":43,"memberExp":43,"activeTime":"2021-09-01 10:33:50","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"109487630","loginTime":"2021-08-31 17:58:54","ordersTakeStatus":1,"nickname":"㣧濫䙸㩋㒧","registIp":"171.113.49.113","virtualBalance":7,"isCancel":false,"mobile":"13247120415","imPsw":"404ec75e3b074ba590499e33f9996f04","updateTime":"2021-08-31 09:48:46","quickServerStatus":2,"imId":"3678490_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-03-15 16:44:10","newUser":false,"registDeviceNo":"e66a63f4-ebf6-37c0-1cdf-fddfb5767046"},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041398,"beginTime":"2021-08-31 18:30:00","userNickName":"噔噔咚","actualMoney":15.00,"orderNo":"TEST210831551467","totalMoney":15.00,"completeTime":"2021-08-31 18:00:42","serviceTime":"2021-08-31 18:00:29","typeStr":"android注册来源","charges":0.3000,"name":"五子棋 1*半小时","status":600,"statusStr":"已完成","commissionMoney":4.50,"isPayCallback":true,"sourceOs":3,"remark":"","platform":5,"incomeMoney":15.00,"serviceUserNickName":"㣧濫䙸㩋㒧","sourcePlatform":507,"orderProduct":{"amount":1,"unit":"半小时","orderNo":"TEST210831551467","productId":204595,"createTime":"2021-08-31 18:00:13","price":15.00,"updateTime":"2021-08-31 18:00:13","id":3040772,"productName":"五子棋 1*半小时"},"platformName":"android注册来源","receivingTime":"2021-08-31 18:00:25","isPay":true,"updateTime":"2021-08-31 18:00:45","userId":3665359,"serviceUserId":3678490,"serverMoney":10.50,"createTime":"2021-08-31 18:00:13","user":{"sourceId":507,"platformAuth":0,"publicOpenId":"os6HU0_TAlb5jzzyR_fewV9b5kfY","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3665359,"chargeBalance":302.63,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/2/ecf9670f7edb4da88b95003a7d1734f9.jpg","lastMemberExp":357,"memberExp":357,"activeTime":"2021-09-02 09:53:52","userInfoAuth":2,"status":1,"gender":1,"city":"潜江","registerType":3,"userCode":"195356630","loginTime":"2021-09-02 10:21:54","ordersTakeStatus":3,"nickname":"噔噔咚","registIp":"171.83.6.80","virtualBalance":367311,"isCancel":false,"mobile":"18040507112","imPsw":"dffa3f574c7847d2baa02b963303b95e","updateTime":"2021-08-31 09:47:17","quickServerStatus":2,"imId":"3665359_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-03-13 18:04:30","newUser":false,"registDeviceNo":"e66a63f4-ebf6-37c0-1cdf-fddfb5767046"},"payableMoney":15.00,"categoryId":68},{"payTime":"2021-08-31 17:54:43","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041397,"beginTime":"2021-08-31 18:15:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831720313","totalMoney":9.00,"completeTime":"2021-08-31 18:15:01","refundMoney":9.00,"typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":102,"statusStr":"已取消","isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":0.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831720313","productId":317595,"createTime":"2021-08-31 17:54:43","price":9.00,"updateTime":"2021-08-31 17:54:43","id":3040771,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","isPay":true,"refundTime":"2021-08-31 18:15:01","updateTime":"2021-08-31 18:15:01","userId":5523051,"serviceUserId":5523052,"createTime":"2021-08-31 17:54:43","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456803,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 17:09:00","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041396,"beginTime":"2021-08-31 17:30:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831670399","totalMoney":9.00,"completeTime":"2021-08-31 17:29:00","refundMoney":9.00,"typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":102,"statusStr":"已取消","isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":0.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831670399","productId":317595,"createTime":"2021-08-31 17:08:59","price":9.00,"updateTime":"2021-08-31 17:08:59","id":3040770,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","isPay":true,"refundTime":"2021-08-31 17:29:00","updateTime":"2021-08-31 17:29:00","userId":5523051,"serviceUserId":5523052,"createTime":"2021-08-31 17:08:59","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456803,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 17:02:23","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041395,"beginTime":"2021-08-31 17:30:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831621739","totalMoney":9.00,"completeTime":"2021-08-31 17:06:38","refundMoney":9.00,"typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":101,"statusStr":"已取消","isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":0.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831621739","productId":317595,"createTime":"2021-08-31 17:02:21","price":9.00,"updateTime":"2021-08-31 17:02:21","id":3040769,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","cancelReason":"陪玩师正在接单","isPay":true,"refundTime":"2021-08-31 17:06:38","updateTime":"2021-08-31 17:06:38","userId":5523051,"serviceUserId":5523052,"createTime":"2021-08-31 17:02:21","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456803,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 17:01:08","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041394,"beginTime":"2021-08-31 17:30:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831966647","totalMoney":9.00,"completeTime":"2021-08-31 17:01:59","refundMoney":9.00,"typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":101,"statusStr":"已取消","isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":0.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831966647","productId":317595,"createTime":"2021-08-31 17:01:07","price":9.00,"updateTime":"2021-08-31 17:01:07","id":3040768,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","cancelReason":"陪玩师正在接单","isPay":true,"refundTime":"2021-08-31 17:01:59","updateTime":"2021-08-31 17:01:59","userId":5523051,"serviceUserId":5523052,"createTime":"2021-08-31 17:01:07","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456803,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 16:53:32","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041393,"beginTime":"2021-08-31 17:15:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831387246","totalMoney":9.00,"completeTime":"2021-08-31 17:00:49","refundMoney":9.00,"typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":101,"statusStr":"已取消","isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":0.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831387246","productId":317595,"createTime":"2021-08-31 16:53:31","price":9.00,"updateTime":"2021-08-31 16:53:31","id":3040767,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","cancelReason":"陪玩师正在接单","isPay":true,"refundTime":"2021-08-31 17:00:49","updateTime":"2021-08-31 17:00:49","userId":5523051,"serviceUserId":5523052,"createTime":"2021-08-31 16:53:31","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456803,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 16:47:00","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041392,"beginTime":"2021-08-31 17:15:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831762241","totalMoney":9.00,"completeTime":"2021-08-31 16:52:25","serviceTime":"2021-08-31 16:49:40","typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":600,"statusStr":"已完成","commissionMoney":2.70,"isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":9.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831762241","productId":317595,"createTime":"2021-08-31 16:47:00","price":9.00,"updateTime":"2021-08-31 16:47:00","id":3040766,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","receivingTime":"2021-08-31 16:49:39","isPay":true,"updateTime":"2021-08-31 16:52:28","userId":5523051,"serviceUserId":5523052,"serverMoney":6.30,"createTime":"2021-08-31 16:47:00","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456803,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 16:43:01","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041391,"beginTime":"2021-08-31 17:00:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831991992","totalMoney":9.00,"completeTime":"2021-08-31 16:52:14","serviceTime":"2021-08-31 16:49:45","typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":600,"statusStr":"已完成","commissionMoney":2.70,"isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":9.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831991992","productId":317595,"createTime":"2021-08-31 16:43:01","price":9.00,"updateTime":"2021-08-31 16:43:01","id":3040765,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","receivingTime":"2021-08-31 16:49:43","isPay":true,"updateTime":"2021-08-31 16:52:23","userId":5523051,"serviceUserId":5523052,"serverMoney":6.30,"createTime":"2021-08-31 16:43:01","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.90,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456803,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 15:18:32","serverUser":{"sourceId":5,"platformAuth":0,"publicOpenId":"os6HU027aaPexjqLA4ba5KCr38N8","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523039,"chargeBalance":996730.81,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c976818d5b94ef1b640103347110b7b.jpg","lastMemberExp":4233,"memberExp":4233,"activeTime":"2021-09-02 09:44:45","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"193032550","loginTime":"2021-09-01 10:06:11","ordersTakeStatus":1,"nickname":"测试1号","registIp":"61.183.246.70","virtualBalance":767182,"isCancel":false,"mobile":"13600000001","imPsw":"7ac7c6ebf474473d8e2816548847a25e","updateTime":"2021-08-31 15:06:35","quickServerStatus":3,"imId":"5523039_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-30 11:48:39","newUser":false,"registDeviceNo":"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d"},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041390,"beginTime":"2021-08-31 15:45:00","userNickName":"游客16089萝莉","actualMoney":9.00,"orderNo":"TEST210831845259","totalMoney":9.00,"completeTime":"2021-08-31 15:20:55","serviceTime":"2021-08-31 15:20:34","typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":600,"statusStr":"已完成","commissionMoney":2.70,"isPayCallback":true,"sourceOs":3,"remark":"","platform":5,"incomeMoney":9.00,"serviceUserNickName":"测试1号","sourcePlatform":5,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831845259","productId":317598,"createTime":"2021-08-31 15:18:32","price":9.00,"updateTime":"2021-08-31 15:18:32","id":3040764,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","receivingTime":"2021-08-31 15:20:30","isPay":true,"updateTime":"2021-08-31 15:21:03","userId":5244881,"serviceUserId":5523039,"serverMoney":6.30,"createTime":"2021-08-31 15:18:32","user":{"sourceId":5,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5244881,"chargeBalance":998782.06,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/9/1/540238d0147e41b989728125be31e83b.jpg","lastMemberExp":1212,"memberExp":1212,"activeTime":"2021-09-01 09:24:44","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"118844250","loginTime":"2021-09-01 10:05:38","ordersTakeStatus":1,"nickname":"游客16089萝莉","registIp":"171.83.98.52","virtualBalance":873322,"isCancel":false,"mobile":"19972682997","imPsw":"0bc5a05ed6034cc395b71acc664001fc","updateTime":"2021-09-01 10:19:01","quickServerStatus":3,"imId":"5244881_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-05 16:39:01","newUser":false,"registDeviceNo":"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d"},"payableMoney":9.00,"categoryId":30}],"pageNum":1,"navigatePages":8,"total":3040890,"pages":304089,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:19.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:19.303] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:19.304] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testOrderList--Test Mthod Success
[2021-09-02 16:33:19.304] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:19:用例【com.pipi.invoker.CosPlayerTest.testOrderList】结束======
[2021-09-02 16:33:19.304] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒213毫秒======
[2021-09-02 16:33:19.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:19.304] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:19.305] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:19.306] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询订单","caseLog":"======2021-09-02 16:33:18:用例【com.pipi.invoker.CosPlayerTest.testOrderList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/order/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"chanType\":\"0\",\"pageSize\":\"10\",\"pageNum\":\"1\",\"status\":\"20\"}\r\n###Http Request queryString after URLEncoder### :\r\nchanType=0&pageSize=10&pageNum=1&status=20\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\":\"Thu, 02 Sep 2021 08:33:19 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"id DESC\",\"endRow\":10,\"list\":[{\"payTime\":\"2021-08-31 18:49:17\",\"serverUser\":{\"sourceId\":5,\"platformAuth\":0,\"publicOpenId\":\"os6HU086KNhZYVSgNnjbfyqPIrVc\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3678490,\"chargeBalance\":3.31,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/3c916ace9dd84ae4a037e8444c74aa6e.jpg\",\"lastMemberExp\":43,\"memberExp\":43,\"activeTime\":\"2021-09-01 10:33:50\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"109487630\",\"loginTime\":\"2021-08-31 17:58:54\",\"ordersTakeStatus\":1,\"nickname\":\"㣧濫䙸㩋㒧\",\"registIp\":\"171.113.49.113\",\"virtualBalance\":7,\"isCancel\":false,\"mobile\":\"13247120415\",\"imPsw\":\"404ec75e3b074ba590499e33f9996f04\",\"updateTime\":\"2021-08-31 09:48:46\",\"quickServerStatus\":2,\"imId\":\"3678490_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-03-15 16:44:10\",\"newUser\":false,\"registDeviceNo\":\"e66a63f4-ebf6-37c0-1cdf-fddfb5767046\"},\"type\":3,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041399,\"beginTime\":\"2021-08-31 19:15:00\",\"userNickName\":\"难过的月饼\",\"actualMoney\":2.00,\"orderNo\":\"TEST210831152466\",\"totalMoney\":2.00,\"completeTime\":\"2021-08-31 18:49:49\",\"serviceTime\":\"2021-08-31 18:49:41\",\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"五子棋 1*半小时\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":0.60,\"isPayCallback\":true,\"sourceOs\":3,\"remark\":\"\",\"platform\":5,\"incomeMoney\":2.00,\"serviceUserNickName\":\"㣧濫䙸㩋㒧\",\"sourcePlatform\":5,\"orderProduct\":{\"amount\":1,\"unit\":\"半小时\",\"orderNo\":\"TEST210831152466\",\"productId\":204595,\"createTime\":\"2021-08-31 18:49:17\",\"price\":2.00,\"updateTime\":\"2021-08-31 18:49:17\",\"id\":3040773,\"productName\":\"五子棋 1*半小时\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 18:49:37\",\"isPay\":true,\"updateTime\":\"2021-08-31 18:49:52\",\"userId\":5523057,\"serviceUserId\":3678490,\"serverMoney\":1.40,\"createTime\":\"2021-08-31 18:49:17\",\"user\":{\"sourceId\":5,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523057,\"chargeBalance\":3.00,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":2,\"memberExp\":2,\"activeTime\":\"2021-09-01 09:34:24\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"city\":\"\",\"registerType\":3,\"userCode\":\"175032550\",\"loginTime\":\"2021-08-31 18:33:25\",\"nickname\":\"难过的月饼\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"18040507113\",\"imPsw\":\"9c22c375dcea4c28899921475792cfa9\",\"updateTime\":\"2021-08-31 18:33:26\",\"quickServerStatus\":0,\"imId\":\"5523057_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 18:33:26\",\"newUser\":false,\"registDeviceNo\":\"\"},\"payableMoney\":2.00,\"categoryId\":68},{\"payTime\":\"2021-08-31 18:00:14\",\"serverUser\":{\"sourceId\":5,\"platformAuth\":0,\"publicOpenId\":\"os6HU086KNhZYVSgNnjbfyqPIrVc\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3678490,\"chargeBalance\":3.31,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/3c916ace9dd84ae4a037e8444c74aa6e.jpg\",\"lastMemberExp\":43,\"memberExp\":43,\"activeTime\":\"2021-09-01 10:33:50\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"109487630\",\"loginTime\":\"2021-08-31 17:58:54\",\"ordersTakeStatus\":1,\"nickname\":\"㣧濫䙸㩋㒧\",\"registIp\":\"171.113.49.113\",\"virtualBalance\":7,\"isCancel\":false,\"mobile\":\"13247120415\",\"imPsw\":\"404ec75e3b074ba590499e33f9996f04\",\"updateTime\":\"2021-08-31 09:48:46\",\"quickServerStatus\":2,\"imId\":\"3678490_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-03-15 16:44:10\",\"newUser\":false,\"registDeviceNo\":\"e66a63f4-ebf6-37c0-1cdf-fddfb5767046\"},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041398,\"beginTime\":\"2021-08-31 18:30:00\",\"userNickName\":\"噔噔咚\",\"actualMoney\":15.00,\"orderNo\":\"TEST210831551467\",\"totalMoney\":15.00,\"completeTime\":\"2021-08-31 18:00:42\",\"serviceTime\":\"2021-08-31 18:00:29\",\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"五子棋 1*半小时\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":4.50,\"isPayCallback\":true,\"sourceOs\":3,\"remark\":\"\",\"platform\":5,\"incomeMoney\":15.00,\"serviceUserNickName\":\"㣧濫䙸㩋㒧\",\"sourcePlatform\":507,\"orderProduct\":{\"amount\":1,\"unit\":\"半小时\",\"orderNo\":\"TEST210831551467\",\"productId\":204595,\"createTime\":\"2021-08-31 18:00:13\",\"price\":15.00,\"updateTime\":\"2021-08-31 18:00:13\",\"id\":3040772,\"productName\":\"五子棋 1*半小时\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 18:00:25\",\"isPay\":true,\"updateTime\":\"2021-08-31 18:00:45\",\"userId\":3665359,\"serviceUserId\":3678490,\"serverMoney\":10.50,\"createTime\":\"2021-08-31 18:00:13\",\"user\":{\"sourceId\":507,\"platformAuth\":0,\"publicOpenId\":\"os6HU0_TAlb5jzzyR_fewV9b5kfY\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3665359,\"chargeBalance\":302.63,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/2/ecf9670f7edb4da88b95003a7d1734f9.jpg\",\"lastMemberExp\":357,\"memberExp\":357,\"activeTime\":\"2021-09-02 09:53:52\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"潜江\",\"registerType\":3,\"userCode\":\"195356630\",\"loginTime\":\"2021-09-02 10:21:54\",\"ordersTakeStatus\":3,\"nickname\":\"噔噔咚\",\"registIp\":\"171.83.6.80\",\"virtualBalance\":367311,\"isCancel\":false,\"mobile\":\"18040507112\",\"imPsw\":\"dffa3f574c7847d2baa02b963303b95e\",\"updateTime\":\"2021-08-31 09:47:17\",\"quickServerStatus\":2,\"imId\":\"3665359_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-03-13 18:04:30\",\"newUser\":false,\"registDeviceNo\":\"e66a63f4-ebf6-37c0-1cdf-fddfb5767046\"},\"payableMoney\":15.00,\"categoryId\":68},{\"payTime\":\"2021-08-31 17:54:43\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041397,\"beginTime\":\"2021-08-31 18:15:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831720313\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 18:15:01\",\"refundMoney\":9.00,\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":102,\"statusStr\":\"已取消\",\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":0.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831720313\",\"productId\":317595,\"createTime\":\"2021-08-31 17:54:43\",\"price\":9.00,\"updateTime\":\"2021-08-31 17:54:43\",\"id\":3040771,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"isPay\":true,\"refundTime\":\"2021-08-31 18:15:01\",\"updateTime\":\"2021-08-31 18:15:01\",\"userId\":5523051,\"serviceUserId\":5523052,\"createTime\":\"2021-08-31 17:54:43\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456803,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 17:09:00\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041396,\"beginTime\":\"2021-08-31 17:30:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831670399\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 17:29:00\",\"refundMoney\":9.00,\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":102,\"statusStr\":\"已取消\",\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":0.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831670399\",\"productId\":317595,\"createTime\":\"2021-08-31 17:08:59\",\"price\":9.00,\"updateTime\":\"2021-08-31 17:08:59\",\"id\":3040770,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"isPay\":true,\"refundTime\":\"2021-08-31 17:29:00\",\"updateTime\":\"2021-08-31 17:29:00\",\"userId\":5523051,\"serviceUserId\":5523052,\"createTime\":\"2021-08-31 17:08:59\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456803,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 17:02:23\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041395,\"beginTime\":\"2021-08-31 17:30:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831621739\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 17:06:38\",\"refundMoney\":9.00,\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":101,\"statusStr\":\"已取消\",\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":0.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831621739\",\"productId\":317595,\"createTime\":\"2021-08-31 17:02:21\",\"price\":9.00,\"updateTime\":\"2021-08-31 17:02:21\",\"id\":3040769,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"cancelReason\":\"陪玩师正在接单\",\"isPay\":true,\"refundTime\":\"2021-08-31 17:06:38\",\"updateTime\":\"2021-08-31 17:06:38\",\"userId\":5523051,\"serviceUserId\":5523052,\"createTime\":\"2021-08-31 17:02:21\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456803,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 17:01:08\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041394,\"beginTime\":\"2021-08-31 17:30:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831966647\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 17:01:59\",\"refundMoney\":9.00,\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":101,\"statusStr\":\"已取消\",\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":0.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831966647\",\"productId\":317595,\"createTime\":\"2021-08-31 17:01:07\",\"price\":9.00,\"updateTime\":\"2021-08-31 17:01:07\",\"id\":3040768,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"cancelReason\":\"陪玩师正在接单\",\"isPay\":true,\"refundTime\":\"2021-08-31 17:01:59\",\"updateTime\":\"2021-08-31 17:01:59\",\"userId\":5523051,\"serviceUserId\":5523052,\"createTime\":\"2021-08-31 17:01:07\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456803,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 16:53:32\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041393,\"beginTime\":\"2021-08-31 17:15:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831387246\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 17:00:49\",\"refundMoney\":9.00,\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":101,\"statusStr\":\"已取消\",\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":0.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831387246\",\"productId\":317595,\"createTime\":\"2021-08-31 16:53:31\",\"price\":9.00,\"updateTime\":\"2021-08-31 16:53:31\",\"id\":3040767,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"cancelReason\":\"陪玩师正在接单\",\"isPay\":true,\"refundTime\":\"2021-08-31 17:00:49\",\"updateTime\":\"2021-08-31 17:00:49\",\"userId\":5523051,\"serviceUserId\":5523052,\"createTime\":\"2021-08-31 16:53:31\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456803,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 16:47:00\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041392,\"beginTime\":\"2021-08-31 17:15:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831762241\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 16:52:25\",\"serviceTime\":\"2021-08-31 16:49:40\",\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":2.70,\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":9.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831762241\",\"productId\":317595,\"createTime\":\"2021-08-31 16:47:00\",\"price\":9.00,\"updateTime\":\"2021-08-31 16:47:00\",\"id\":3040766,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 16:49:39\",\"isPay\":true,\"updateTime\":\"2021-08-31 16:52:28\",\"userId\":5523051,\"serviceUserId\":5523052,\"serverMoney\":6.30,\"createTime\":\"2021-08-31 16:47:00\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456803,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 16:43:01\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041391,\"beginTime\":\"2021-08-31 17:00:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831991992\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 16:52:14\",\"serviceTime\":\"2021-08-31 16:49:45\",\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":2.70,\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":9.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831991992\",\"productId\":317595,\"createTime\":\"2021-08-31 16:43:01\",\"price\":9.00,\"updateTime\":\"2021-08-31 16:43:01\",\"id\":3040765,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 16:49:43\",\"isPay\":true,\"updateTime\":\"2021-08-31 16:52:23\",\"userId\":5523051,\"serviceUserId\":5523052,\"serverMoney\":6.30,\"createTime\":\"2021-08-31 16:43:01\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.90,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456803,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 15:18:32\",\"serverUser\":{\"sourceId\":5,\"platformAuth\":0,\"publicOpenId\":\"os6HU027aaPexjqLA4ba5KCr38N8\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523039,\"chargeBalance\":996730.81,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c976818d5b94ef1b640103347110b7b.jpg\",\"lastMemberExp\":4233,\"memberExp\":4233,\"activeTime\":\"2021-09-02 09:44:45\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"193032550\",\"loginTime\":\"2021-09-01 10:06:11\",\"ordersTakeStatus\":1,\"nickname\":\"测试1号\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":767182,\"isCancel\":false,\"mobile\":\"13600000001\",\"imPsw\":\"7ac7c6ebf474473d8e2816548847a25e\",\"updateTime\":\"2021-08-31 15:06:35\",\"quickServerStatus\":3,\"imId\":\"5523039_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-30 11:48:39\",\"newUser\":false,\"registDeviceNo\":\"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d\"},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041390,\"beginTime\":\"2021-08-31 15:45:00\",\"userNickName\":\"游客16089萝莉\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831845259\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 15:20:55\",\"serviceTime\":\"2021-08-31 15:20:34\",\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":2.70,\"isPayCallback\":true,\"sourceOs\":3,\"remark\":\"\",\"platform\":5,\"incomeMoney\":9.00,\"serviceUserNickName\":\"测试1号\",\"sourcePlatform\":5,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831845259\",\"productId\":317598,\"createTime\":\"2021-08-31 15:18:32\",\"price\":9.00,\"updateTime\":\"2021-08-31 15:18:32\",\"id\":3040764,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 15:20:30\",\"isPay\":true,\"updateTime\":\"2021-08-31 15:21:03\",\"userId\":5244881,\"serviceUserId\":5523039,\"serverMoney\":6.30,\"createTime\":\"2021-08-31 15:18:32\",\"user\":{\"sourceId\":5,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5244881,\"chargeBalance\":998782.06,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/9/1/540238d0147e41b989728125be31e83b.jpg\",\"lastMemberExp\":1212,\"memberExp\":1212,\"activeTime\":\"2021-09-01 09:24:44\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"118844250\",\"loginTime\":\"2021-09-01 10:05:38\",\"ordersTakeStatus\":1,\"nickname\":\"游客16089萝莉\",\"registIp\":\"171.83.98.52\",\"virtualBalance\":873322,\"isCancel\":false,\"mobile\":\"19972682997\",\"imPsw\":\"0bc5a05ed6034cc395b71acc664001fc\",\"updateTime\":\"2021-09-01 10:19:01\",\"quickServerStatus\":3,\"imId\":\"5244881_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-05 16:39:01\",\"newUser\":false,\"registDeviceNo\":\"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d\"},\"payableMoney\":9.00,\"categoryId\":30}],\"pageNum\":1,\"navigatePages\":8,\"total\":3040890,\"pages\":304089,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:19:用例【com.pipi.invoker.CosPlayerTest.testOrderList】结束======\r\n======本次用例运行消耗时间 01秒213毫秒======\r","caseName":"testOrderList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒213毫秒","endTime":"2021-09-02 16:33:19","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:18","status":1}
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:20 GMT
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:19.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:20.151] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:20:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】开始======
[2021-09-02 16:33:20.151] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/order/product
[2021-09-02 16:33:20.151] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:20.298] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:20.298] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:20.299] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/order/product
[2021-09-02 16:33:20.299] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:20.299] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:20.299] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:20.299] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:20.300] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:20.300] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {productId=317595}
[2021-09-02 16:33:20.300] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:20.300] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - productId=317595
[2021-09-02 16:33:20.300] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:20.301] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:20.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:20.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:20.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:20.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:20 GMT
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"serverNickname":"test","playeeId":5523052,"productName":"王者荣耀","price":9.00,"chargeOptions":[{"baseUnit":"局","unit":"局","dayConvertAmount":0,"price":9.00,"threshold":999,"maxPrice":9.00}],"productId":317595,"serverHeadUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","memberLevel":0,"serverGender":1,"displayNewPrice":0,"serviceInfos":[],"otherProductList":[{"unit":"局","productId":317595,"categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png","certUrl":"","price":9.00,"maxPrice":9.00,"chargeOptions":[{"baseUnit":"局","unit":"局","dayConvertAmount":0,"price":9.00,"threshold":999,"maxPrice":9.00}],"displayNewPrice":0,"productName":"王者荣耀","categoryId":30}],"unit":"局","categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png","certUrl":"","maxPrice":9.00,"categoryId":30},"status":200}
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:20.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:20.446] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testOrderProduct--Test Mthod Success
[2021-09-02 16:33:20.446] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:20:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】结束======
[2021-09-02 16:33:20.446] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 295毫秒======
[2021-09-02 16:33:20.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:20.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:20.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:20.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:20.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:20.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:20.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:20.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:20.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:20.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:20.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:20.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:20.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:20.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"下单-王者荣耀","caseLog":"======2021-09-02 16:33:20:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v1/order/product\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"productId\":\"317595\"}\r\n###Http Request queryString after URLEncoder### :\r\nproductId=317595\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:20 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"serverNickname\":\"test\",\"playeeId\":5523052,\"productName\":\"王者荣耀\",\"price\":9.00,\"chargeOptions\":[{\"baseUnit\":\"局\",\"unit\":\"局\",\"dayConvertAmount\":0,\"price\":9.00,\"threshold\":999,\"maxPrice\":9.00}],\"productId\":317595,\"serverHeadUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"memberLevel\":0,\"serverGender\":1,\"displayNewPrice\":0,\"serviceInfos\":[],\"otherProductList\":[{\"unit\":\"局\",\"productId\":317595,\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png\",\"certUrl\":\"\",\"price\":9.00,\"maxPrice\":9.00,\"chargeOptions\":[{\"baseUnit\":\"局\",\"unit\":\"局\",\"dayConvertAmount\":0,\"price\":9.00,\"threshold\":999,\"maxPrice\":9.00}],\"displayNewPrice\":0,\"productName\":\"王者荣耀\",\"categoryId\":30}],\"unit\":\"局\",\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png\",\"certUrl\":\"\",\"maxPrice\":9.00,\"categoryId\":30},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:20:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】结束======\r\n======本次用例运行消耗时间 295毫秒======\r","caseName":"testOrderProduct","className":"com.pipi.invoker.CosPlayerTest","durationTime":"295毫秒","endTime":"2021-09-02 16:33:20","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:20","status":1}
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:20 GMT
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:20.522] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:20.523] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:21.035] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:21:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】开始======
[2021-09-02 16:33:21.035] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:21.035] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:21.137] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:21.137] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:21.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:21.283] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:21.283] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:21.283] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:21.283] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:21.283] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:21.283] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:21.284] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:21.284] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:21.284] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:21 GMT
[2021-09-02 16:33:21.284] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:21.284] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:21.284] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:21.284] [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":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"冠39","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":39}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:21.284] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:21.284] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:21.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/gift-product/send-gift
[2021-09-02 16:33:21.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:21.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:21.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:21.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/gift-product/send-gift
[2021-09-02 16:33:21.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:21.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:21.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:21.671] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:21.671] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:21.671] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {giftProductId=14, amount=1, dynamicId=, rewardOrderNo=, toUserId=5523052, SendGiftScene=1, timestamp=1630395325064}
[2021-09-02 16:33:21.671] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:21.671] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - giftProductId=14&amount=1&dynamicId=&rewardOrderNo=&toUserId=5523052&SendGiftScene=1×tamp=1630395325064
[2021-09-02 16:33:21.671] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:21.671] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:22.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:22.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:22.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:22.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:22.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:22.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:22 GMT
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":{"data":"i241i6dcrH8flJe5QgJpTNJjcgA+iaG0eRJcBHKVsPFPP238Hgbqf75/895OQUaCJ6s46lFUt21VDp4MATLtsk+rGShZywLGpCCIptnF/3k="},"status":200}
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:22.073] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testPipibiSend--Test Mthod Success
[2021-09-02 16:33:22.073] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:22:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】结束======
[2021-09-02 16:33:22.073] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒038毫秒======
[2021-09-02 16:33:22.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:22.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:22.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送皮皮币礼物","caseLog":"======2021-09-02 16:33:21:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:21 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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"冠39\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":39}],\"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-app.apeiwan.com/api/v1/gift-product/send-gift\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"giftProductId\":\"14\",\"amount\":\"1\",\"dynamicId\":\"\",\"rewardOrderNo\":\"\",\"toUserId\":\"5523052\",\"SendGiftScene\":\"1\",\"timestamp\":\"1630395325064\"}\r\n###Http Request queryString after URLEncoder### :\r\ngiftProductId=14&amount=1&dynamicId=&rewardOrderNo=&toUserId=5523052&SendGiftScene=1×tamp=1630395325064\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:22 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":{\"data\":\"i241i6dcrH8flJe5QgJpTNJjcgA+iaG0eRJcBHKVsPFPP238Hgbqf75/895OQUaCJ6s46lFUt21VDp4MATLtsk+rGShZywLGpCCIptnF/3k=\"},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:22:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】结束======\r\n======本次用例运行消耗时间 01秒038毫秒======\r","caseName":"testPipibiSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒038毫秒","endTime":"2021-09-02 16:33:22","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:21","status":1}
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:24 GMT
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:23.763] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:23.764] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:24.275] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:24:用例【com.pipi.invoker.CosPlayerTest.testQSend】开始======
[2021-09-02 16:33:24.276] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:24.276] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:24.438] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:24.438] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:24.438] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:24.438] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:24.438] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:24.438] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:24.438] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:24.439] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:24.439] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-09-02 16:33:24.439] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:24.439] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-09-02 16:33:24.439] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:24.439] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:24.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:24.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:24.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:24.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:24.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:24.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:24.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:24.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:24.591] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:24 GMT
[2021-09-02 16:33:24.591] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:24.591] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:24.591] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:24.591] [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":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"冠39","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":39}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:24.591] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:24.591] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:24.591] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-09-02 16:33:24.591] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:24.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:24.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:24.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-09-02 16:33:24.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:24.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:24.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:24.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:24.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:24.741] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=882100, productId=410, userIds=5523052, timestamp=1621828487580}
[2021-09-02 16:33:24.741] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:24.741] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=882100&productId=410&userIds=5523052×tamp=1621828487580
[2021-09-02 16:33:24.741] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:24.741] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:25.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:25.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:25.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:25.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:25.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:25.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:25.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:25.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:25.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:25 GMT
[2021-09-02 16:33:25.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:25.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:25.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:25.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaYrULTnSJ/Gg8k3rnDgnEbrPMuX/jl6gvF4YYBEgXrJwqzKpCQ92OZ0r4f21h84Vh2+ZOZqbm1AgNgVcOaETZdEn5xlGJTXS9dbhhi0S8ort2i4Wrzi0OpwxQL1U2kChESjmqpc/r0nBzS8OgZFpNfagp7Ki18Fa8a0p9AETu3qtjr5Z4fDiAewkKCds40oP5FLCcR5vHRnaUH/Oil4mOWwMa7WdbRi9mMsRbXDTka85xvC4lqq1RJ90trsUoGOKpwXZ0hKLCqyvSdFds7rjPO1FvbmRTLQ/OvjR8SBcfI8lFOxAPGmkA5Rum0yqkKWm4e0mdSjxSdCanbpZzHg12WHOJfzRQkVkC6N/eQGTJ/LA3XPYn4iA+ZA1O7+DnCHcBPzd2lSe94qX1YEkQBKlYj3bvMGIAouxySszqnYarWvN+BbQ+a8MnjkN92i2pOlJiambbLcjQXHR+zWgWHO8BnZi6MbzarG52qvFSGK3PfHrJzwI55T7iuIJIo1iaXok2Qae99jitcwPKVODtcHou/Y=","status":200}
[2021-09-02 16:33:25.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:25.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:25.475] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testQSend--Test Mthod Success
[2021-09-02 16:33:25.475] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:25:用例【com.pipi.invoker.CosPlayerTest.testQSend】结束======
[2021-09-02 16:33:25.476] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒200毫秒======
[2021-09-02 16:33:25.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:25.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:25.477] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送全服礼物","caseLog":"======2021-09-02 16:33:24:用例【com.pipi.invoker.CosPlayerTest.testQSend】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:24 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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"冠39\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":39}],\"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-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"882100\",\"productId\":\"410\",\"userIds\":\"5523052\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=882100&productId=410&userIds=5523052×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:25 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaYrULTnSJ/Gg8k3rnDgnEbrPMuX/jl6gvF4YYBEgXrJwqzKpCQ92OZ0r4f21h84Vh2+ZOZqbm1AgNgVcOaETZdEn5xlGJTXS9dbhhi0S8ort2i4Wrzi0OpwxQL1U2kChESjmqpc/r0nBzS8OgZFpNfagp7Ki18Fa8a0p9AETu3qtjr5Z4fDiAewkKCds40oP5FLCcR5vHRnaUH/Oil4mOWwMa7WdbRi9mMsRbXDTka85xvC4lqq1RJ90trsUoGOKpwXZ0hKLCqyvSdFds7rjPO1FvbmRTLQ/OvjR8SBcfI8lFOxAPGmkA5Rum0yqkKWm4e0mdSjxSdCanbpZzHg12WHOJfzRQkVkC6N/eQGTJ/LA3XPYn4iA+ZA1O7+DnCHcBPzd2lSe94qX1YEkQBKlYj3bvMGIAouxySszqnYarWvN+BbQ+a8MnjkN92i2pOlJiambbLcjQXHR+zWgWHO8BnZi6MbzarG52qvFSGK3PfHrJzwI55T7iuIJIo1iaXok2Qae99jitcwPKVODtcHou/Y=\",\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:25:用例【com.pipi.invoker.CosPlayerTest.testQSend】结束======\r\n======本次用例运行消耗时间 01秒200毫秒======\r","caseName":"testQSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒200毫秒","endTime":"2021-09-02 16:33:25","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:24","status":1}
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:26 GMT
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:25.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:26.450] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:26:用例【com.pipi.invoker.CosPlayerTest.testRSend】开始======
[2021-09-02 16:33:26.450] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:26.451] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:27.610] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:27.610] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:27.610] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:27.611] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:28 GMT
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:27.958] [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":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"冠39","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":39}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:27.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:27.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-09-02 16:33:27.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:28.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=882100, productId=549, userIds=5523052, timestamp=1621828487580}
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=882100&productId=549&userIds=5523052×tamp=1621828487580
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:28.108] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:28.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:28.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:28.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:28.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:28.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:28.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:28.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:28.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:28.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:28 GMT
[2021-09-02 16:33:28.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:28.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:28.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:28.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPezKwxLlr0y01GgVbCZbNxMGhiDqHCDeEhQhOEYkRRbUQrr8YQVIMEi60i1G5vzwllGNrpYSMgZ9YtgKQ8AuINqKZapVbs+ZWR7a6yRRyKclWgWPBwmY7uej4J+/5G4pnX1xiOXOlK5WmCVLKvqBlckIS3un5KZiwYbBouWsEHrsaiupOwfJA64g/WTzIlvrqwkT0TeiReBMRvbUduWhKmtfR5+2eZ7b1ddtgTKPKFfum9VbznhIw55LoF5Kof5MVqgJlTOl43ql5taT7tdIbI0roNZKE8hL/97w+Gp2nivnYa8Gcu0mhT+XTjy5pRQXwszhxndi0PTfJZKcQh7LJjSRMDnHFzaJGfiPaZLFfPe222cPuTWzIGev1XCscCGL1y3wHW9SJZzkaTtq4P1OKiAp6PiSD5aaaeXyZ1O4IieHt7kcFMrN+0XeDJtXC0NQ4I=","status":200}
[2021-09-02 16:33:28.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:28.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:28.426] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRSend--Test Mthod Success
[2021-09-02 16:33:28.426] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:28:用例【com.pipi.invoker.CosPlayerTest.testRSend】结束======
[2021-09-02 16:33:28.426] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒976毫秒======
[2021-09-02 16:33:28.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:28.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:28.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送热度值礼物","caseLog":"======2021-09-02 16:33:26:用例【com.pipi.invoker.CosPlayerTest.testRSend】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:28 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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"冠39\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":39}],\"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-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"882100\",\"productId\":\"549\",\"userIds\":\"5523052\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=882100&productId=549&userIds=5523052×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:28 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPezKwxLlr0y01GgVbCZbNxMGhiDqHCDeEhQhOEYkRRbUQrr8YQVIMEi60i1G5vzwllGNrpYSMgZ9YtgKQ8AuINqKZapVbs+ZWR7a6yRRyKclWgWPBwmY7uej4J+/5G4pnX1xiOXOlK5WmCVLKvqBlckIS3un5KZiwYbBouWsEHrsaiupOwfJA64g/WTzIlvrqwkT0TeiReBMRvbUduWhKmtfR5+2eZ7b1ddtgTKPKFfum9VbznhIw55LoF5Kof5MVqgJlTOl43ql5taT7tdIbI0roNZKE8hL/97w+Gp2nivnYa8Gcu0mhT+XTjy5pRQXwszhxndi0PTfJZKcQh7LJjSRMDnHFzaJGfiPaZLFfPe222cPuTWzIGev1XCscCGL1y3wHW9SJZzkaTtq4P1OKiAp6PiSD5aaaeXyZ1O4IieHt7kcFMrN+0XeDJtXC0NQ4I=\",\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:28:用例【com.pipi.invoker.CosPlayerTest.testRSend】结束======\r\n======本次用例运行消耗时间 01秒976毫秒======\r","caseName":"testRSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒976毫秒","endTime":"2021-09-02 16:33:28","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:26","status":1}
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:29 GMT
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:29.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:29.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:29.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:29.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:29.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:29.576] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:29:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======
[2021-09-02 16:33:29.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:29.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:29.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:29.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:29.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:30 GMT
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:29.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:29.887] [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":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":10000.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-09-02 06:45:42","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-09-02 16:32:45","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"冠39","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":39}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:29.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:29.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:29.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/room/list
[2021-09-02 16:33:29.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/room/list
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1, userId=5523052}
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1&userId=5523052
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:30.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:30.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:30.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:30.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:30.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:30.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:30.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:30.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:30.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:30.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:30 GMT
[2021-09-02 16:33:30.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:30.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:30.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:30.188] [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,"endRow":1,"list":[{"hostUserId":5523052,"scoreWeight":512,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":31244,"virtualPeople":1,"roomType":2,"realPeople":1,"roomNo":"882100","recommendWeight":0,"sort":999,"roomName":"我的非公会厅4131","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":true,"isHot":false,"template":1,"hostMobile":"13823774131","remark":"我的非公会厅4131","roomCode":"882100","sortWeight":0,"isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","closeTime":"2021-09-02 16:28:25","orderRoomSerial":"1","openTime":"2021-09-02 16:28:37","roomCategoryId":2,"collectCount":0,"micDuration":900,"isShow":true,"hostUserName":"test","createTime":"2021-08-31 11:29:19"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:30.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:30.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:30.188] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomList--Test Mthod Success
[2021-09-02 16:33:30.188] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:30:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======
[2021-09-02 16:33:30.188] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 612毫秒======
[2021-09-02 16:33:30.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:30.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:30.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:30.190] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:30.190] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询房间","caseLog":"======2021-09-02 16:33:29:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"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\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:30 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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-09-02 06:45:42\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-09-02 16:32:45\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"冠39\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":39}],\"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/room/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":10,\"pageNum\":1,\"userId\":\"5523052\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1&userId=5523052\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\":\"Thu, 02 Sep 2021 08:33:30 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\":5523052,\"scoreWeight\":512,\"roomInfoTagList\":[],\"roomStatus\":1,\"password\":\"123456\",\"isOpenChat\":true,\"roomCategoryName\":\"派单\",\"id\":31244,\"virtualPeople\":1,\"roomType\":2,\"realPeople\":1,\"roomNo\":\"882100\",\"recommendWeight\":0,\"sort\":999,\"roomName\":\"我的非公会厅4131\",\"roomInfoTagConfigList\":[],\"roomVipCount\":15,\"basicHotValue\":0,\"isActivate\":true,\"isHot\":false,\"template\":1,\"hostMobile\":\"13823774131\",\"remark\":\"我的非公会厅4131\",\"roomCode\":\"882100\",\"sortWeight\":0,\"isLock\":false,\"roomIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg\",\"closeTime\":\"2021-09-02 16:28:25\",\"orderRoomSerial\":\"1\",\"openTime\":\"2021-09-02 16:28:37\",\"roomCategoryId\":2,\"collectCount\":0,\"micDuration\":900,\"isShow\":true,\"hostUserName\":\"test\",\"createTime\":\"2021-08-31 11:29:19\"}],\"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-09-02 16:33:30:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======\r\n======本次用例运行消耗时间 612毫秒======\r","caseName":"testRoomList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"612毫秒","endTime":"2021-09-02 16:33:30","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:29","status":1}
[2021-09-02 16:33:30.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:30.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:30.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:30.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:30.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:30.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:30.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:30.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:30.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:30 GMT
[2021-09-02 16:33:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:30.912] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:30:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】开始======
[2021-09-02 16:33:30.912] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/room/record
[2021-09-02 16:33:30.912] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:31.071] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:31.071] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:31.071] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/room/record
[2021-09-02 16:33:31.071] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:31.071] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:31.071] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:31.071] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:31.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:31.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-09-02 16:33:31.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:31.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-09-02 16:33:31.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:31.072] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:32 GMT
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:31.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询超管房间记录成功!","data":{"startRow":1,"lastPage":8,"navigatepageNums":[1,2,3,4,5,6,7,8],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"record.enter_time desc","endRow":10,"list":[{"roomNo":"448442","quitTime":"2021-08-31 17:33:06","managerName":"巡56号","userId":5523055,"userCode":"155032550","roomName":"安安的闲聊厅","adminId":56,"id":114315,"enterTime":"2021-08-31 17:31:51"},{"roomNo":"448442","quitTime":"2021-08-31 17:31:51","managerName":"巡56号","userId":5523055,"userCode":"155032550","roomName":"安安的闲聊厅","adminId":56,"id":114314,"enterTime":"2021-08-31 17:30:22"},{"roomNo":"448442","quitTime":"2021-08-31 17:15:20","managerName":"巡56号","userId":5523055,"userCode":"155032550","roomName":"安安的闲聊厅","adminId":56,"id":114313,"enterTime":"2021-08-31 17:11:30"},{"roomNo":"448442","quitTime":"2021-08-31 17:11:27","managerName":"巡56号","userId":5523055,"userCode":"155032550","roomName":"安安的闲聊厅","adminId":56,"id":114312,"enterTime":"2021-08-31 17:09:23"},{"roomNo":"396674","quitTime":"2021-09-02 16:33:32","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"点唱测试","adminId":15,"id":114311,"enterTime":"2021-08-30 15:00:35"},{"roomNo":"963806","quitTime":"2021-08-30 15:00:34","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114310,"enterTime":"2021-08-30 14:49:47"},{"roomNo":"963806","quitTime":"2021-08-30 14:49:47","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114309,"enterTime":"2021-08-30 14:11:17"},{"roomNo":"963806","quitTime":"2021-08-30 14:11:17","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114308,"enterTime":"2021-08-30 11:39:40"},{"roomNo":"963806","quitTime":"2021-08-30 11:39:40","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114307,"enterTime":"2021-08-30 11:31:09"},{"roomNo":"963806","quitTime":"2021-08-30 11:31:09","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114306,"enterTime":"2021-08-30 11:31:04"}],"pageNum":1,"navigatePages":8,"total":114315,"pages":11432,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:31.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:31.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:31.903] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomRecord--Test Mthod Success
[2021-09-02 16:33:31.903] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:31:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======
[2021-09-02 16:33:31.903] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 991毫秒======
[2021-09-02 16:33:31.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:31.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:31.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:31.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:31.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管巡查记录 /api/v1/rask/manager/room/record","caseLog":"======2021-09-02 16:33:30:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/room/record\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:32 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询超管房间记录成功!\",\"data\":{\"startRow\":1,\"lastPage\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"record.enter_time desc\",\"endRow\":10,\"list\":[{\"roomNo\":\"448442\",\"quitTime\":\"2021-08-31 17:33:06\",\"managerName\":\"巡56号\",\"userId\":5523055,\"userCode\":\"155032550\",\"roomName\":\"安安的闲聊厅\",\"adminId\":56,\"id\":114315,\"enterTime\":\"2021-08-31 17:31:51\"},{\"roomNo\":\"448442\",\"quitTime\":\"2021-08-31 17:31:51\",\"managerName\":\"巡56号\",\"userId\":5523055,\"userCode\":\"155032550\",\"roomName\":\"安安的闲聊厅\",\"adminId\":56,\"id\":114314,\"enterTime\":\"2021-08-31 17:30:22\"},{\"roomNo\":\"448442\",\"quitTime\":\"2021-08-31 17:15:20\",\"managerName\":\"巡56号\",\"userId\":5523055,\"userCode\":\"155032550\",\"roomName\":\"安安的闲聊厅\",\"adminId\":56,\"id\":114313,\"enterTime\":\"2021-08-31 17:11:30\"},{\"roomNo\":\"448442\",\"quitTime\":\"2021-08-31 17:11:27\",\"managerName\":\"巡56号\",\"userId\":5523055,\"userCode\":\"155032550\",\"roomName\":\"安安的闲聊厅\",\"adminId\":56,\"id\":114312,\"enterTime\":\"2021-08-31 17:09:23\"},{\"roomNo\":\"396674\",\"quitTime\":\"2021-09-02 16:33:32\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"点唱测试\",\"adminId\":15,\"id\":114311,\"enterTime\":\"2021-08-30 15:00:35\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 15:00:34\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114310,\"enterTime\":\"2021-08-30 14:49:47\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 14:49:47\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114309,\"enterTime\":\"2021-08-30 14:11:17\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 14:11:17\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114308,\"enterTime\":\"2021-08-30 11:39:40\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 11:39:40\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114307,\"enterTime\":\"2021-08-30 11:31:09\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 11:31:09\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114306,\"enterTime\":\"2021-08-30 11:31:04\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":114315,\"pages\":11432,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:31:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======\r\n======本次用例运行消耗时间 991毫秒======\r","caseName":"testRoomRecord","className":"com.pipi.invoker.CosPlayerTest","durationTime":"991毫秒","endTime":"2021-09-02 16:33:31","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:30","status":1}
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:32.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:32.147] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:32.147] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:32 GMT
[2021-09-02 16:33:32.147] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:32.147] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:32.147] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:32.147] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:32.147] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:32.147] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:32.663] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:32:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======
[2021-09-02 16:33:32.663] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-09-02 16:33:32.663] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:32.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:32.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:32.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-09-02 16:33:32.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:32.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:32.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:32.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:32.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:32.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=882100, type=2}
[2021-09-02 16:33:32.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:32.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=882100&type=2
[2021-09-02 16:33:32.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:32.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:33 GMT
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":[],"status":200}
[2021-09-02 16:33:32.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:32.960] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:32.960] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpList--Test Mthod Success
[2021-09-02 16:33:32.960] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:32:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======
[2021-09-02 16:33:32.960] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 297毫秒======
[2021-09-02 16:33:32.960] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:32.960] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:32.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取上麦、试音申请列表数据","caseLog":"======2021-09-02 16:33:32:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"882100\",\"type\":\"2\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=882100&type=2\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:33 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":[],\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:32:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======\r\n======本次用例运行消耗时间 297毫秒======\r","caseName":"testUpList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"297毫秒","endTime":"2021-09-02 16:33:32","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:32","status":1}
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:32 GMT
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:33.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:33.641] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:33:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======
[2021-09-02 16:33:33.641] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-09-02 16:33:33.641] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:33.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:33.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:33.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-09-02 16:33:33.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:33.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:33.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:33.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:33.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:33.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {types=2, roomNo=882100}
[2021-09-02 16:33:33.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:33.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - types=2&roomNo=882100
[2021-09-02 16:33:33.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:33.786] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:33.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:33.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:33.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:33.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:33.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:33.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:34 GMT
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"2":{"alreadyInList":false,"people":0}},"status":200}
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:33.940] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpSize--Test Mthod Success
[2021-09-02 16:33:33.940] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:33:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======
[2021-09-02 16:33:33.940] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 299毫秒======
[2021-09-02 16:33:33.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:33.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:33.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:33.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:33.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:33.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:33.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:33.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:33.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:33.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:33.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:33.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:33.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:33.942] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取聊天室内上麦试音队列、点单队列等","caseLog":"======2021-09-02 16:33:33:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/size\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"types\":\"2\",\"roomNo\":\"882100\"}\r\n###Http Request queryString after URLEncoder### :\r\ntypes=2&roomNo=882100\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:34 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"2\":{\"alreadyInList\":false,\"people\":0}},\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:33:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======\r\n======本次用例运行消耗时间 299毫秒======\r","caseName":"testUpSize","className":"com.pipi.invoker.CosPlayerTest","durationTime":"299毫秒","endTime":"2021-09-02 16:33:33","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:33","status":1}
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:34 GMT
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:34.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:34.263] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:34.774] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:34:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======
[2021-09-02 16:33:34.774] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:34.774] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:34.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:34.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:34.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:34.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:34.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:34.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:34.934] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:34.935] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:34.935] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-09-02 16:33:34.935] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:34.935] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-09-02 16:33:34.935] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:34.935] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:35.080] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:35.080] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:35.081] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:35.081] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:35.081] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:35.081] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:35.081] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:35.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:35.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:35 GMT
[2021-09-02 16:33:35.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:35.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:35.082] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:35.083] [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":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"至尊Ⅰ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.80,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"nobleRankCode":81,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":404803,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:35.083] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:35.083] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:35.083] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUserList--Test Mthod Success
[2021-09-02 16:33:35.084] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:35:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======
[2021-09-02 16:33:35.084] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 310毫秒======
[2021-09-02 16:33:35.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:35.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:35.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"用户信息","caseLog":"======2021-09-02 16:33:34:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33: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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"至尊Ⅰ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.80,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"nobleRankCode\":81,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":404803,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"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-09-02 16:33:35:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======\r\n======本次用例运行消耗时间 310毫秒======\r","caseName":"testUserList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"310毫秒","endTime":"2021-09-02 16:33:35","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:34","status":1}
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:35 GMT
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:35.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:35.907] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:35:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-09-02 16:33:35.907] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:35.907] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:36.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:37 GMT
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:37.134] [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":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"至尊Ⅰ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.80,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"nobleRankCode":81,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":404803,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:37.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:37.135] [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-09-02 16:33:37.135] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:37.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:37.287] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:37.287] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-09-02 16:33:37.287] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:37.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:37.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:37.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:37.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:37.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=52000, remark=1, type=1, userId=5523051}
[2021-09-02 16:33:37.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:37.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=52000&remark=1&type=1&userId=5523051
[2021-09-02 16:33:37.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:37.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:37 GMT
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:37.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:37.461] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-09-02 16:33:37.461] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:37.461] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:37.461] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testVirtualMoneyModify--Test Mthod Success
[2021-09-02 16:33:37.461] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:37:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-09-02 16:33:37.461] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒554毫秒======
[2021-09-02 16:33:37.461] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:37.461] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:37.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-09-02 16:33:35:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:37 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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"至尊Ⅰ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.80,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"nobleRankCode\":81,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":404803,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"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\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":52000,\"remark\":\"1\",\"type\":1,\"userId\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=52000&remark=1&type=1&userId=5523051\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\":\"Thu, 02 Sep 2021 08:33:37 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:37:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 01秒554毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒554毫秒","endTime":"2021-09-02 16:33:37","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:35","status":1}
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:38 GMT
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:37.682] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:38.187] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:38:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======
[2021-09-02 16:33:38.187] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-09-02 16:33:38.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {activityId=188, times=1, roomNo=882100, timestamp=1621828487580}
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - activityId=188×=1&roomNo=882100×tamp=1621828487580
[2021-09-02 16:33:38.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:38.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:39 GMT
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:39.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"开宝箱成功!","data":"remj+ggyhyoECNmpGgdOe16d7LSmu/ghEap93bRt8f6fVwYlq6qoQQ6EJIV8PILeg/1EDYIDk9dhg6F+by/jn01Gbp0GdeUJoLlKeAIIKnvXxwPgDpep5vtI0mVaWY43hUJ/aSBQ+BfhsQhhifbti9NIyBFkv71bdvWOdV99i+v95llITH1LgRicjTs879GxugW3gGnaQXhwGYlM2NW1ez/RSOCHCWzaBAivnpH99doRWtC5rgh5xppcVq91F94qVgUM7IIBKntQ0naN37b97+rfMXDb8rjJBDU+yI5YW3KpAMq+XpAJAsnoi4JfQHT6TnS5iDHcIJQvORw3s35Tb+SqF/9Z0s2lwV+COLTI9al4op/a2FHJrB9Flx6mGyibMuLa9/XCxFLl7sMsCTLEhES3KqxEYEnUpcqqIPLeAtmDfkHiDChC2jJ6DwoifJcH4gly8Xxapn0AJvlzK+m2gtxe/f+zf5TMrquQcdcPkS+PjocXpOdsbg8YKGd+zQzzdRIfp/Pm//yWUttBYRlNPUeQk/9YNCWHphj/0F5NjeONXaRPX1qexc8NL30HVD+aZ2TNim973m7NfCmRIyKXr+rWiogrAcpklCXC/U9K/mV9pOH24EJn6uCWoNQacpoIj5gU3b3vWrj5vEFz+fOtyUkBQNqZh2SIN1YYbDRAqA1mx2dISkC/cCMoM/9WZ5TvYHGh+//+qsEgvPPk877zxw==","status":200}
[2021-09-02 16:33:39.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:39.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:39.024] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testLotteryActivity--Test Mthod Success
[2021-09-02 16:33:39.024] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:39:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======
[2021-09-02 16:33:39.024] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 837毫秒======
[2021-09-02 16:33:39.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:39.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:39.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"开宝箱","caseLog":"======2021-09-02 16:33:38:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9e638b8bf1804cc9b665ecab3edf3aba#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"activityId\":\"188\",\"times\":\"1\",\"roomNo\":\"882100\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactivityId=188×=1&roomNo=882100×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:39 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"开宝箱成功!\",\"data\":\"remj+ggyhyoECNmpGgdOe16d7LSmu/ghEap93bRt8f6fVwYlq6qoQQ6EJIV8PILeg/1EDYIDk9dhg6F+by/jn01Gbp0GdeUJoLlKeAIIKnvXxwPgDpep5vtI0mVaWY43hUJ/aSBQ+BfhsQhhifbti9NIyBFkv71bdvWOdV99i+v95llITH1LgRicjTs879GxugW3gGnaQXhwGYlM2NW1ez/RSOCHCWzaBAivnpH99doRWtC5rgh5xppcVq91F94qVgUM7IIBKntQ0naN37b97+rfMXDb8rjJBDU+yI5YW3KpAMq+XpAJAsnoi4JfQHT6TnS5iDHcIJQvORw3s35Tb+SqF/9Z0s2lwV+COLTI9al4op/a2FHJrB9Flx6mGyibMuLa9/XCxFLl7sMsCTLEhES3KqxEYEnUpcqqIPLeAtmDfkHiDChC2jJ6DwoifJcH4gly8Xxapn0AJvlzK+m2gtxe/f+zf5TMrquQcdcPkS+PjocXpOdsbg8YKGd+zQzzdRIfp/Pm//yWUttBYRlNPUeQk/9YNCWHphj/0F5NjeONXaRPX1qexc8NL30HVD+aZ2TNim973m7NfCmRIyKXr+rWiogrAcpklCXC/U9K/mV9pOH24EJn6uCWoNQacpoIj5gU3b3vWrj5vEFz+fOtyUkBQNqZh2SIN1YYbDRAqA1mx2dISkC/cCMoM/9WZ5TvYHGh+//+qsEgvPPk877zxw==\",\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:39:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======\r\n======本次用例运行消耗时间 837毫秒======\r","caseName":"testLotteryActivity","className":"com.pipi.invoker.CosPlayerTest","durationTime":"837毫秒","endTime":"2021-09-02 16:33:39","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:38","status":1}
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:40 GMT
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:40.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:40.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:40.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:40.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:40.778] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-09-02 16:33:40:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======
[2021-09-02 16:33:40.778] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:40.778] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c06082b5c7924835ac33b74b79a07091
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:40.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-09-02 16:33:40.988] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:40.988] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:41.130] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:41.130] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:41.130] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:41.130] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:41.130] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:41 GMT
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:41.131] [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":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"至尊Ⅰ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10006.80,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"nobleRankCode":81,"memberExp":18,"activeTime":"2021-09-02 06:40:47","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-09-02 16:32:44","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456802,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-09-02 16:33:41.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-e334a2edeba3466cb4b6ff161e19d896#5523052
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {userId=5523051}
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - userId=5523051
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:41.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:42 GMT
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:41.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","status":200}
[2021-09-02 16:33:41.712] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:41.712] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:41.712] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRemove--Test Mthod Success
[2021-09-02 16:33:41.712] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-09-02 16:33:41:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======
[2021-09-02 16:33:41.712] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 934毫秒======
[2021-09-02 16:33:41.712] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:41.712] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:41.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"将成员从公会移除","caseLog":"======2021-09-02 16:33:40:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======\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\":\"c06082b5c7924835ac33b74b79a07091\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:41 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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"至尊Ⅰ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10006.80,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"nobleRankCode\":81,\"memberExp\":18,\"activeTime\":\"2021-09-02 06:40:47\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-09-02 16:32:44\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456802,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"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-guild-api.apeiwan.com/api/v2/guild-member/remove\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-e334a2edeba3466cb4b6ff161e19d896#5523052\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"userId\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\nuserId=5523051\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/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Thu, 02 Sep 2021 08:33:42 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"status\":200}\r\n===================================\r\n======2021-09-02 16:33:41:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======\r\n======本次用例运行消耗时间 934毫秒======\r","caseName":"testRemove","className":"com.pipi.invoker.CosPlayerTest","durationTime":"934毫秒","endTime":"2021-09-02 16:33:41","id":0,"serviceId":1,"startTime":"2021-09-02 16:33:40","status":1}
[2021-09-02 16:33:42.002] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-09-02 16:33:42.002] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Thu, 02 Sep 2021 08:33:42 GMT
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-09-02 16:33:42.003] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testOrderList
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testQSend
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMSend
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserBalance
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomRecord
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUserList
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRemove
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testAuditGuild
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testManagerList
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testOrderProduct
[2021-09-02 16:33:42.534] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testPipibiSend
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRSend
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpSize
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGethome
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomList
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple2
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpList
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testVirtualMoneyModify
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testBSend
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGuildSearch
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMoneyDetailsSave
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testLotteryActivity
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testGetMine
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:25
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:1
[2021-09-02 16:33:42.535] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-09-02 16:33:42.539] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-09-02 16:33:42.544] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-09-02 16:33:42.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-09-02 16:33:42.549] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-09-02 16:33:42.549] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-09-02 16:33:42.549] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-09-02 16:33:42.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"01分03秒174毫秒","endTime":"2021-09-02 16:33:42","env":"pre-test","failed":1,"id":0,"passed":25,"serviceId":1,"skipped":0,"startTime":"2021-09-02 16:32:39","status":2,"teamId":0,"total":26}
[2021-09-02 16:33:45.570] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
at java.net.SocketInputStream.read(SocketInputStream.java:171)
at java.net.SocketInputStream.read(SocketInputStream.java:141)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)
at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1587)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492)
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePutJson(HttpToolKit.java:340)
at com.fangdd.qa.testng.TestngSuiteListener.reportTestSuiteStatistic(TestngSuiteListener.java:90)
at com.fangdd.qa.testng.TestngSuiteListener.onFinish(TestngSuiteListener.java:77)
at org.testng.SuiteRunner.invokeListeners(SuiteRunner.java:232)
at org.testng.SuiteRunner.run(SuiteRunner.java:292)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:281)
at org.apache.maven.surefire.testng.TestNGXmlTestSuite.execute(TestNGXmlTestSuite.java:75)
at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:121)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:290)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:242)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:121)
[2021-09-02 16:33:45.570] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接