debug.log.2021-08-02
448 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
[2021-08-02 16:08:50.841] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-02 16:08:50.914] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-02 16:08:50:测试集开始======
[2021-08-02 16:08:51.207] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.PropUtil:51] - 配置项 dbConnectionURL 不存在,请检查配置!
[2021-08-02 16:08:51.220] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/login
[2021-08-02 16:08:51.221] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:51.405] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/login
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:51.406] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:51 GMT
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:51.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:51.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:51.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"c58412c8c50d4d63b01835931f1ab635","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-08-02 16:08:51.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:51.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:51.848] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/sms/verify
[2021-08-02 16:08:51.848] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:51.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:51.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:51.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/sms/verify
[2021-08-02 16:08:51.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:51.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:51.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:51.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:51.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-02 16:08:51.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:51.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-02 16:08:51.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:51.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:52.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:52.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:52.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:52.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:52.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:52.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:52.019] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:52.019] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-02 16:08:52.019] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:52 GMT
[2021-08-02 16:08:52.020] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:52.020] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:52.020] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:52.020] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-02 16:08:52.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:52.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:52.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/login
[2021-08-02 16:08:52.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:52.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:52.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:52.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/login
[2021-08-02 16:08:52.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:52.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:52.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:52.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:52.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-02 16:08:52.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:52.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-02 16:08:52.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:52.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:52.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:52.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:52.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:52.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:52 GMT
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":1,"userCode":"147822230","nickname":"test","id":3222874,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","updateTime":"2021-05-26 14:51:34","imId":"3222874_20210526","token":"APP-444f10760d814a75b8428ef5f1f316b7#3222874","createTime":"2021-05-26 14:51:34","newUser":false,"status":1},"status":200}
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:52.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:52.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/sms/verify
[2021-08-02 16:08:52.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:52.897] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/sms/verify
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:52.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:52.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:52.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:52.937] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:52.938] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:52.938] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:52.938] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:52.938] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:52.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-02 16:08:52.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:53 GMT
[2021-08-02 16:08:52.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:52.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:52.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:52.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-02 16:08:52.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:52.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:52.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/login
[2021-08-02 16:08:52.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:53.050] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/login
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:53.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:53.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:53.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:53.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:53.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:53.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:53.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:53.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:53.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-02 16:08:53.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:53 GMT
[2021-08-02 16:08:53.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:53.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:53.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:53.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"195822230","nickname":"test","id":3222859,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"d7f66b8fd74d4ed5916ad50fa4422e44","updateTime":"2021-05-21 17:36:09","imId":"3222859_20210521","token":"APP-97dd86b162a94924859bea5ea15151b9#3222859","createTime":"2021-05-21 17:36:09","newUser":false,"status":1},"status":200}
[2021-08-02 16:08:53.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:53.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:53.799] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:08:53:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-08-02 16:08:53.808] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-08-02 16:08:53.808] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-08-02 16:08:53.953] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:53.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-08-02 16:08:53.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:53.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:54.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:54.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:54.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:54 GMT
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"sort desc","endRow":7,"list":[{"remark":"","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/63e85b7849f8482f9cee355bb0da6949.webp\",\"decorationId\":313,\"decorationName\":\"活跃之星头像框\"}","lotteryRules":"[{\"amount\":52000,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-月下美人\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/10/22/2e39e83ee14f4f14a5cec3978e0f3b32.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":693}]","id":160,"operatorId":34,"openRewardDiamonds":0,"sort":6,"remainLotteryDiamonds":52000,"openPayDiamonds":0,"createTime":"2021-04-26 09:38:38","name":"开心糖果","remainLotteryCount":1,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":3527,"staticUrl":"null","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/23/48b3ffe4ca2547df97aa68557240e33e.svga\",\"decorationId\":310,\"decorationName\":\"四季不离入场特效\"}","lotteryRules":"[{\"amount\":21,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-蓝色焰火*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":800},{\"amount\":30,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-小礼花*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":801},{\"amount\":52,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-仙女棒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/940d8aa7d0fc41bd801cd445d6f1feef.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":802},{\"amount\":66,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-小礼炮*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/bd36da424cce484084095293ca3c1635.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":803},{\"amount\":99,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-璀璨烟花*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/8f0839cd4e4940abbabad2ce99742661.png\",\"rewardLevel\":5,\"isNew\":0,\"lotteryId\":804}]","id":157,"operatorId":34,"rewardLotteryCount":3527,"openRewardDiamonds":155808,"objectGifUrl":"null","updateTime":"2021-04-28 15:34:16","sort":4,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":44559,"openPayDiamonds":0,"createTime":"2021-04-23 14:47:19","name":"甜心宝箱","remainLotteryCount":854,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"3\",\"times\":\"5\"},{\"price\":\"5\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":1232,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da2ccaec8d74b5eace5ffe87ef09209.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/6651d3ac708b4a0f9d68933192918de2.png\",\"decorationId\":309,\"decorationName\":\"三生三世个人名牌\"}","lotteryRules":"[{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-仙女镜*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/d9fe432cf5564db289c00fdde26163b1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":824},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-幸运铃*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":825},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-祈愿瓶*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/722bafc2c4b240b8ad13e02fc905e884.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":816},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-桃花糕*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/510344008ec94194b65d7415e3e8654e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":817},{\"amount\":155,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-雨梦精灵*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/baafed64c1914eeead7ccd474a93cb18.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":815}]","id":156,"operatorId":34,"rewardLotteryCount":1232,"openRewardDiamonds":130928,"objectGifUrl":"null","updateTime":"2021-04-23 15:17:31","sort":3,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":33778,"openPayDiamonds":0,"createTime":"2021-04-23 14:42:17","name":"梦幻糖果","remainLotteryCount":262,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":1059,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e39b553250614555af25ae67fdc2eecf.png","delFlag":false,"operatorName":"林灿","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/8dac73dfeaaa49919ec2af54558c82fe.png","lotteryActivityId":155,"createTime":"2021-05-10 17:06:42","id":12,"content":"","activityH5Url":"https://t2-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=155&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/23/ae93c565542448868a095806a482874a.png\",\"decorationId\":308,\"decorationName\":\"二情相悦聊天室气泡\"}","lotteryRules":"[{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-心相印*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":830},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-甜甜圈*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/e7a5332264534de2b07bfa48d76828da.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":829},{\"amount\":52,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-点赞*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":828},{\"amount\":66,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-花灯*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/73f8134305c4488e8472baf8c3ca6c69.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":827},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-出水芙蓉*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2502cdf45ec541cdbb1be0895a2a359c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":826}]","id":155,"operatorId":123,"rewardLotteryCount":1059,"openRewardDiamonds":45183,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/19d02529b8184db099f40aceba53f4cd.svga","updateTime":"2021-05-10 17:06:42","sort":2,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/df9d450d2731464b9f98507e6a1c10cd.webp","remainLotteryDiamonds":15516,"openPayDiamonds":9610,"createTime":"2021-04-23 14:32:56","name":"白银宝箱","remainLotteryCount":199,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"","openedTimes":216,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/62639213e55b40ef84cae878d7c59981.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/23/73d896d2c8714f49891bd936ec58a6be.webp\",\"decorationId\":307,\"decorationName\":\"一心一意座位框\"}","lotteryRules":"[{\"amount\":10,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-来颗柠檬*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f7569ceb9a2e4c5c96e51c209ae85688.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":831},{\"amount\":8,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-四叶草*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":832},{\"amount\":6,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-666*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":833},{\"amount\":5,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-鼓掌*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":834},{\"amount\":1,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-萤火虫*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":835},{\"amount\":1,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-小糖果*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9eab2810af2b47d6b46cf4059ee07c04.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":836}]","id":154,"operatorId":34,"rewardLotteryCount":216,"openRewardDiamonds":915,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e2f06e18a85d4485a6409c187aab5c0d.svga","sort":1,"gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/9591740915744f98a59796ffe85d0e1d.webp","remainLotteryDiamonds":2163,"openPayDiamonds":206,"createTime":"2021-04-23 14:22:44","name":"普通宝箱","remainLotteryCount":378,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/63e85b7849f8482f9cee355bb0da6949.webp\",\"decorationId\":313,\"decorationName\":\"活跃之星头像框\"}","lotteryRules":"[{\"amount\":0,\"isReward\":0,\"isNotice\":0,\"name\":\"碎片-普通碎片*\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1205}]","id":158,"operatorId":34,"openRewardDiamonds":0,"sort":1,"remainLotteryDiamonds":0,"openPayDiamonds":0,"createTime":"2021-04-25 18:52:00","name":"测试","remainLotteryCount":0,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"}]","isActivate":false,"status":0},{"remark":"","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":1,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/63e85b7849f8482f9cee355bb0da6949.webp\",\"decorationId\":313,\"decorationName\":\"活跃之星头像框\"}","lotteryRules":"[{\"amount\":0,\"isReward\":0,\"probability\":1,\"isNotice\":0,\"name\":\"碎片-普通碎片*\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1204}]","id":159,"operatorId":34,"openRewardDiamonds":0,"sort":1,"remainLotteryDiamonds":67662,"openPayDiamonds":0,"createTime":"2021-04-25 18:58:57","name":"1","remainLotteryCount":1006,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"}]","isActivate":false,"status":0}],"pageNum":1,"navigatePages":8,"total":7,"pages":1,"size":7,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:54.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:54.434] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-08-02 16:08:54.434] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:08:54:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-08-02 16:08:54.434] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 635毫秒======
[2021-08-02 16:08:54.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:08:54.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:54.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-08-02 16:08:53:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/lottery/activity/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"activityType\":\"1\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&activityType=1&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:08:54 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":7,\"list\":[{\"remark\":\"\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/63e85b7849f8482f9cee355bb0da6949.webp\\\",\\\"decorationId\\\":313,\\\"decorationName\\\":\\\"活跃之星头像框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":52000,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-月下美人\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/10/22/2e39e83ee14f4f14a5cec3978e0f3b32.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":693}]\",\"id\":160,\"operatorId\":34,\"openRewardDiamonds\":0,\"sort\":6,\"remainLotteryDiamonds\":52000,\"openPayDiamonds\":0,\"createTime\":\"2021-04-26 09:38:38\",\"name\":\"开心糖果\",\"remainLotteryCount\":1,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":3527,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/23/48b3ffe4ca2547df97aa68557240e33e.svga\\\",\\\"decorationId\\\":310,\\\"decorationName\\\":\\\"四季不离入场特效\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-蓝色焰火*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":800},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小礼花*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":801},{\\\"amount\\\":52,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-仙女棒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/940d8aa7d0fc41bd801cd445d6f1feef.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":802},{\\\"amount\\\":66,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小礼炮*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/bd36da424cce484084095293ca3c1635.png\\\",\\\"rewardLevel\\\":4,\\\"isNew\\\":0,\\\"lotteryId\\\":803},{\\\"amount\\\":99,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-璀璨烟花*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/8f0839cd4e4940abbabad2ce99742661.png\\\",\\\"rewardLevel\\\":5,\\\"isNew\\\":0,\\\"lotteryId\\\":804}]\",\"id\":157,\"operatorId\":34,\"rewardLotteryCount\":3527,\"openRewardDiamonds\":155808,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-04-28 15:34:16\",\"sort\":4,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":44559,\"openPayDiamonds\":0,\"createTime\":\"2021-04-23 14:47:19\",\"name\":\"甜心宝箱\",\"remainLotteryCount\":854,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":1232,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da2ccaec8d74b5eace5ffe87ef09209.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/6651d3ac708b4a0f9d68933192918de2.png\\\",\\\"decorationId\\\":309,\\\"decorationName\\\":\\\"三生三世个人名牌\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-仙女镜*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/d9fe432cf5564db289c00fdde26163b1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":824},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-幸运铃*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":825},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-祈愿瓶*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/722bafc2c4b240b8ad13e02fc905e884.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":816},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-桃花糕*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/510344008ec94194b65d7415e3e8654e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":817},{\\\"amount\\\":155,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-雨梦精灵*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/baafed64c1914eeead7ccd474a93cb18.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":815}]\",\"id\":156,\"operatorId\":34,\"rewardLotteryCount\":1232,\"openRewardDiamonds\":130928,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-04-23 15:17:31\",\"sort\":3,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":33778,\"openPayDiamonds\":0,\"createTime\":\"2021-04-23 14:42:17\",\"name\":\"梦幻糖果\",\"remainLotteryCount\":262,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":1059,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e39b553250614555af25ae67fdc2eecf.png\",\"delFlag\":false,\"operatorName\":\"林灿\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/8dac73dfeaaa49919ec2af54558c82fe.png\",\"lotteryActivityId\":155,\"createTime\":\"2021-05-10 17:06:42\",\"id\":12,\"content\":\"\",\"activityH5Url\":\"https://t2-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=155&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/23/ae93c565542448868a095806a482874a.png\\\",\\\"decorationId\\\":308,\\\"decorationName\\\":\\\"二情相悦聊天室气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-心相印*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":830},{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/e7a5332264534de2b07bfa48d76828da.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":829},{\\\"amount\\\":52,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-点赞*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":828},{\\\"amount\\\":66,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-花灯*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/73f8134305c4488e8472baf8c3ca6c69.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":827},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-出水芙蓉*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2502cdf45ec541cdbb1be0895a2a359c.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":826}]\",\"id\":155,\"operatorId\":123,\"rewardLotteryCount\":1059,\"openRewardDiamonds\":45183,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/19d02529b8184db099f40aceba53f4cd.svga\",\"updateTime\":\"2021-05-10 17:06:42\",\"sort\":2,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/df9d450d2731464b9f98507e6a1c10cd.webp\",\"remainLotteryDiamonds\":15516,\"openPayDiamonds\":9610,\"createTime\":\"2021-04-23 14:32:56\",\"name\":\"白银宝箱\",\"remainLotteryCount\":199,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"\",\"openedTimes\":216,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/62639213e55b40ef84cae878d7c59981.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/23/73d896d2c8714f49891bd936ec58a6be.webp\\\",\\\"decorationId\\\":307,\\\"decorationName\\\":\\\"一心一意座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":10,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-来颗柠檬*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f7569ceb9a2e4c5c96e51c209ae85688.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":831},{\\\"amount\\\":8,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-四叶草*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":832},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-666*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":833},{\\\"amount\\\":5,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-鼓掌*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":834},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-萤火虫*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":835},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小糖果*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9eab2810af2b47d6b46cf4059ee07c04.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":836}]\",\"id\":154,\"operatorId\":34,\"rewardLotteryCount\":216,\"openRewardDiamonds\":915,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e2f06e18a85d4485a6409c187aab5c0d.svga\",\"sort\":1,\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/9591740915744f98a59796ffe85d0e1d.webp\",\"remainLotteryDiamonds\":2163,\"openPayDiamonds\":206,\"createTime\":\"2021-04-23 14:22:44\",\"name\":\"普通宝箱\",\"remainLotteryCount\":378,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/63e85b7849f8482f9cee355bb0da6949.webp\\\",\\\"decorationId\\\":313,\\\"decorationName\\\":\\\"活跃之星头像框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":0,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"碎片-普通碎片*\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1205}]\",\"id\":158,\"operatorId\":34,\"openRewardDiamonds\":0,\"sort\":1,\"remainLotteryDiamonds\":0,\"openPayDiamonds\":0,\"createTime\":\"2021-04-25 18:52:00\",\"name\":\"测试\",\"remainLotteryCount\":0,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":1,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/63e85b7849f8482f9cee355bb0da6949.webp\\\",\\\"decorationId\\\":313,\\\"decorationName\\\":\\\"活跃之星头像框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":0,\\\"isReward\\\":0,\\\"probability\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"碎片-普通碎片*\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1204}]\",\"id\":159,\"operatorId\":34,\"openRewardDiamonds\":0,\"sort\":1,\"remainLotteryDiamonds\":67662,\"openPayDiamonds\":0,\"createTime\":\"2021-04-25 18:58:57\",\"name\":\"1\",\"remainLotteryCount\":1006,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":false,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":7,\"pages\":1,\"size\":7,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:08:54:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 635毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"635毫秒","endTime":"2021-08-02 16:08:54","id":0,"serviceId":1,"startTime":"2021-08-02 16:08:53","status":1}
[2021-08-02 16:08:57.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:57.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:57.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:08:57.925] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:57.925] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:08:57.925] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:08:57.925] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:08:57.925] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:08:57.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:08:57.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:57.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:08:57.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:58 GMT
[2021-08-02 16:08:57.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:08:57.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:57.927] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:57.927] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:08:57.927] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:57.927] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:58.447] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:08:58:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-08-02 16:08:58.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-02 16:08:58.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:58.607] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18376254}
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18376254
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:58.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:58.749] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:58.749] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:58.749] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:58 GMT
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-30 17:55:32","maxNum":50,"guildCode":"18376254","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":3222859,"curNum":2,"createTime":"2021-07-29 17:30:18","guildType":1,"id":706,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:58.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:58.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-08-02 16:08:58.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:58.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:58.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:58.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-08-02 16:08:58.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:58.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:58.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:08:58.882] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:58.882] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:58.882] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyRemark=我是test,想加入公会, guildId=706}
[2021-08-02 16:08:58.882] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:58.882] [main] [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=706
[2021-08-02 16:08:58.882] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:58.882] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:59 GMT
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:59.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:59.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:59.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"已在公会中","data":{"errcode":1009},"status":500}
[2021-08-02 16:08:59.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:59.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:59.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-08-02 16:08:59.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:59.133] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:59.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:59.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-08-02 16:08:59.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:59.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:59.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:08:59.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:59.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:59.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=999999, guildCode=18376254, pageNum=1}
[2021-08-02 16:08:59.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:59.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=999999&guildCode=18376254&pageNum=1
[2021-08-02 16:08:59.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:59.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:59.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:59.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:59.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:59.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:59.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:08:59.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:59 GMT
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":999999,"endRow":1,"list":[{"roomNums":1,"guildStatus":2,"mobile":"13823774131","description":"欢迎来到我的公会","updateTime":"2021-07-30 17:55:32","leaderNickName":"test","maxNum":50,"guildCode":"18376254","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":3222859,"guildMaxNumDesc":"50人以下","curNum":2,"createTime":"2021-07-29 17:30:18","guildType":1,"id":706,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:08:59.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:59.355] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:59.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:59 GMT
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222859,"chargeBalance":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-02 10:30:30","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"195822230","loginTime":"2021-06-03 15:37:00","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":8190,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"d7f66b8fd74d4ed5916ad50fa4422e44","updateTime":"2021-05-21 17:36:09","quickServerStatus":0,"imId":"3222859_20210521","scoreAvg":4.0,"charm":0,"createTime":"2021-05-21 17:36:09","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:59.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:59.457] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-02 16:08:59.457] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18376254}
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18376254
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:59.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:08:59.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:08:59.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:08:59.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:08:59.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:08:59.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:08:59.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:08:59.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:08:59 GMT
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-30 17:55:32","maxNum":50,"guildCode":"18376254","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":3222859,"curNum":2,"createTime":"2021-07-29 17:30:18","guildType":1,"id":706,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-08-02 16:08:59.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:08:59.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:08:59.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:08:59.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-08-02 16:08:59.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:08:59.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:08:59.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-97dd86b162a94924859bea5ea15151b9#3222859
[2021-08-02 16:08:59.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:08:59.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:08:59.830] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyType=1, pageSize=20, pageNum=1, guildId=706}
[2021-08-02 16:08:59.830] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:08:59.830] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyType=1&pageSize=20&pageNum=1&guildId=706
[2021-08-02 16:08:59.830] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:08:59.830] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:00.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:00.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:00.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:00.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:00.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:00.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:00.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:00.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:00.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:00 GMT
[2021-08-02 16:09:00.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:00.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:00.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:00.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":0,"lastPage":0,"navigatepageNums":[],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":0,"list":[],"pageNum":1,"navigatePages":8,"total":0,"pages":0,"size":0,"firstPage":0,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:00.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:00.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:00.807] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testAuditGuild--Test Mthod Failure
[2021-08-02 16:09:00.807] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-02 16:09:00:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-08-02 16:09:00.807] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 02秒360毫秒======
[2021-08-02 16:09:00.808] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:00.808] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:00.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-08-02 16:08:58:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18376254\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18376254\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:08:58 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-30 17:55:32\",\"maxNum\":50,\"guildCode\":\"18376254\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":3222859,\"curNum\":2,\"createTime\":\"2021-07-29 17:30:18\",\"guildType\":1,\"id\":706,\"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://t6-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-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyRemark\":\"我是test,想加入公会\",\"guildId\":706}\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=706\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:08:59 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"已在公会中\",\"data\":{\"errcode\":1009},\"status\":500}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/guild-center/guild/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":999999,\"guildCode\":\"18376254\",\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=999999&guildCode=18376254&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:08:59 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":999999,\"endRow\":1,\"list\":[{\"roomNums\":1,\"guildStatus\":2,\"mobile\":\"13823774131\",\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-30 17:55:32\",\"leaderNickName\":\"test\",\"maxNum\":50,\"guildCode\":\"18376254\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":3222859,\"guildMaxNumDesc\":\"50人以下\",\"curNum\":2,\"createTime\":\"2021-07-29 17:30:18\",\"guildType\":1,\"id\":706,\"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://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:08:59 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222859,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-02 10:30:30\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"195822230\",\"loginTime\":\"2021-06-03 15:37:00\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":8190,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"d7f66b8fd74d4ed5916ad50fa4422e44\",\"updateTime\":\"2021-05-21 17:36:09\",\"quickServerStatus\":0,\"imId\":\"3222859_20210521\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-21 17:36:09\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18376254\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18376254\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:08:59 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-30 17:55:32\",\"maxNum\":50,\"guildCode\":\"18376254\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":3222859,\"curNum\":2,\"createTime\":\"2021-07-29 17:30:18\",\"guildType\":1,\"id\":706,\"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://t6-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-97dd86b162a94924859bea5ea15151b9#3222859\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyType\":\"1\",\"pageSize\":\"20\",\"pageNum\":\"1\",\"guildId\":706}\r\n###Http Request queryString after URLEncoder### :\r\napplyType=1&pageSize=20&pageNum=1&guildId=706\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:00 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":0,\"lastPage\":0,\"navigatepageNums\":[],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":0,\"list\":[],\"pageNum\":1,\"navigatePages\":8,\"total\":0,\"pages\":0,\"size\":0,\"firstPage\":0,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:00:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 02秒360毫秒======\r","caseMessage":"java.lang.IndexOutOfBoundsException: Index: 0, Size: 0\r\n\tat java.util.ArrayList.rangeCheck(ArrayList.java:657)\r\n\tat java.util.ArrayList.get(ArrayList.java:433)\r\n\tat com.alibaba.fastjson.JSONArray.get(JSONArray.java:189)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.applyList(CosPlyaPlayerServiceImpl.java:694)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.auditGuild(CosPlyaPlayerServiceImpl.java:716)\r\n\tat com.pipi.invoker.CosPlayerTest.testAuditGuild(CosPlayerTest.java:144)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\n","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"02秒360毫秒","endTime":"2021-08-02 16:09:00","id":0,"serviceId":1,"startTime":"2021-08-02 16:08:58","status":2}
[2021-08-02 16:09:01.148] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:01.148] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:01 GMT
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:01.149] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:06.167] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:06:用例【com.pipi.invoker.CosPlayerTest.testGetMine】开始======
[2021-08-02 16:09:06.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v3/user/get-mine
[2021-08-02 16:09:06.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:06.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:06.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:06.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v3/user/get-mine
[2021-08-02 16:09:06.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:06.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:06.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:09:06.263] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:06.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:06.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:06.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:06.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:06.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:06.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:06.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:06.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:06.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:06.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:06.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:06.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:06.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:06.848] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:06.848] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:06 GMT
[2021-08-02 16:09:06.848] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:06.848] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:06.848] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:06.849] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"signFlag":false,"userInfo":{"platformAuthUrl":"","nobleRankName":"暂无等级","type":1,"id":3222874,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","nobleRankCode":0,"totalFootprints":0,"gender":1,"city":"","managerPermit":false,"userCode":"147822230","nickname":"test","memberLevel":0,"mobile":"13823774134","attentions":0,"imPsw":"dc91e90d07794dedb1e980491f318895","userId":3222874,"imId":"3222874_20210526","fans":0,"popularityInfo":{"levelCode":0,"levelName":"暂无等级","userId":3222874},"isInGuild":true,"isRicher":false,"totalAccessedCnt":0},"signDays":69,"userSetting":{"orderMsg":1,"productNotifySettings":[],"noticeMsg":1,"userId":3222874,"newMessageReminder":1,"proclamationMsg":1,"assignOrderMsgDnd":false,"robOrderMsgDnd":true,"messageDetail":1,"assignMsg":1},"userTypeList":[],"showGuildCenter":true,"signImg":"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png","userAlertInfo":{"orderNoPayAmount":0,"orderWaitingAmount":0,"guildApplyCount":0,"grabOrderAmount":0,"addCouponCount":0}},"status":200}
[2021-08-02 16:09:06.849] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:06.849] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:06.850] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetMine--Test Mthod Success
[2021-08-02 16:09:06.850] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:06:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======
[2021-08-02 16:09:06.850] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 683毫秒======
[2021-08-02 16:09:06.850] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:06.850] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:06.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"/api/v3/user/get-mine 获取用户信(人气等级)","caseLog":"======2021-08-02 16:09:06:用例【com.pipi.invoker.CosPlayerTest.testGetMine】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-app.apeiwan.com/api/v3/user/get-mine\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:06 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"signFlag\":false,\"userInfo\":{\"platformAuthUrl\":\"\",\"nobleRankName\":\"暂无等级\",\"type\":1,\"id\":3222874,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"nobleRankCode\":0,\"totalFootprints\":0,\"gender\":1,\"city\":\"\",\"managerPermit\":false,\"userCode\":\"147822230\",\"nickname\":\"test\",\"memberLevel\":0,\"mobile\":\"13823774134\",\"attentions\":0,\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"userId\":3222874,\"imId\":\"3222874_20210526\",\"fans\":0,\"popularityInfo\":{\"levelCode\":0,\"levelName\":\"暂无等级\",\"userId\":3222874},\"isInGuild\":true,\"isRicher\":false,\"totalAccessedCnt\":0},\"signDays\":69,\"userSetting\":{\"orderMsg\":1,\"productNotifySettings\":[],\"noticeMsg\":1,\"userId\":3222874,\"newMessageReminder\":1,\"proclamationMsg\":1,\"assignOrderMsgDnd\":false,\"robOrderMsgDnd\":true,\"messageDetail\":1,\"assignMsg\":1},\"userTypeList\":[],\"showGuildCenter\":true,\"signImg\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png\",\"userAlertInfo\":{\"orderNoPayAmount\":0,\"orderWaitingAmount\":0,\"guildApplyCount\":0,\"grabOrderAmount\":0,\"addCouponCount\":0}},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:06:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======\r\n======本次用例运行消耗时间 683毫秒======\r","caseName":"testGetMine","className":"com.pipi.invoker.CosPlayerTest","durationTime":"683毫秒","endTime":"2021-08-02 16:09:06","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:06","status":1}
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:07 GMT
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:07.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:07.673] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:07:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】开始======
[2021-08-02 16:09:07.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v1/user/balance/get
[2021-08-02 16:09:07.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:07.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:07.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:07.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v1/user/balance/get
[2021-08-02 16:09:07.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:07.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:07.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:09:07.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:07.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:07.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:07.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:07.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:07.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:07.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:07.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:07.867] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:07.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:07.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:07.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:07.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:07.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:07.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:07.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:07 GMT
[2021-08-02 16:09:07.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:07.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:07.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:07.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"virtualBalance":122894,"balance":0.00,"charm":0,"charmMoney":0.00,"chargeBalance":3.00,"newCharm":0},"status":200}
[2021-08-02 16:09:07.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:07.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:07.871] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserBalance--Test Mthod Success
[2021-08-02 16:09:07.871] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:07:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======
[2021-08-02 16:09:07.871] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 198毫秒======
[2021-08-02 16:09:07.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:07.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:07.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:07.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:07.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:07.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:07.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:07.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:07.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:07.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:07.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:07.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:07.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:07.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户皮皮币/钻石余额","caseLog":"======2021-08-02 16:09:07:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-app.apeiwan.com/api/v1/user/balance/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:07 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"virtualBalance\":122894,\"balance\":0.00,\"charm\":0,\"charmMoney\":0.00,\"chargeBalance\":3.00,\"newCharm\":0},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:07:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======\r\n======本次用例运行消耗时间 198毫秒======\r","caseName":"testGetUserBalance","className":"com.pipi.invoker.CosPlayerTest","durationTime":"198毫秒","endTime":"2021-08-02 16:09:07","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:07","status":1}
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:09 GMT
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:09.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:09.514] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:09:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】开始======
[2021-08-02 16:09:09.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:09.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:09.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:09.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:09.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:09.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:09.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:09.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:09.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:09.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:09.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-02 16:09:09.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:09.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-02 16:09:09.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:09.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:09 GMT
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:09.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:09.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222874,"chargeBalance":3.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-06-25 15:06:56","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"147822230","loginTime":"2021-06-25 15:06:55","nickname":"test","registIp":"61.183.246.70","virtualBalance":122894,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","updateTime":"2021-05-26 14:51:34","quickServerStatus":0,"imId":"3222874_20210526","scoreAvg":4.0,"charm":0,"createTime":"2021-05-26 14:51:34","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:09.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:09.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:09.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v1/user/simple/get
[2021-08-02 16:09:09.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:09.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v1/user/simple/get
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=TEST274746, userId=3222874}
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=TEST274746&userId=3222874
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:09.890] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:10 GMT
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"获取个人信息成功!","data":{"platformAuthUrl":"","type":1,"balance":0.00,"loginIp":"61.183.246.70","id":3222874,"chargeBalance":3.00,"lastMemberExp":0,"activeTime":"2021-06-25 15:06:56","userProducts":[],"isAttention":0,"status":1,"gender":1,"city":"未设置","managerPermit":false,"registerType":3,"userCode":"147822230","loginTime":"2021-06-25 15:06:55","nickname":"test","virtualBalance":122894,"memberLevel":0,"updateTime":"2021-05-26 14:51:34","mainPicUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png","quickServerStatus":0,"userId":3222874,"imId":"3222874_20210526","charm":0,"createTime":"2021-05-26 14:51:34","newUser":false,"sourceId":5,"platformAuth":0,"charmDrawSum":0,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","isRoomBlacked":false,"userInfoAuth":0,"totalFootprints":0,"orderTakeSwitch":false,"userTechList":[],"registIp":"61.183.246.70","accessCount":0,"openedTechs":0,"isCancel":false,"attentions":0,"imPsw":"dc91e90d07794dedb1e980491f318895","scoreAvg":4.0,"fans":0,"totalAccessedCnt":0,"registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"},"status":200}
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:09.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:09.994] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple--Test Mthod Success
[2021-08-02 16:09:09.994] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:09:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======
[2021-08-02 16:09:09.994] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 480毫秒======
[2021-08-02 16:09:09.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:09.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:09.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:09.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:09.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:09.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:09.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:09.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:09.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:09.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:09.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:09.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:09.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:09.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v1","caseLog":"======2021-08-02 16:09:09:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:09 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222874,\"chargeBalance\":3.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-06-25 15:06:56\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"147822230\",\"loginTime\":\"2021-06-25 15:06:55\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":122894,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"updateTime\":\"2021-05-26 14:51:34\",\"quickServerStatus\":0,\"imId\":\"3222874_20210526\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-26 14:51:34\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-app.apeiwan.com/api/v1/user/simple/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"TEST274746\",\"userId\":\"3222874\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=TEST274746&userId=3222874\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:10 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"获取个人信息成功!\",\"data\":{\"platformAuthUrl\":\"\",\"type\":1,\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":3222874,\"chargeBalance\":3.00,\"lastMemberExp\":0,\"activeTime\":\"2021-06-25 15:06:56\",\"userProducts\":[],\"isAttention\":0,\"status\":1,\"gender\":1,\"city\":\"未设置\",\"managerPermit\":false,\"registerType\":3,\"userCode\":\"147822230\",\"loginTime\":\"2021-06-25 15:06:55\",\"nickname\":\"test\",\"virtualBalance\":122894,\"memberLevel\":0,\"updateTime\":\"2021-05-26 14:51:34\",\"mainPicUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png\",\"quickServerStatus\":0,\"userId\":3222874,\"imId\":\"3222874_20210526\",\"charm\":0,\"createTime\":\"2021-05-26 14:51:34\",\"newUser\":false,\"sourceId\":5,\"platformAuth\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"isRoomBlacked\":false,\"userInfoAuth\":0,\"totalFootprints\":0,\"orderTakeSwitch\":false,\"userTechList\":[],\"registIp\":\"61.183.246.70\",\"accessCount\":0,\"openedTechs\":0,\"isCancel\":false,\"attentions\":0,\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"scoreAvg\":4.0,\"fans\":0,\"totalAccessedCnt\":0,\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:09:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======\r\n======本次用例运行消耗时间 480毫秒======\r","caseName":"testGetUserSimple","className":"com.pipi.invoker.CosPlayerTest","durationTime":"480毫秒","endTime":"2021-08-02 16:09:09","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:09","status":1}
[2021-08-02 16:09:10.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:10.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:10.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:10.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:10.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:10.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:10.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:10.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:10.566] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:10.566] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:10.566] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:10.566] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:10 GMT
[2021-08-02 16:09:10.566] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:10.566] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:10.567] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:10.567] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:10.567] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:10.567] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:11.082] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:11:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】开始======
[2021-08-02 16:09:11.082] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:11.082] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-02 16:09:11.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:11.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-02 16:09:11.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:11.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:11.325] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:11.326] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:11.326] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:11.326] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:11.326] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:11.326] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:11.327] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:11.327] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:11.327] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:11 GMT
[2021-08-02 16:09:11.327] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:11.327] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:11.328] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:11.328] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222874,"chargeBalance":3.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-06-25 15:06:56","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"147822230","loginTime":"2021-06-25 15:06:55","nickname":"test","registIp":"61.183.246.70","virtualBalance":122894,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","updateTime":"2021-05-26 14:51:34","quickServerStatus":0,"imId":"3222874_20210526","scoreAvg":4.0,"charm":0,"createTime":"2021-05-26 14:51:34","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:11.328] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:11.328] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:11.329] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v2/user/simple/get
[2021-08-02 16:09:11.329] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:11.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v2/user/simple/get
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=TEST274746, userId=3222874}
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=TEST274746&userId=3222874
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:11.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:11.787] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:11.787] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:11.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:11.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:11.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:11.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:11.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:11.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:11.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:11 GMT
[2021-08-02 16:09:11.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:11.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:11.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:11.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"获取个人信息成功!","data":{"platformAuthUrl":"","about":"他还没有个性签名哟~","type":1,"balance":0.00,"loginIp":"61.183.246.70","id":3222874,"chargeBalance":3.00,"lastMemberExp":0,"activeTime":"2021-06-25 15:06:56","userProducts":[],"isAttention":0,"status":1,"gender":1,"city":"未设置","managerPermit":false,"registerType":3,"userCode":"147822230","loginTime":"2021-06-25 15:06:55","nickname":"test","virtualBalance":122894,"memberLevel":0,"updateTime":"2021-05-26 14:51:34","mainPicUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png","quickServerStatus":0,"userId":3222874,"imId":"3222874_20210526","charm":0,"createTime":"2021-05-26 14:51:34","newUser":false,"sourceId":5,"platformAuth":0,"charmDrawSum":0,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","isRoomBlacked":false,"userInfoAuth":0,"totalFootprints":0,"orderTakeSwitch":false,"userTechList":[],"registIp":"61.183.246.70","accessCount":0,"openedTechs":0,"isCancel":false,"attentions":0,"imPsw":"dc91e90d07794dedb1e980491f318895","scoreAvg":4.0,"fans":0,"totalAccessedCnt":0,"registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"},"status":200}
[2021-08-02 16:09:11.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:11.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:11.792] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple2--Test Mthod Success
[2021-08-02 16:09:11.792] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:11:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======
[2021-08-02 16:09:11.792] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 710毫秒======
[2021-08-02 16:09:11.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:11.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:11.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:11.794] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v2","caseLog":"======2021-08-02 16:09:11:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:11 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222874,\"chargeBalance\":3.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-06-25 15:06:56\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"147822230\",\"loginTime\":\"2021-06-25 15:06:55\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":122894,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"updateTime\":\"2021-05-26 14:51:34\",\"quickServerStatus\":0,\"imId\":\"3222874_20210526\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-26 14:51:34\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-app.apeiwan.com/api/v2/user/simple/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"TEST274746\",\"userId\":\"3222874\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=TEST274746&userId=3222874\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:11 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"获取个人信息成功!\",\"data\":{\"platformAuthUrl\":\"\",\"about\":\"他还没有个性签名哟~\",\"type\":1,\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":3222874,\"chargeBalance\":3.00,\"lastMemberExp\":0,\"activeTime\":\"2021-06-25 15:06:56\",\"userProducts\":[],\"isAttention\":0,\"status\":1,\"gender\":1,\"city\":\"未设置\",\"managerPermit\":false,\"registerType\":3,\"userCode\":\"147822230\",\"loginTime\":\"2021-06-25 15:06:55\",\"nickname\":\"test\",\"virtualBalance\":122894,\"memberLevel\":0,\"updateTime\":\"2021-05-26 14:51:34\",\"mainPicUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png\",\"quickServerStatus\":0,\"userId\":3222874,\"imId\":\"3222874_20210526\",\"charm\":0,\"createTime\":\"2021-05-26 14:51:34\",\"newUser\":false,\"sourceId\":5,\"platformAuth\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"isRoomBlacked\":false,\"userInfoAuth\":0,\"totalFootprints\":0,\"orderTakeSwitch\":false,\"userTechList\":[],\"registIp\":\"61.183.246.70\",\"accessCount\":0,\"openedTechs\":0,\"isCancel\":false,\"attentions\":0,\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"scoreAvg\":4.0,\"fans\":0,\"totalAccessedCnt\":0,\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:11:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======\r\n======本次用例运行消耗时间 710毫秒======\r","caseName":"testGetUserSimple2","className":"com.pipi.invoker.CosPlayerTest","durationTime":"710毫秒","endTime":"2021-08-02 16:09:11","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:11","status":1}
[2021-08-02 16:09:12.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:12.518] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:12.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:12.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:12.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:12.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:12.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:12.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:12.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:12.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:12.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:12.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:12 GMT
[2021-08-02 16:09:12.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:12.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:12.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:12.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:12.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:12.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:13.023] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:13:用例【com.pipi.invoker.CosPlayerTest.testGethome】开始======
[2021-08-02 16:09:13.024] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v3/user/get-home
[2021-08-02 16:09:13.024] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:13.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:13.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:13.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v3/user/get-home
[2021-08-02 16:09:13.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:13.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:13.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:09:13.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:13.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:13.147] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:13.147] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:13.147] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:13.147] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:13.147] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:13 GMT
[2021-08-02 16:09:13.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:13.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:13.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:13.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"signFlag":false,"userInfo":{"platformAuthUrl":"","gender":"1","managerPermit":false,"type":1,"nickname":"test","id":3222874,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","memberLevel":0,"mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","userId":3222874,"imId":"3222874_20210526","isInGuild":true,"isRicher":false},"signDays":69,"userSetting":{"orderMsg":1,"productNotifySettings":[],"noticeMsg":1,"userId":3222874,"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,"grabOrderAmount":0,"addCouponCount":0}},"status":200}
[2021-08-02 16:09:13.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:13.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:13.230] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGethome--Test Mthod Success
[2021-08-02 16:09:13.230] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:13:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======
[2021-08-02 16:09:13.230] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 207毫秒======
[2021-08-02 16:09:13.230] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:13.230] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:13.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":" /api/v3/user/get-home获取用户信息(用户是否是巡管员) ","caseLog":"======2021-08-02 16:09:13:用例【com.pipi.invoker.CosPlayerTest.testGethome】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-app.apeiwan.com/api/v3/user/get-home\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:13 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"signFlag\":false,\"userInfo\":{\"platformAuthUrl\":\"\",\"gender\":\"1\",\"managerPermit\":false,\"type\":1,\"nickname\":\"test\",\"id\":3222874,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"userId\":3222874,\"imId\":\"3222874_20210526\",\"isInGuild\":true,\"isRicher\":false},\"signDays\":69,\"userSetting\":{\"orderMsg\":1,\"productNotifySettings\":[],\"noticeMsg\":1,\"userId\":3222874,\"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,\"grabOrderAmount\":0,\"addCouponCount\":0}},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:13:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======\r\n======本次用例运行消耗时间 207毫秒======\r","caseName":"testGethome","className":"com.pipi.invoker.CosPlayerTest","durationTime":"207毫秒","endTime":"2021-08-02 16:09:13","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:13","status":1}
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:12 GMT
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:13.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:14.015] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:14:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-08-02 16:09:14.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-08-02 16:09:14.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:14.093] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:14.094] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:14.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:14.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:14 GMT
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":7,"navigatepageNums":[1,2,3,4,5,6,7],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":237,"virtualProductId":578,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/9/1e57dcb128ae422f923330cfbf0d7a44.png","objectVapUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/9/353778ae8aeb41949a42ece0cc25778e.mp4","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":111,"remarkUrl":"","id":578,"giftType":1,"sort":999999,"charmValue":111,"limitUpdateTime":"2021-07-09 22:28:43","useStatus":1,"name":"双鱼","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":3,"updateTime":"2021-07-09 22:28:43","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-09 22:28:43"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":236,"virtualProductId":577,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/12/bdad811793eb4bbaab9f227b6f774308.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":99,"remarkUrl":"","id":577,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/12/9345d9fcfcf94aa3980892ae31f20d34.svga","giftType":1,"sort":7332,"charmValue":99,"limitUpdateTime":"2021-03-12 14:53:57","useStatus":1,"name":"樱花","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:40","labelUrl":"","createTime":"2021-03-12 14:53:57"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":235,"virtualProductId":576,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/5/ac480fba5b7f4a49b3ecd25fb615a676.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":4,"price":99,"remarkUrl":"","id":576,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/5/a91a4e90011f4310a260fc6b9bb27c38.svga","giftType":1,"sort":7331,"charmValue":99,"limitUpdateTime":"2021-03-05 15:32:11","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:40","labelUrl":"","createTime":"2021-03-05 15:32:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":234,"virtualProductId":575,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/25/5c8f6ff5b6a545c99133194ad3f8a7c4.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":2,"price":99,"remarkUrl":"","id":575,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/25/56018be1294b44268860d6a3ba9605c7.svga","giftType":1,"sort":7330,"charmValue":99,"limitUpdateTime":"2021-02-25 17:23:30","useStatus":1,"name":"拜狮","isWall":true,"permissionDesc":"","remark":"1111","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:40","labelUrl":"","createTime":"2021-02-25 17:23:30"}},{"virtualProductRange":{"roomRange":"TEST883407","rangeName":"","id":233,"virtualProductId":574,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/f38508da3b0d47db8127c8b95ea8d47e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":10,"price":99,"remarkUrl":"","id":574,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/34b22c6971ba45b09fcd74d9bb27bb7f.svga","giftType":1,"sort":7329,"charmValue":99,"limitUpdateTime":"2021-02-23 17:04:38","useStatus":1,"name":"爆炸","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":2,"updateTime":"2021-04-29 23:04:40","labelUrl":"","createTime":"2021-02-23 17:04:38"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":232,"virtualProductId":573,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/bf0dc5b815a04eabbc61064416c0f94a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":777,"remarkUrl":"","id":573,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/96dc2fbf12e14170a66a455f90ab468b.svga","giftType":1,"sort":7328,"charmValue":777,"limitUpdateTime":"2021-02-23 10:13:50","useStatus":1,"name":"爱神","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":3,"updateTime":"2021-04-29 23:04:40","labelUrl":"","createTime":"2021-02-23 10:13:50"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":231,"virtualProductId":572,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/18/95ea1e09200643818b35caf570a4e047.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":4,"price":99,"remarkUrl":"","id":572,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/18/b0e87fe9c7e7483f96807cece8ea6371.svga","giftType":1,"sort":7327,"charmValue":99,"limitUpdateTime":"2021-02-18 14:35:21","useStatus":1,"name":"赏花灯","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":2,"updateTime":"2021-04-29 23:04:40","labelUrl":"","createTime":"2021-02-18 14:35:21"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":230,"virtualProductId":571,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/18/78e56b25fab24e389ab519e3a2493b9f.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":2,"price":22,"remarkUrl":"","id":571,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/18/6497bb979c3144e5a32ee97cf2b49e9d.svga","giftType":1,"sort":7326,"charmValue":22,"limitUpdateTime":"2021-02-18 14:28:20","useStatus":1,"name":"汤圆","isWall":true,"permissionDesc":"","remark":"11","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:40","labelUrl":"","createTime":"2021-02-18 14:28:20"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":229,"virtualProductId":570,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/13/c23c0d0b90bd4c7599687612edf6ac8d.png","createTime":"2021-02-13 12:13:20","refType":1,"id":34,"virtualProductId":570,"content":"","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/8/5ca9c4e5bff04445be0b581184d986b9.png","type":1,"hotValue":50,"singleShow":true,"playDesc":"","giftVersion":4,"price":1,"remarkUrl":"","id":570,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/8/b6573e7ed7c343f48ac1f32aa01f94b1.svga","giftType":1,"sort":7325,"charmValue":1,"limitUpdateTime":"2021-02-08 22:12:57","useStatus":1,"name":"新年爆竹","isWall":true,"permissionDesc":"","remark":"11","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:40","labelUrl":"","createTime":"2021-02-08 22:12:57"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":227,"virtualProductId":568,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/2/0f312cbf01244957b3e8cb0e30811934.png","type":1,"hotValue":100,"singleShow":true,"playDesc":"","giftVersion":3,"price":0,"remarkUrl":"","id":568,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/2/0985483c5b684672ac2f87527a9735f2.svga","giftType":2,"sort":7323,"charmValue":0,"limitUpdateTime":"2021-02-02 12:04:31","useStatus":1,"name":"爱之相随","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":4,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:40","labelUrl":"","createTime":"2021-02-02 12:04:31"}}],"pageNum":1,"navigatePages":8,"total":63,"pages":7,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:14.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:14.878] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-08-02 16:09:14.879] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:14:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-08-02 16:09:14.879] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 864毫秒======
[2021-08-02 16:09:14.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:14.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:14.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:14.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:14.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:14.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:14.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:14.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:14.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:14.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:14.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:14.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:14.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:14.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-08-02 16:09:14:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&type=1&pageNum=1&useStatus=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:14 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":7,\"navigatepageNums\":[1,2,3,4,5,6,7],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":237,\"virtualProductId\":578,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/9/1e57dcb128ae422f923330cfbf0d7a44.png\",\"objectVapUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/9/353778ae8aeb41949a42ece0cc25778e.mp4\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":111,\"remarkUrl\":\"\",\"id\":578,\"giftType\":1,\"sort\":999999,\"charmValue\":111,\"limitUpdateTime\":\"2021-07-09 22:28:43\",\"useStatus\":1,\"name\":\"双鱼\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":3,\"updateTime\":\"2021-07-09 22:28:43\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-09 22:28:43\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":236,\"virtualProductId\":577,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/12/bdad811793eb4bbaab9f227b6f774308.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":99,\"remarkUrl\":\"\",\"id\":577,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/12/9345d9fcfcf94aa3980892ae31f20d34.svga\",\"giftType\":1,\"sort\":7332,\"charmValue\":99,\"limitUpdateTime\":\"2021-03-12 14:53:57\",\"useStatus\":1,\"name\":\"樱花\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:40\",\"labelUrl\":\"\",\"createTime\":\"2021-03-12 14:53:57\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":235,\"virtualProductId\":576,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/5/ac480fba5b7f4a49b3ecd25fb615a676.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":4,\"price\":99,\"remarkUrl\":\"\",\"id\":576,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/5/a91a4e90011f4310a260fc6b9bb27c38.svga\",\"giftType\":1,\"sort\":7331,\"charmValue\":99,\"limitUpdateTime\":\"2021-03-05 15:32:11\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:40\",\"labelUrl\":\"\",\"createTime\":\"2021-03-05 15:32:11\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":234,\"virtualProductId\":575,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/25/5c8f6ff5b6a545c99133194ad3f8a7c4.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":2,\"price\":99,\"remarkUrl\":\"\",\"id\":575,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/25/56018be1294b44268860d6a3ba9605c7.svga\",\"giftType\":1,\"sort\":7330,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-25 17:23:30\",\"useStatus\":1,\"name\":\"拜狮\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"1111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:40\",\"labelUrl\":\"\",\"createTime\":\"2021-02-25 17:23:30\"}},{\"virtualProductRange\":{\"roomRange\":\"TEST883407\",\"rangeName\":\"\",\"id\":233,\"virtualProductId\":574,\"roomType\":2,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/f38508da3b0d47db8127c8b95ea8d47e.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":10,\"price\":99,\"remarkUrl\":\"\",\"id\":574,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/34b22c6971ba45b09fcd74d9bb27bb7f.svga\",\"giftType\":1,\"sort\":7329,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-23 17:04:38\",\"useStatus\":1,\"name\":\"爆炸\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":2,\"updateTime\":\"2021-04-29 23:04:40\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 17:04:38\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":232,\"virtualProductId\":573,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/bf0dc5b815a04eabbc61064416c0f94a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":777,\"remarkUrl\":\"\",\"id\":573,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/96dc2fbf12e14170a66a455f90ab468b.svga\",\"giftType\":1,\"sort\":7328,\"charmValue\":777,\"limitUpdateTime\":\"2021-02-23 10:13:50\",\"useStatus\":1,\"name\":\"爱神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":3,\"updateTime\":\"2021-04-29 23:04:40\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 10:13:50\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":231,\"virtualProductId\":572,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/18/95ea1e09200643818b35caf570a4e047.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":4,\"price\":99,\"remarkUrl\":\"\",\"id\":572,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/18/b0e87fe9c7e7483f96807cece8ea6371.svga\",\"giftType\":1,\"sort\":7327,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-18 14:35:21\",\"useStatus\":1,\"name\":\"赏花灯\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":2,\"updateTime\":\"2021-04-29 23:04:40\",\"labelUrl\":\"\",\"createTime\":\"2021-02-18 14:35:21\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":230,\"virtualProductId\":571,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/18/78e56b25fab24e389ab519e3a2493b9f.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":2,\"price\":22,\"remarkUrl\":\"\",\"id\":571,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/18/6497bb979c3144e5a32ee97cf2b49e9d.svga\",\"giftType\":1,\"sort\":7326,\"charmValue\":22,\"limitUpdateTime\":\"2021-02-18 14:28:20\",\"useStatus\":1,\"name\":\"汤圆\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"11\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:40\",\"labelUrl\":\"\",\"createTime\":\"2021-02-18 14:28:20\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":229,\"virtualProductId\":570,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/13/c23c0d0b90bd4c7599687612edf6ac8d.png\",\"createTime\":\"2021-02-13 12:13:20\",\"refType\":1,\"id\":34,\"virtualProductId\":570,\"content\":\"\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/8/5ca9c4e5bff04445be0b581184d986b9.png\",\"type\":1,\"hotValue\":50,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":4,\"price\":1,\"remarkUrl\":\"\",\"id\":570,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/8/b6573e7ed7c343f48ac1f32aa01f94b1.svga\",\"giftType\":1,\"sort\":7325,\"charmValue\":1,\"limitUpdateTime\":\"2021-02-08 22:12:57\",\"useStatus\":1,\"name\":\"新年爆竹\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"11\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:40\",\"labelUrl\":\"\",\"createTime\":\"2021-02-08 22:12:57\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":227,\"virtualProductId\":568,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/2/0f312cbf01244957b3e8cb0e30811934.png\",\"type\":1,\"hotValue\":100,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":0,\"remarkUrl\":\"\",\"id\":568,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/2/0985483c5b684672ac2f87527a9735f2.svga\",\"giftType\":2,\"sort\":7323,\"charmValue\":0,\"limitUpdateTime\":\"2021-02-02 12:04:31\",\"useStatus\":1,\"name\":\"爱之相随\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:40\",\"labelUrl\":\"\",\"createTime\":\"2021-02-02 12:04:31\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":63,\"pages\":7,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:14:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 864毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"864毫秒","endTime":"2021-08-02 16:09:14","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:14","status":1}
[2021-08-02 16:09:15.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:15.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:15.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:15.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:15.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:15.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:15.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:15.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:15.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:15.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:15.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:15.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:15 GMT
[2021-08-02 16:09:15.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:15.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:15.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:15.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:15.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:15.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:15.749] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:15:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======
[2021-08-02 16:09:15.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-02 16:09:15.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:15.887] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:15.887] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-02 16:09:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-97dd86b162a94924859bea5ea15151b9#3222859
[2021-08-02 16:09:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:15.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:15.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18376254}
[2021-08-02 16:09:15.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:15.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18376254
[2021-08-02 16:09:15.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:15.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:15.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:15.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:15.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:15.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:15.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:15.985] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:15.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:15.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:15.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:16 GMT
[2021-08-02 16:09:15.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:15.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:15.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:15.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-30 17:55:32","maxNum":50,"guildCode":"18376254","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":3222859,"curNum":2,"createTime":"2021-07-29 17:30:18","guildType":1,"id":706,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:15.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:15.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:15.987] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGuildSearch--Test Mthod Success
[2021-08-02 16:09:15.987] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:15:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======
[2021-08-02 16:09:15.987] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 238毫秒======
[2021-08-02 16:09:15.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:15.987] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:15.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"搜索公会","caseLog":"======2021-08-02 16:09:15:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-97dd86b162a94924859bea5ea15151b9#3222859\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18376254\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18376254\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:16 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-30 17:55:32\",\"maxNum\":50,\"guildCode\":\"18376254\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":3222859,\"curNum\":2,\"createTime\":\"2021-07-29 17:30:18\",\"guildType\":1,\"id\":706,\"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-08-02 16:09:15:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======\r\n======本次用例运行消耗时间 238毫秒======\r","caseName":"testGuildSearch","className":"com.pipi.invoker.CosPlayerTest","durationTime":"238毫秒","endTime":"2021-08-02 16:09:15","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:15","status":1}
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:17 GMT
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:17.459] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:17.974] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:17:用例【com.pipi.invoker.CosPlayerTest.testManagerList】开始======
[2021-08-02 16:09:17.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/rask/manager/list
[2021-08-02 16:09:17.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:18.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/rask/manager/list
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:18.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:18 GMT
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询超管列表成功!","data":{"startRow":1,"lastPage":3,"navigatepageNums":[1,2,3],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"manager.create_time desc","endRow":10,"list":[{"remark":"1","managerName":"方","userId":28871,"userCode":"11788200","createTime":"2021-07-30 17:39:53","nickname":"fang","id":26,"status":1},{"remark":"ceshi","managerName":"lincan","userId":1820171,"userCode":"117102810","createTime":"2021-07-30 11:34:22","nickname":"Lin","id":25,"status":0},{"remark":"平台线风控 - 巡查使用","managerName":"霍正","userId":2893322,"userCode":"122339820","createTime":"2020-11-10 16:49:27","nickname":"皮皮巡管员","id":24,"status":0},{"remark":"平台线风控 - 巡查使用","managerName":"刘凯","userId":2836517,"userCode":"171563820","createTime":"2020-10-30 18:22:17","nickname":"皮皮巡管员","id":23,"status":0},{"remark":"平台线风控 - 巡查使用","managerName":"杨哲","userId":2836203,"userCode":"130263820","createTime":"2020-10-30 18:22:08","nickname":"皮皮巡管员","id":22,"status":0},{"remark":"平台线风控 - 巡查使用","managerName":"张成林","userId":2507870,"userCode":"107870520","createTime":"2020-08-27 17:50:40","nickname":"皮皮巡管员","id":21,"status":1},{"remark":"陪练线订单公会运营用","managerName":"姚万鹏","userId":2506143,"userCode":"134160520","createTime":"2020-08-26 15:12:27","nickname":"皮皮巡管员","id":20,"status":0},{"remark":"平台线风控 - 巡查使用","managerName":"张伟东","userId":2466482,"userCode":"128466420","createTime":"2020-08-20 09:49:40","nickname":"皮皮巡管员","id":19,"status":0},{"remark":"风控组聊天室匿名投诉收集账户 - 防用户刷礼物用","managerName":"于蕙铭","userId":2319026,"userCode":"1024","createTime":"2020-07-29 17:30:26","nickname":"聊天室匿名投诉点我","id":18,"status":0},{"remark":"平台阮景-巡厅使用","managerName":"阮景","userId":2215592,"userCode":"129551220","createTime":"2020-07-21 14:35:00","nickname":"皮皮巡管员","id":17,"status":0}],"pageNum":1,"navigatePages":8,"total":25,"pages":3,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:18.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:18.771] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testManagerList--Test Mthod Success
[2021-08-02 16:09:18.771] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:18:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======
[2021-08-02 16:09:18.771] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 797毫秒======
[2021-08-02 16:09:18.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:18.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:18.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:18.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:18.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管列表 /api/v1/rask/manager/list","caseLog":"======2021-08-02 16:09:17:用例【com.pipi.invoker.CosPlayerTest.testManagerList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/rask/manager/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:18 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询超管列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":3,\"navigatepageNums\":[1,2,3],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"manager.create_time desc\",\"endRow\":10,\"list\":[{\"remark\":\"1\",\"managerName\":\"方\",\"userId\":28871,\"userCode\":\"11788200\",\"createTime\":\"2021-07-30 17:39:53\",\"nickname\":\"fang\",\"id\":26,\"status\":1},{\"remark\":\"ceshi\",\"managerName\":\"lincan\",\"userId\":1820171,\"userCode\":\"117102810\",\"createTime\":\"2021-07-30 11:34:22\",\"nickname\":\"Lin\",\"id\":25,\"status\":0},{\"remark\":\"平台线风控 - 巡查使用\",\"managerName\":\"霍正\",\"userId\":2893322,\"userCode\":\"122339820\",\"createTime\":\"2020-11-10 16:49:27\",\"nickname\":\"皮皮巡管员\",\"id\":24,\"status\":0},{\"remark\":\"平台线风控 - 巡查使用\",\"managerName\":\"刘凯\",\"userId\":2836517,\"userCode\":\"171563820\",\"createTime\":\"2020-10-30 18:22:17\",\"nickname\":\"皮皮巡管员\",\"id\":23,\"status\":0},{\"remark\":\"平台线风控 - 巡查使用\",\"managerName\":\"杨哲\",\"userId\":2836203,\"userCode\":\"130263820\",\"createTime\":\"2020-10-30 18:22:08\",\"nickname\":\"皮皮巡管员\",\"id\":22,\"status\":0},{\"remark\":\"平台线风控 - 巡查使用\",\"managerName\":\"张成林\",\"userId\":2507870,\"userCode\":\"107870520\",\"createTime\":\"2020-08-27 17:50:40\",\"nickname\":\"皮皮巡管员\",\"id\":21,\"status\":1},{\"remark\":\"陪练线订单公会运营用\",\"managerName\":\"姚万鹏\",\"userId\":2506143,\"userCode\":\"134160520\",\"createTime\":\"2020-08-26 15:12:27\",\"nickname\":\"皮皮巡管员\",\"id\":20,\"status\":0},{\"remark\":\"平台线风控 - 巡查使用\",\"managerName\":\"张伟东\",\"userId\":2466482,\"userCode\":\"128466420\",\"createTime\":\"2020-08-20 09:49:40\",\"nickname\":\"皮皮巡管员\",\"id\":19,\"status\":0},{\"remark\":\"风控组聊天室匿名投诉收集账户 - 防用户刷礼物用\",\"managerName\":\"于蕙铭\",\"userId\":2319026,\"userCode\":\"1024\",\"createTime\":\"2020-07-29 17:30:26\",\"nickname\":\"聊天室匿名投诉点我\",\"id\":18,\"status\":0},{\"remark\":\"平台阮景-巡厅使用\",\"managerName\":\"阮景\",\"userId\":2215592,\"userCode\":\"129551220\",\"createTime\":\"2020-07-21 14:35:00\",\"nickname\":\"皮皮巡管员\",\"id\":17,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":25,\"pages\":3,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:18:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======\r\n======本次用例运行消耗时间 797毫秒======\r","caseName":"testManagerList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"797毫秒","endTime":"2021-08-02 16:09:18","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:17","status":1}
[2021-08-02 16:09:21.190] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:21.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:21.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:21.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:21.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:21.191] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:21.192] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:21.192] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:21.192] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:21.192] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:21.192] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:21.192] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:21 GMT
[2021-08-02 16:09:21.192] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:21.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:21.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:21.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:21.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:21.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:21.710] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:21:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-08-02 16:09:21.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:21.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:21.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:21.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:21.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:21.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:21.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:21.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:21.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:21.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:21.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-02 16:09:21.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:21.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-02 16:09:21.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:21.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:22 GMT
[2021-08-02 16:09:21.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:21.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:21.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:21.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222874,"chargeBalance":3.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-06-25 15:06:56","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"147822230","loginTime":"2021-06-25 15:06:55","nickname":"test","registIp":"61.183.246.70","virtualBalance":122894,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","updateTime":"2021-05-26 14:51:34","quickServerStatus":0,"imId":"3222874_20210526","scoreAvg":4.0,"charm":0,"createTime":"2021-05-26 14:51:34","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:21.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:21.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:21.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-08-02 16:09:21.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774134, nickname=test, remark=1, chargeBalance=3.00, userId=3222874, searchValue=3222874}
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=test&remark=1&chargeBalance=3.00&userId=3222874&searchValue=3222874
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:22.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:27.068] [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 sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
at sun.security.ssl.InputRecord.read(InputRecord.java:503)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)
at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)
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 sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.moneyDetailsSave(CosPlyaPlayerServiceImpl.java:304)
at com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave(CosPlayerTest.java:81)
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.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
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.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
[2021-08-02 16:09:27.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:27.072] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testMoneyDetailsSave--Test Mthod Failure
[2021-08-02 16:09:27.072] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-02 16:09:27:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-08-02 16:09:27.072] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 05秒362毫秒======
[2021-08-02 16:09:27.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:27.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:27.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:27.074] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-08-02 16:09:21:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:22 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222874,\"chargeBalance\":3.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-06-25 15:06:56\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"147822230\",\"loginTime\":\"2021-06-25 15:06:55\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":122894,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"updateTime\":\"2021-05-26 14:51:34\",\"quickServerStatus\":0,\"imId\":\"3222874_20210526\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-26 14:51:34\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:27:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 05秒362毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/save,异常信息:Read 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.moneyDetailsSave(CosPlyaPlayerServiceImpl.java:304)\r\n\tat com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave(CosPlayerTest.java:81)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\nCaused by: java.net.SocketTimeoutException: Read timed out\r\n\tat java.net.SocketInputStream.socketRead0(Native Method)\r\n\tat java.net.SocketInputStream.socketRead(SocketInputStream.java:116)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:171)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:141)\r\n\tat sun.security.ssl.InputRecord.readFully(InputRecord.java:465)\r\n\tat sun.security.ssl.InputRecord.read(InputRecord.java:503)\r\n\tat sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)\r\n\tat sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)\r\n\tat sun.security.ssl.AppInputStream.read(AppInputStream.java:105)\r\n\tat java.io.BufferedInputStream.fill(BufferedInputStream.java:246)\r\n\tat java.io.BufferedInputStream.read1(BufferedInputStream.java:286)\r\n\tat java.io.BufferedInputStream.read(BufferedInputStream.java:345)\r\n\tat sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)\r\n\tat sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1587)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)\r\n\t... 31 more\r\n","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"05秒362毫秒","endTime":"2021-08-02 16:09:27","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:21","status":2}
[2021-08-02 16:09:27.413] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:27.413] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:27.413] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:27.413] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:27.413] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:27.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:27.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:27.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:27.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:27.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:27.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:27.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:27 GMT
[2021-08-02 16:09:27.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:27.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:27.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:27.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:27.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:27.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:32.429] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:32:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======
[2021-08-02 16:09:32.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:32.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:32.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:32.540] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:32.540] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:32.540] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:32.540] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:32.541] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:32.541] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:32.541] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:32.541] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-02 16:09:32.541] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:32.541] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-02 16:09:32.542] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:32.542] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:32.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:32 GMT
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222859,"chargeBalance":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-02 10:30:30","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"195822230","loginTime":"2021-06-03 15:37:00","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":8190,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"d7f66b8fd74d4ed5916ad50fa4422e44","updateTime":"2021-05-21 17:36:09","quickServerStatus":0,"imId":"3222859_20210521","scoreAvg":4.0,"charm":0,"createTime":"2021-05-21 17:36:09","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/room/list
[2021-08-02 16:09:32.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:32.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:32.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:32.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/room/list
[2021-08-02 16:09:32.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:32.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:32.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:32.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:32.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:32.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1, userId=3222859}
[2021-08-02 16:09:32.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:32.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1&userId=3222859
[2021-08-02 16:09:32.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:32.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:33.074] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:33.074] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:33.074] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:33.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:33.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:33.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:33.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:33.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:33.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:33 GMT
[2021-08-02 16:09:33.076] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:33.076] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:33.076] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:33.076] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"endRow":1,"list":[{"hostUserId":3222859,"scoreWeight":2,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":6350,"virtualPeople":1,"roomType":1,"realPeople":0,"roomNo":"TEST274746","recommendWeight":0,"sort":999,"guildId":706,"roomName":"我的厅12","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":false,"isHot":true,"template":1,"hostMobile":"13823774131","remark":"我的厅12","roomCode":"TEST274746","guildCode":"18376254","sortWeight":0,"guildName":"心玄的公会","isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","closeTime":"2021-07-30 11:53:01","orderRoomSerial":"1","openTime":"2021-07-30 11:11:23","roomCategoryId":2,"collectCount":0,"micDuration":900,"isShow":true,"hostUserName":"test","createTime":"2021-07-29 17:33:53"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:33.076] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:33.076] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:33.077] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomList--Test Mthod Success
[2021-08-02 16:09:33.077] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:33:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======
[2021-08-02 16:09:33.077] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 648毫秒======
[2021-08-02 16:09:33.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:33.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:33.078] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询房间","caseLog":"======2021-08-02 16:09:32:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:32 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222859,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-02 10:30:30\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"195822230\",\"loginTime\":\"2021-06-03 15:37:00\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":8190,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"d7f66b8fd74d4ed5916ad50fa4422e44\",\"updateTime\":\"2021-05-21 17:36:09\",\"quickServerStatus\":0,\"imId\":\"3222859_20210521\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-21 17:36:09\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/room/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":10,\"pageNum\":1,\"userId\":\"3222859\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1&userId=3222859\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:33 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\":3222859,\"scoreWeight\":2,\"roomInfoTagList\":[],\"roomStatus\":1,\"password\":\"123456\",\"isOpenChat\":true,\"roomCategoryName\":\"派单\",\"id\":6350,\"virtualPeople\":1,\"roomType\":1,\"realPeople\":0,\"roomNo\":\"TEST274746\",\"recommendWeight\":0,\"sort\":999,\"guildId\":706,\"roomName\":\"我的厅12\",\"roomInfoTagConfigList\":[],\"roomVipCount\":15,\"basicHotValue\":0,\"isActivate\":false,\"isHot\":true,\"template\":1,\"hostMobile\":\"13823774131\",\"remark\":\"我的厅12\",\"roomCode\":\"TEST274746\",\"guildCode\":\"18376254\",\"sortWeight\":0,\"guildName\":\"心玄的公会\",\"isLock\":false,\"roomIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg\",\"closeTime\":\"2021-07-30 11:53:01\",\"orderRoomSerial\":\"1\",\"openTime\":\"2021-07-30 11:11:23\",\"roomCategoryId\":2,\"collectCount\":0,\"micDuration\":900,\"isShow\":true,\"hostUserName\":\"test\",\"createTime\":\"2021-07-29 17:33:53\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:33:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======\r\n======本次用例运行消耗时间 648毫秒======\r","caseName":"testRoomList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"648毫秒","endTime":"2021-08-02 16:09:33","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:32","status":1}
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:33 GMT
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:33.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:33.823] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:33:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】开始======
[2021-08-02 16:09:33.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/rask/manager/room/record
[2021-08-02 16:09:33.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:33.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:33.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:33.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/rask/manager/room/record
[2021-08-02 16:09:33.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:33.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:33.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:33.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:33.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:33.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-08-02 16:09:33.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:33.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-08-02 16:09:33.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:33.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:34.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:34.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:34.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:34 GMT
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询超管房间记录成功!","data":{"startRow":1,"lastPage":2,"navigatepageNums":[1,2],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"record.enter_time desc","endRow":10,"list":[{"roomNo":"TEST477773","quitTime":"2021-08-02 16:09:34","managerName":"fang","userId":28871,"userCode":"11788200","roomName":"派单","adminId":26,"id":49333,"enterTime":"2021-07-30 17:47:48"},{"roomNo":"TEST477773","quitTime":"2021-07-30 17:47:34","managerName":"fang","userId":28871,"userCode":"11788200","roomName":"派单","adminId":26,"id":49332,"enterTime":"2021-07-30 17:45:04"},{"roomNo":"TEST477773","quitTime":"2021-07-30 17:44:43","managerName":"fang","userId":28871,"userCode":"11788200","roomName":"派单","adminId":26,"id":49331,"enterTime":"2021-07-30 17:43:16"},{"roomNo":"TEST813274","quitTime":"2021-08-02 16:09:34","managerName":"游客15750200","userId":20575,"userCode":"15750200","roomName":"【方玲】cpdddd","adminId":27,"id":49330,"enterTime":"2021-07-30 17:42:10"},{"roomNo":"TEST813274","quitTime":"2021-07-30 17:42:08","managerName":"游客15750200","userId":20575,"userCode":"15750200","roomName":"【方玲】cpdddd","adminId":27,"id":49329,"enterTime":"2021-07-30 17:41:48"},{"roomNo":"TEST813274","quitTime":"2021-07-30 17:43:10","managerName":"fang","userId":28871,"userCode":"11788200","roomName":"【方玲】cpdddd","adminId":26,"id":49328,"enterTime":"2021-07-30 17:40:11"},{"roomNo":"TEST278971","quitTime":"2021-08-02 16:09:34","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"语音测试","adminId":15,"id":49327,"enterTime":"2021-07-30 10:03:06"},{"roomNo":"TEST8899","quitTime":"2021-03-30 14:35:49","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"【天使】新年快乐吖","adminId":15,"id":49326,"enterTime":"2021-03-30 14:35:35"},{"roomNo":"TEST240155","quitTime":"2021-03-30 14:35:34","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"【琳琅】天暗下来,你就是光","adminId":15,"id":49325,"enterTime":"2021-03-30 14:35:28"},{"roomNo":"TEST913449","quitTime":"2021-03-30 14:35:16","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"【栗子】送个小星星好吗","adminId":15,"id":49324,"enterTime":"2021-03-30 14:35:08"}],"pageNum":1,"navigatePages":8,"total":17,"pages":2,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:34.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:34.310] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomRecord--Test Mthod Success
[2021-08-02 16:09:34.310] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:34:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======
[2021-08-02 16:09:34.310] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 487毫秒======
[2021-08-02 16:09:34.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:34.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:34.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:34.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:34.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管巡查记录 /api/v1/rask/manager/room/record","caseLog":"======2021-08-02 16:09:33:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/rask/manager/room/record\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:34 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询超管房间记录成功!\",\"data\":{\"startRow\":1,\"lastPage\":2,\"navigatepageNums\":[1,2],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"record.enter_time desc\",\"endRow\":10,\"list\":[{\"roomNo\":\"TEST477773\",\"quitTime\":\"2021-08-02 16:09:34\",\"managerName\":\"fang\",\"userId\":28871,\"userCode\":\"11788200\",\"roomName\":\"派单\",\"adminId\":26,\"id\":49333,\"enterTime\":\"2021-07-30 17:47:48\"},{\"roomNo\":\"TEST477773\",\"quitTime\":\"2021-07-30 17:47:34\",\"managerName\":\"fang\",\"userId\":28871,\"userCode\":\"11788200\",\"roomName\":\"派单\",\"adminId\":26,\"id\":49332,\"enterTime\":\"2021-07-30 17:45:04\"},{\"roomNo\":\"TEST477773\",\"quitTime\":\"2021-07-30 17:44:43\",\"managerName\":\"fang\",\"userId\":28871,\"userCode\":\"11788200\",\"roomName\":\"派单\",\"adminId\":26,\"id\":49331,\"enterTime\":\"2021-07-30 17:43:16\"},{\"roomNo\":\"TEST813274\",\"quitTime\":\"2021-08-02 16:09:34\",\"managerName\":\"游客15750200\",\"userId\":20575,\"userCode\":\"15750200\",\"roomName\":\"【方玲】cpdddd\",\"adminId\":27,\"id\":49330,\"enterTime\":\"2021-07-30 17:42:10\"},{\"roomNo\":\"TEST813274\",\"quitTime\":\"2021-07-30 17:42:08\",\"managerName\":\"游客15750200\",\"userId\":20575,\"userCode\":\"15750200\",\"roomName\":\"【方玲】cpdddd\",\"adminId\":27,\"id\":49329,\"enterTime\":\"2021-07-30 17:41:48\"},{\"roomNo\":\"TEST813274\",\"quitTime\":\"2021-07-30 17:43:10\",\"managerName\":\"fang\",\"userId\":28871,\"userCode\":\"11788200\",\"roomName\":\"【方玲】cpdddd\",\"adminId\":26,\"id\":49328,\"enterTime\":\"2021-07-30 17:40:11\"},{\"roomNo\":\"TEST278971\",\"quitTime\":\"2021-08-02 16:09:34\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"语音测试\",\"adminId\":15,\"id\":49327,\"enterTime\":\"2021-07-30 10:03:06\"},{\"roomNo\":\"TEST8899\",\"quitTime\":\"2021-03-30 14:35:49\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"【天使】新年快乐吖\",\"adminId\":15,\"id\":49326,\"enterTime\":\"2021-03-30 14:35:35\"},{\"roomNo\":\"TEST240155\",\"quitTime\":\"2021-03-30 14:35:34\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"【琳琅】天暗下来,你就是光\",\"adminId\":15,\"id\":49325,\"enterTime\":\"2021-03-30 14:35:28\"},{\"roomNo\":\"TEST913449\",\"quitTime\":\"2021-03-30 14:35:16\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"【栗子】送个小星星好吗\",\"adminId\":15,\"id\":49324,\"enterTime\":\"2021-03-30 14:35:08\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":17,\"pages\":2,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:34:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======\r\n======本次用例运行消耗时间 487毫秒======\r","caseName":"testRoomRecord","className":"com.pipi.invoker.CosPlayerTest","durationTime":"487毫秒","endTime":"2021-08-02 16:09:34","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:33","status":1}
[2021-08-02 16:09:34.466] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:34.466] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:34.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:34.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:34.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:34.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:34.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:34.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:34.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:34.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:34.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:34.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:34 GMT
[2021-08-02 16:09:34.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:34.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:34.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:34.469] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:34.469] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:34.469] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:34.986] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:34:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======
[2021-08-02 16:09:34.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:34.986] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:35.060] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:35.060] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:35.060] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:35.060] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:35.060] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:35.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:35.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:35.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:35.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-02 16:09:35.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:35.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-02 16:09:35.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:35.061] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:35.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:35 GMT
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222859,"chargeBalance":0.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-02 10:30:30","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"195822230","loginTime":"2021-06-03 15:37:00","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":8190,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"d7f66b8fd74d4ed5916ad50fa4422e44","updateTime":"2021-05-21 17:36:09","quickServerStatus":0,"imId":"3222859_20210521","scoreAvg":4.0,"charm":0,"createTime":"2021-05-21 17:36:09","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-02 16:09:35.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:35.217] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:35.218] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:35.218] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-02 16:09:35.218] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:35.219] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:35.219] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:09:35.219] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:35.219] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:35.219] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=TEST274746, productId=571, userIds=3222859, timestamp=1621828487580}
[2021-08-02 16:09:35.220] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:35.220] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=TEST274746&productId=571&userIds=3222859×tamp=1621828487580
[2021-08-02 16:09:35.220] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:35.220] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:40.228] [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 sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
at sun.security.ssl.InputRecord.read(InputRecord.java:503)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)
at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)
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 sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.send(CosPlyaPlayerServiceImpl.java:327)
at com.pipi.invoker.CosPlayerTest.testSend(CosPlayerTest.java:114)
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.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
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.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
[2021-08-02 16:09:40.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:40.230] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testSend--Test Mthod Failure
[2021-08-02 16:09:40.230] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-02 16:09:40:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======
[2021-08-02 16:09:40.230] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 05秒244毫秒======
[2021-08-02 16:09:40.230] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:40.230] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:40.231] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送礼物","caseLog":"======2021-08-02 16:09:34:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:35 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222859,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-02 10:30:30\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"195822230\",\"loginTime\":\"2021-06-03 15:37:00\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":8190,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"d7f66b8fd74d4ed5916ad50fa4422e44\",\"updateTime\":\"2021-05-21 17:36:09\",\"quickServerStatus\":0,\"imId\":\"3222859_20210521\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-21 17:36:09\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:40:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======\r\n======本次用例运行消耗时间 05秒244毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t6-api-app.apeiwan.com/api/v4/room/gift/send,异常信息:Read 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.send(CosPlyaPlayerServiceImpl.java:327)\r\n\tat com.pipi.invoker.CosPlayerTest.testSend(CosPlayerTest.java:114)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\nCaused by: java.net.SocketTimeoutException: Read timed out\r\n\tat java.net.SocketInputStream.socketRead0(Native Method)\r\n\tat java.net.SocketInputStream.socketRead(SocketInputStream.java:116)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:171)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:141)\r\n\tat sun.security.ssl.InputRecord.readFully(InputRecord.java:465)\r\n\tat sun.security.ssl.InputRecord.read(InputRecord.java:503)\r\n\tat sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)\r\n\tat sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)\r\n\tat sun.security.ssl.AppInputStream.read(AppInputStream.java:105)\r\n\tat java.io.BufferedInputStream.fill(BufferedInputStream.java:246)\r\n\tat java.io.BufferedInputStream.read1(BufferedInputStream.java:286)\r\n\tat java.io.BufferedInputStream.read(BufferedInputStream.java:345)\r\n\tat sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)\r\n\tat sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1587)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)\r\n\t... 31 more\r\n","caseName":"testSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"05秒244毫秒","endTime":"2021-08-02 16:09:40","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:34","status":2}
[2021-08-02 16:09:40.391] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:40.391] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:40.391] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:40.391] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:40.391] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:40.391] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:40 GMT
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:40.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:45.399] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:45:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======
[2021-08-02 16:09:45.399] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-08-02 16:09:45.399] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:45.481] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:45.481] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:45.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-08-02 16:09:45.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:45.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:45.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:09:45.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:45.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:45.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=TEST274746, type=2}
[2021-08-02 16:09:45.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:45.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=TEST274746&type=2
[2021-08-02 16:09:45.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:45.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:45.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:45.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:45.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:45.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:45.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:45.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:45.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:45 GMT
[2021-08-02 16:09:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":[],"status":200}
[2021-08-02 16:09:45.593] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:45.593] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:45.594] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpList--Test Mthod Success
[2021-08-02 16:09:45.594] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:45:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======
[2021-08-02 16:09:45.594] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 195毫秒======
[2021-08-02 16:09:45.594] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:45.594] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取上麦、试音申请列表数据","caseLog":"======2021-08-02 16:09:45:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-guild-api.apeiwan.com/api/v1/room/mic/up/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"TEST274746\",\"type\":\"2\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=TEST274746&type=2\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:45 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":[],\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:45:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======\r\n======本次用例运行消耗时间 195毫秒======\r","caseName":"testUpList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"195毫秒","endTime":"2021-08-02 16:09:45","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:45","status":1}
[2021-08-02 16:09:45.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:45.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:45.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:45.875] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:45.875] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:45.875] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:45.875] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:45.875] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:45.875] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:45.875] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:45.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:45.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:46 GMT
[2021-08-02 16:09:45.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:45.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:45.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:45.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:45.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:45.877] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:46.392] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:46:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======
[2021-08-02 16:09:46.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-08-02 16:09:46.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:46.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {types=2, roomNo=TEST274746}
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - types=2&roomNo=TEST274746
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:46.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:46.680] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:46.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:46.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:46.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:46.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:46.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:46.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:46.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:46.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:46 GMT
[2021-08-02 16:09:46.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:46.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:46.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:46.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"2":{"alreadyInList":false,"people":0}},"status":200}
[2021-08-02 16:09:46.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:46.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:46.683] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpSize--Test Mthod Success
[2021-08-02 16:09:46.684] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:46:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======
[2021-08-02 16:09:46.684] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 292毫秒======
[2021-08-02 16:09:46.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:46.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:46.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:46.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:46.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:46.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:46.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:46.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:46.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:46.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:46.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:46.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:46.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:46.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取聊天室内上麦试音队列、点单队列等","caseLog":"======2021-08-02 16:09:46:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-guild-api.apeiwan.com/api/v1/room/mic/up/size\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-444f10760d814a75b8428ef5f1f316b7#3222874\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"types\":\"2\",\"roomNo\":\"TEST274746\"}\r\n###Http Request queryString after URLEncoder### :\r\ntypes=2&roomNo=TEST274746\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:46 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"2\":{\"alreadyInList\":false,\"people\":0}},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:46:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======\r\n======本次用例运行消耗时间 292毫秒======\r","caseName":"testUpSize","className":"com.pipi.invoker.CosPlayerTest","durationTime":"292毫秒","endTime":"2021-08-02 16:09:46","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:46","status":1}
[2021-08-02 16:09:46.833] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:46.834] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:46.834] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:46.834] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:46.834] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:46.834] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:46.835] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:46.835] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:46.835] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:46.835] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:46.835] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:46.835] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:46 GMT
[2021-08-02 16:09:46.835] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:46.835] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:46.836] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:46.836] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:46.836] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:46.836] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:47.353] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:47:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======
[2021-08-02 16:09:47.353] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:47.353] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:47.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:47 GMT
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:47.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:47.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222874,"chargeBalance":3.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-06-25 15:06:56","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"147822230","loginTime":"2021-06-25 15:06:55","nickname":"test","registIp":"61.183.246.70","virtualBalance":122894,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","updateTime":"2021-05-26 14:51:34","quickServerStatus":0,"imId":"3222874_20210526","scoreAvg":4.0,"charm":0,"createTime":"2021-05-26 14:51:34","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:47.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:47.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:47.509] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUserList--Test Mthod Success
[2021-08-02 16:09:47.509] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-02 16:09:47:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======
[2021-08-02 16:09:47.510] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 156毫秒======
[2021-08-02 16:09:47.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:47.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:47.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:47.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:47.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:47.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:47.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:47.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:47.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:47.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:47.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:47.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:47.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:47.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"用户信息","caseLog":"======2021-08-02 16:09:47:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:47 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222874,\"chargeBalance\":3.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-06-25 15:06:56\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"147822230\",\"loginTime\":\"2021-06-25 15:06:55\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":122894,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"updateTime\":\"2021-05-26 14:51:34\",\"quickServerStatus\":0,\"imId\":\"3222874_20210526\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-26 14:51:34\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:47:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======\r\n======本次用例运行消耗时间 156毫秒======\r","caseName":"testUserList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"156毫秒","endTime":"2021-08-02 16:09:47","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:47","status":1}
[2021-08-02 16:09:47.701] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:47.701] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:47.701] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:47.701] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:47.701] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:47.702] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:47.702] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:47.702] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:47.702] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:47.702] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:47.702] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:47.702] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:47 GMT
[2021-08-02 16:09:47.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:47.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:47.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:47.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:47.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:47.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:48.218] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:48:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-08-02 16:09:48.219] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:48.219] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:48.301] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:48.301] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:48.301] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:09:48.301] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:48.301] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:48.301] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:48.302] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:48.302] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:48.302] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-02 16:09:48.302] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:48.302] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-02 16:09:48.302] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:48.302] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:48.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:48.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:48.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:09:48.375] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:48.375] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:48.375] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:09:48.375] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:48.375] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:09:48.375] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:48 GMT
[2021-08-02 16:09:48.376] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:09:48.376] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:48.376] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:48.376] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222874,"chargeBalance":3.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-06-25 15:06:56","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"147822230","loginTime":"2021-06-25 15:06:55","nickname":"test","registIp":"61.183.246.70","virtualBalance":122894,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","updateTime":"2021-05-26 14:51:34","quickServerStatus":0,"imId":"3222874_20210526","scoreAvg":4.0,"charm":0,"createTime":"2021-05-26 14:51:34","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:09:48.376] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:48.376] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:48.376] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-08-02 16:09:48.376] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:48.463] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:48.463] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:48.464] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-08-02 16:09:48.464] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:48.464] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:48.464] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:09:48.464] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:48.464] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:48.465] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1000, remark=1, type=1, userId=3222874}
[2021-08-02 16:09:48.465] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:48.465] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1000&remark=1&type=1&userId=3222874
[2021-08-02 16:09:48.465] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:48.465] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:09:53.473] [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 sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
at sun.security.ssl.InputRecord.read(InputRecord.java:503)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)
at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)
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 sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.virtualMoneyModify(CosPlyaPlayerServiceImpl.java:261)
at com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify(CosPlayerTest.java:67)
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.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
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.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
[2021-08-02 16:09:53.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:53.474] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testVirtualMoneyModify--Test Mthod Failure
[2021-08-02 16:09:53.474] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-02 16:09:53:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-08-02 16:09:53.474] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 05秒256毫秒======
[2021-08-02 16:09:53.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:53.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:53.475] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-08-02 16:09:48:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:09:48 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222874,\"chargeBalance\":3.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-06-25 15:06:56\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"147822230\",\"loginTime\":\"2021-06-25 15:06:55\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":122894,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"updateTime\":\"2021-05-26 14:51:34\",\"quickServerStatus\":0,\"imId\":\"3222874_20210526\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-26 14:51:34\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:09:53:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 05秒256毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify,异常信息:Read 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.virtualMoneyModify(CosPlyaPlayerServiceImpl.java:261)\r\n\tat com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify(CosPlayerTest.java:67)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\nCaused by: java.net.SocketTimeoutException: Read timed out\r\n\tat java.net.SocketInputStream.socketRead0(Native Method)\r\n\tat java.net.SocketInputStream.socketRead(SocketInputStream.java:116)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:171)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:141)\r\n\tat sun.security.ssl.InputRecord.readFully(InputRecord.java:465)\r\n\tat sun.security.ssl.InputRecord.read(InputRecord.java:503)\r\n\tat sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)\r\n\tat sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)\r\n\tat sun.security.ssl.AppInputStream.read(AppInputStream.java:105)\r\n\tat java.io.BufferedInputStream.fill(BufferedInputStream.java:246)\r\n\tat java.io.BufferedInputStream.read1(BufferedInputStream.java:286)\r\n\tat java.io.BufferedInputStream.read(BufferedInputStream.java:345)\r\n\tat sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)\r\n\tat sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1587)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)\r\n\t... 31 more\r\n","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"05秒256毫秒","endTime":"2021-08-02 16:09:53","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:48","status":2}
[2021-08-02 16:09:54.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:09:54.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:09:54.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:09:54.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:09:54.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:09:54.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:09:54.619] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:09:54.619] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:09:54.619] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:09:54.619] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:09:54.619] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:09:54.619] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:09:54 GMT
[2021-08-02 16:09:54.619] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:09:54.619] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:09:54.620] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:09:54.620] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:09:54.620] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:09:54.620] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:09:59.638] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:09:59:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======
[2021-08-02 16:09:59.639] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-08-02 16:09:59.639] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:09:59.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:09:59.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:09:59.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-444f10760d814a75b8428ef5f1f316b7#3222874
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {activityId=155, times=1, roomNo=TEST274746, timestamp=1621828487580}
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - activityId=155×=1&roomNo=TEST274746×tamp=1621828487580
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:09:59.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:04.727] [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 sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
at sun.security.ssl.InputRecord.read(InputRecord.java:503)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)
at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)
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 sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.lotteryActivity(CosPlyaPlayerServiceImpl.java:389)
at com.pipi.invoker.CosPlayerTest.testLotteryActivity(CosPlayerTest.java:130)
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.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
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.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
[2021-08-02 16:10:04.727] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:04.728] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testLotteryActivity--Test Mthod Failure
[2021-08-02 16:10:04.728] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-02 16:10:04:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======
[2021-08-02 16:10:04.728] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 05秒090毫秒======
[2021-08-02 16:10:04.729] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:10:04.729] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:04.729] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:04.729] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:04.729] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:10:04.729] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:10:04.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:04.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:10:04.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:04.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:10:04.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:04.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:10:04.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:04.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"开宝箱","caseLog":"======2021-08-02 16:09:59:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======\r\n======2021-08-02 16:10:04:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======\r\n======本次用例运行消耗时间 05秒090毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t6-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity,异常信息:Read 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.lotteryActivity(CosPlyaPlayerServiceImpl.java:389)\r\n\tat com.pipi.invoker.CosPlayerTest.testLotteryActivity(CosPlayerTest.java:130)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\nCaused by: java.net.SocketTimeoutException: Read timed out\r\n\tat java.net.SocketInputStream.socketRead0(Native Method)\r\n\tat java.net.SocketInputStream.socketRead(SocketInputStream.java:116)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:171)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:141)\r\n\tat sun.security.ssl.InputRecord.readFully(InputRecord.java:465)\r\n\tat sun.security.ssl.InputRecord.read(InputRecord.java:503)\r\n\tat sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)\r\n\tat sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)\r\n\tat sun.security.ssl.AppInputStream.read(AppInputStream.java:105)\r\n\tat java.io.BufferedInputStream.fill(BufferedInputStream.java:246)\r\n\tat java.io.BufferedInputStream.read1(BufferedInputStream.java:286)\r\n\tat java.io.BufferedInputStream.read(BufferedInputStream.java:345)\r\n\tat sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)\r\n\tat sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1587)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)\r\n\t... 31 more\r\n","caseName":"testLotteryActivity","className":"com.pipi.invoker.CosPlayerTest","durationTime":"05秒090毫秒","endTime":"2021-08-02 16:10:04","id":0,"serviceId":1,"startTime":"2021-08-02 16:09:59","status":2}
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:05 GMT
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:05.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:10.142] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:10:10:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======
[2021-08-02 16:10:10.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:10:10.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:10.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:10.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:10.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:10:10.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:10:10.233] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:10.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:c58412c8c50d4d63b01835931f1ab635
[2021-08-02 16:10:10.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:10:10.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:10.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-02 16:10:10.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:10.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-02 16:10:10.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:10.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:10.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:10.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:10.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:10:10.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:10.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:10:10.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:10:10.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:10.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:10:10.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:10 GMT
[2021-08-02 16:10:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:10:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222874,"chargeBalance":3.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-06-25 15:06:56","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"147822230","loginTime":"2021-06-25 15:06:55","nickname":"test","registIp":"61.183.246.70","virtualBalance":123894,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","updateTime":"2021-05-26 14:51:34","quickServerStatus":0,"imId":"3222874_20210526","scoreAvg":4.0,"charm":0,"createTime":"2021-05-26 14:51:34","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:10:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:10.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:10.321] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-08-02 16:10:10.321] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:10.401] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-97dd86b162a94924859bea5ea15151b9#3222859
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {userId=3222874}
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - userId=3222874
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:10.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:15.405] [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 sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
at sun.security.ssl.InputRecord.read(InputRecord.java:503)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)
at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)
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 sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.remove(CosPlyaPlayerServiceImpl.java:752)
at com.pipi.invoker.CosPlayerTest.testRemove(CosPlayerTest.java:171)
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.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
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.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
[2021-08-02 16:10:15.407] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:15.408] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testRemove--Test Mthod Failure
[2021-08-02 16:10:15.408] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-02 16:10:15:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======
[2021-08-02 16:10:15.408] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 05秒266毫秒======
[2021-08-02 16:10:15.408] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:10:15.408] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:15.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"将成员从公会移除","caseLog":"======2021-08-02 16:10:10:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"c58412c8c50d4d63b01835931f1ab635\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:10:10 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222874,\"chargeBalance\":3.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-06-25 15:06:56\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"147822230\",\"loginTime\":\"2021-06-25 15:06:55\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":123894,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"updateTime\":\"2021-05-26 14:51:34\",\"quickServerStatus\":0,\"imId\":\"3222874_20210526\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-26 14:51:34\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:10:15:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======\r\n======本次用例运行消耗时间 05秒266毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t6-guild-api.apeiwan.com/api/v2/guild-member/remove,异常信息:Read 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.remove(CosPlyaPlayerServiceImpl.java:752)\r\n\tat com.pipi.invoker.CosPlayerTest.testRemove(CosPlayerTest.java:171)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\nCaused by: java.net.SocketTimeoutException: Read timed out\r\n\tat java.net.SocketInputStream.socketRead0(Native Method)\r\n\tat java.net.SocketInputStream.socketRead(SocketInputStream.java:116)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:171)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:141)\r\n\tat sun.security.ssl.InputRecord.readFully(InputRecord.java:465)\r\n\tat sun.security.ssl.InputRecord.read(InputRecord.java:503)\r\n\tat sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)\r\n\tat sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)\r\n\tat sun.security.ssl.AppInputStream.read(AppInputStream.java:105)\r\n\tat java.io.BufferedInputStream.fill(BufferedInputStream.java:246)\r\n\tat java.io.BufferedInputStream.read1(BufferedInputStream.java:286)\r\n\tat java.io.BufferedInputStream.read(BufferedInputStream.java:345)\r\n\tat sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)\r\n\tat sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1587)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)\r\n\t... 31 more\r\n","caseName":"testRemove","className":"com.pipi.invoker.CosPlayerTest","durationTime":"05秒266毫秒","endTime":"2021-08-02 16:10:15","id":0,"serviceId":1,"startTime":"2021-08-02 16:10:10","status":2}
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:16 GMT
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:15.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:10:15.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:15.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:20.927] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserBalance
[2021-08-02 16:10:20.927] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testManagerList
[2021-08-02 16:10:20.927] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetMine
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomRecord
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUserList
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGethome
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomList
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpSize
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpList
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGuildSearch
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple2
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testRemove
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testMoneyDetailsSave
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testVirtualMoneyModify
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testLotteryActivity
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testSend
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testAuditGuild
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:14
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:6
[2021-08-02 16:10:20.928] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-02 16:10:20.933] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-02 16:10:20.934] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-02 16:10:20.938] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-02 16:10:20.938] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:20.939] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"01分30秒016毫秒","endTime":"2021-08-02 16:10:20","env":"t6","failed":6,"id":0,"passed":14,"serviceId":1,"skipped":0,"startTime":"2021-08-02 16:08:50","status":2,"teamId":0,"total":20}
[2021-08-02 16:10:25.943] [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.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
[2021-08-02 16:10:25.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:38.080] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-02 16:10:38.141] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-02 16:10:38:测试集开始======
[2021-08-02 16:10:38.347] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.PropUtil:51] - 配置项 dbConnectionURL 不存在,请检查配置!
[2021-08-02 16:10:38.359] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/login
[2021-08-02 16:10:38.360] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:38.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:38.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:38.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/login
[2021-08-02 16:10:38.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:10:38.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:38.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:10:38.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:38.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-08-02 16:10:38.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:38.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-08-02 16:10:38.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:38.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:38.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:38.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:38.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:10:38.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:38.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:10:38.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:38.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:10:38.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-08-02 16:10:38.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:38 GMT
[2021-08-02 16:10:38.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:10:38.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:38.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:38.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"d16d638ade1147cbb8243f8af37c46c9","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-08-02 16:10:38.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:38.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:38.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/sms/verify
[2021-08-02 16:10:38.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:38.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:38.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:38.685] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/sms/verify
[2021-08-02 16:10:38.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:10:38.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:38.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:10:38.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:38.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-02 16:10:38.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:38.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-02 16:10:38.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:38.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:38.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:38.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:38.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:10:38.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:38.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:10:38.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:38.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:10:38.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-02 16:10:38.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:38 GMT
[2021-08-02 16:10:38.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:10:38.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:38.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:38.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-02 16:10:38.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:38.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:38.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/login
[2021-08-02 16:10:38.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:38.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:38.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:38.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/login
[2021-08-02 16:10:38.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:10:38.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:10:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-02 16:10:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-02 16:10:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:38.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:38.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:38.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:10:38.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:38.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:39 GMT
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":1,"userCode":"147822230","nickname":"test","id":3222874,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","updateTime":"2021-05-26 14:51:34","imId":"3222874_20210526","token":"APP-9a6e3bc187634980a08f944a20573aa8#3222874","createTime":"2021-05-26 14:51:34","newUser":false,"status":1},"status":200}
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:38.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:38.949] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/sms/verify
[2021-08-02 16:10:38.949] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:39.079] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:39.079] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:39.079] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/sms/verify
[2021-08-02 16:10:39.079] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:10:39.079] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:39.079] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:10:39.079] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:39.079] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-02 16:10:39.079] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:39.080] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-02 16:10:39.080] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:39.080] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:39 GMT
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:10:39.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:39.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:39.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-02 16:10:39.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:39.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:39.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-app.apeiwan.com/login
[2021-08-02 16:10:39.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-app.apeiwan.com/login
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-02 16:10:39.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:39.205] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:39.283] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:39.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:39.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:10:39.284] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:39.285] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:10:39.285] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:39.285] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:10:39.285] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-02 16:10:39.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:39 GMT
[2021-08-02 16:10:39.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:10:39.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:39.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:39.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"195822230","nickname":"test","id":3222859,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"d7f66b8fd74d4ed5916ad50fa4422e44","updateTime":"2021-05-21 17:36:09","imId":"3222859_20210521","token":"APP-9e95a104634c4b1bb6d953d6f7088fc5#3222859","createTime":"2021-05-21 17:36:09","newUser":false,"status":1},"status":200}
[2021-08-02 16:10:39.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:39.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:39.294] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-02 16:10:39:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-08-02 16:10:39.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:10:39.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:39.377] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:39.377] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:39.378] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/user/list
[2021-08-02 16:10:39.378] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:10:39.378] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:39.378] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d16d638ade1147cbb8243f8af37c46c9
[2021-08-02 16:10:39.379] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:10:39.379] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:39.379] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-02 16:10:39.380] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:39.380] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-02 16:10:39.380] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:39.380] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:39.461] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:39 GMT
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3222874,"chargeBalance":3.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-06-25 15:06:56","userInfoAuth":0,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18376254","userCode":"147822230","loginTime":"2021-06-25 15:06:55","nickname":"test","registIp":"61.183.246.70","virtualBalance":123894,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"dc91e90d07794dedb1e980491f318895","updateTime":"2021-05-26 14:51:34","quickServerStatus":0,"imId":"3222874_20210526","scoreAvg":4.0,"charm":0,"createTime":"2021-05-26 14:51:34","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:39.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:39.463] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-08-02 16:10:39.463] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d16d638ade1147cbb8243f8af37c46c9
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774134, nickname=test, remark=1, chargeBalance=3.00, userId=3222874, searchValue=3222874}
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=test&remark=1&chargeBalance=3.00&userId=3222874&searchValue=3222874
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:39.571] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-02 16:10:44.579] [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 sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
at sun.security.ssl.InputRecord.read(InputRecord.java:503)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)
at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)
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 sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.moneyDetailsSave(CosPlyaPlayerServiceImpl.java:304)
at com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave(CosPlayerTest.java:81)
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.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
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.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
[2021-08-02 16:10:44.581] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:44.583] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testMoneyDetailsSave--Test Mthod Failure
[2021-08-02 16:10:44.583] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-08-02 16:10:44:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-08-02 16:10:44.583] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 05秒289毫秒======
[2021-08-02 16:10:44.594] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:10:44.594] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:44.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:44.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:44.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-08-02 16:10:39:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t6-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"d16d638ade1147cbb8243f8af37c46c9\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 02 Aug 2021 08:10:39 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3222874,\"chargeBalance\":3.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-06-25 15:06:56\",\"userInfoAuth\":0,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18376254\",\"userCode\":\"147822230\",\"loginTime\":\"2021-06-25 15:06:55\",\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":123894,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"dc91e90d07794dedb1e980491f318895\",\"updateTime\":\"2021-05-26 14:51:34\",\"quickServerStatus\":0,\"imId\":\"3222874_20210526\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-26 14:51:34\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-02 16:10:44:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 05秒289毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t6-api-admin.apeiwan.com/api/v1/moneyDetails/save,异常信息:Read 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.moneyDetailsSave(CosPlyaPlayerServiceImpl.java:304)\r\n\tat com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave(CosPlayerTest.java:81)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\nCaused by: java.net.SocketTimeoutException: Read timed out\r\n\tat java.net.SocketInputStream.socketRead0(Native Method)\r\n\tat java.net.SocketInputStream.socketRead(SocketInputStream.java:116)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:171)\r\n\tat java.net.SocketInputStream.read(SocketInputStream.java:141)\r\n\tat sun.security.ssl.InputRecord.readFully(InputRecord.java:465)\r\n\tat sun.security.ssl.InputRecord.read(InputRecord.java:503)\r\n\tat sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:975)\r\n\tat sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:933)\r\n\tat sun.security.ssl.AppInputStream.read(AppInputStream.java:105)\r\n\tat java.io.BufferedInputStream.fill(BufferedInputStream.java:246)\r\n\tat java.io.BufferedInputStream.read1(BufferedInputStream.java:286)\r\n\tat java.io.BufferedInputStream.read(BufferedInputStream.java:345)\r\n\tat sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)\r\n\tat sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1587)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492)\r\n\tat java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:255)\r\n\t... 31 more\r\n","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"05秒289毫秒","endTime":"2021-08-02 16:10:44","id":0,"serviceId":1,"startTime":"2021-08-02 16:10:39","status":2}
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:10:44.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:44 GMT
[2021-08-02 16:10:44.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:10:44.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:44.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:44.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:10:44.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:44.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:49.794] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testMoneyDetailsSave
[2021-08-02 16:10:49.794] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-08-02 16:10:49.794] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:1
[2021-08-02 16:10:49.794] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-02 16:10:49.798] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-02 16:10:49.798] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-02 16:10:49.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-02 16:10:49.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-02 16:10:49.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-02 16:10:49.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-02 16:10:49.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-02 16:10:49.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-02 16:10:49.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-02 16:10:49.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-02 16:10:49.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-02 16:10:49.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-02 16:10:49.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-02 16:10:49.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-02 16:10:49.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-02 16:10:49.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"11秒654毫秒","endTime":"2021-08-02 16:10:49","env":"t6","failed":1,"id":0,"passed":0,"serviceId":1,"skipped":0,"startTime":"2021-08-02 16:10:38","status":2,"teamId":0,"total":1}
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 02 Aug 2021 08:10:50 GMT
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-02 16:10:50.223] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-02 16:10:50.224] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-02 16:10:49:测试集结束======
[2021-08-02 16:10:50.224] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 11秒654毫秒======