debug.log
558 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
[2021-08-31 15:13:11.934] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 15:13:12.002] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 15:13:12:测试集开始======
[2021-08-31 15:13:12.240] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 15:13:12.358] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:12.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:12.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:12.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 15:13:12.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:12.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:12.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:12.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:12.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-08-31 15:13:12.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:12.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-08-31 15:13:12.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:12.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:12.861] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:12.861] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:12.861] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:12.861] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:12.861] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:12.861] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:12.862] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:12.862] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-08-31 15:13:12.862] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:13 GMT
[2021-08-31 15:13:12.862] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:12.862] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:12.862] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:12.862] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"b21ece805d284fc58c5e869c836a610b","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-08-31 15:13:12.862] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:12.863] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:12.864] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:13:12.864] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:13.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:13.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:13.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:13.127] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:13 GMT
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:13.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:13.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:13:13.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:13.246] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:13.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:13.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:13:13.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:13.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:13.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:13.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:13.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-31 15:13:13.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:13.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-31 15:13:13.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:13.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:13.656] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:936
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:14 GMT
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":0,"platformAuth":0,"type":1,"userCode":"115032550","nickname":"沉着的电脑","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","imId":"5523051_20210831","token":"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051","createTime":"2021-08-31 11:13:53","newUser":false,"status":1},"status":200}
[2021-08-31 15:13:13.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:13.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:13.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:13:13.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:13.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:13.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:13.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:13:13.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:13.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:13.806] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:13.806] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:13.806] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-31 15:13:13.806] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:13.806] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-31 15:13:13.806] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:13.806] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:13.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:13.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:13.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:13.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:13.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:13.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:13.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:14 GMT
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:13:13.905] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:14.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:14.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:14.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:13:14.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:14.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:14.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:14.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:14.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-31 15:13:14.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:14.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-31 15:13:14.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:14.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:14.148] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:14.148] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:14.148] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:14.148] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:931
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:14 GMT
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"platformAuth":0,"type":2,"userCode":"125032550","nickname":"test","id":5523052,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","imId":"5523052_20210831","token":"APP-7740a404412e4e98a7fa7ce69a473a9f#5523052","createTime":"2021-08-31 11:13:54","newUser":false,"status":1},"status":200}
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:14.149] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:14.154] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:14:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-08-31 15:13:14.157] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-08-31 15:13:14.157] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:14.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:14.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:14.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-08-31 15:13:14.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:14.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:14.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:14.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:14.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:14.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-08-31 15:13:14.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:14.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-08-31 15:13:14.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:14.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:14.594] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:14.594] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:14.594] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:14.594] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:14.594] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:14.594] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:14.594] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:14.595] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:14.595] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:15 GMT
[2021-08-31 15:13:14.595] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:14.595] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:14.595] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:14.595] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"sort desc","endRow":9,"list":[{"remark":"","openedTimes":140294,"staticUrl":"null","delFlag":false,"ruleStatus":1,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\",\"decorationId\":365,\"decorationName\":\"萌小兔座位框\"}","lotteryRules":"[{\"amount\":210,\"endTime\":1943313072000,\"id\":6323,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1427,\"name\":\"许愿瓶\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":266,\"endTime\":1943313072000,\"id\":6324,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1428,\"name\":\"喵克里里\",\"perCount\":82,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":406,\"endTime\":1943313072000,\"id\":6325,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1429,\"name\":\"林中鹿\",\"perCount\":120,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":520,\"endTime\":1943313072000,\"id\":6326,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1430,\"name\":\"流光溢彩\",\"perCount\":190,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":999,\"endTime\":1943313072000,\"id\":6327,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1431,\"name\":\"小精灵\",\"perCount\":180,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1314,\"endTime\":1943313072000,\"id\":6328,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1432,\"name\":\"环游星河\",\"perCount\":40,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":5200,\"endTime\":1943313072000,\"id\":6329,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1433,\"name\":\"恋爱星球\",\"perCount\":5,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":13140,\"endTime\":1943313072000,\"id\":6330,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1434,\"name\":\"逐爱星辰\",\"perCount\":3,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":66666,\"endTime\":1943313072000,\"id\":6332,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1435,\"name\":\"时光之恋\",\"perCount\":1,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":18888,\"endTime\":1943313072000,\"id\":6331,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1436,\"name\":\"魅力值礼物-爱恋之城\",\"perCount\":2,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":189,"operatorId":25,"rewardLotteryCount":140294,"openRewardDiamonds":133116134,"objectGifUrl":"null","updateTime":"2021-06-25 16:06:56","sort":121,"labelUrl":"null","version":1,"gifUrl":"null","remainLotteryDiamonds":614599,"openPayDiamonds":68030,"createTime":"2021-05-24 12:04:17","name":"梦幻糖果机","remainLotteryCount":683,"endTime":"2031-08-01 09:11:12","activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":819103,"staticUrl":"null","delFlag":false,"ruleStatus":1,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\",\"decorationId\":224,\"decorationName\":\"绚烂阳光座位框\"}","lotteryRules":"[{\"amount\":21,\"endTime\":1943313072000,\"id\":5842,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1414,\"name\":\"礼物-蓝色焰火*\",\"perCount\":392,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":30,\"endTime\":1943313072000,\"id\":5843,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1415,\"name\":\"礼物-小礼花*\",\"perCount\":440,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":52,\"endTime\":1943313072000,\"id\":5844,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1416,\"name\":\"礼物-点赞*\",\"perCount\":400,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":66,\"endTime\":1943313072000,\"id\":5845,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1417,\"name\":\"礼物-乐符*\",\"perCount\":350,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":99,\"endTime\":1943313072000,\"id\":5846,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1418,\"name\":\"礼物-水晶瓶*\",\"perCount\":250,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":213,\"endTime\":1943313072000,\"id\":5847,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1419,\"name\":\"礼物-天鹅之恋*\",\"perCount\":120,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":520,\"endTime\":1943313072000,\"id\":5848,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1420,\"name\":\"天生一对\",\"perCount\":30,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1314,\"endTime\":1943313072000,\"id\":5849,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1421,\"name\":\"一生有你\",\"perCount\":5,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":5200,\"endTime\":1943313072000,\"id\":5850,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1422,\"name\":\"为你摘星\",\"perCount\":4,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":2000,\"endTime\":1943313072000,\"id\":5851,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1423,\"name\":\"礼物-梦幻奇遇*\",\"perCount\":4,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":188,"operatorId":25,"rewardLotteryCount":819103,"openRewardDiamonds":72553941,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:19","sort":120,"labelUrl":"null","version":1,"gifUrl":"null","remainLotteryDiamonds":157282,"openPayDiamonds":123607,"createTime":"2021-05-24 11:55:16","name":"甜心糖果机","remainLotteryCount":1821,"endTime":"2031-08-01 09:11:12","activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":5,"staticUrl":"null","delFlag":false,"ruleStatus":1,"operatorName":"张迪","coverThreshold":0,"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"endTime\":1943313072000,\"id\":6694,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1289,\"name\":\"礼物-小开心\",\"perCount\":40,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1,\"endTime\":1943313072000,\"id\":6695,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1290,\"name\":\"礼物-小蛋糕\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1,\"endTime\":1943313072000,\"id\":6696,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1291,\"name\":\"礼物-小嘎嘎\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":5,\"endTime\":1943313072000,\"id\":6697,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1292,\"name\":\"礼物-鼓掌\",\"perCount\":100,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":157,"operatorId":139,"rewardLotteryCount":5,"openRewardDiamonds":5,"objectGifUrl":"null","updateTime":"2021-07-31 15:37:39","sort":113,"labelUrl":"null","version":1,"gifUrl":"null","remainLotteryDiamonds":775,"openPayDiamonds":0,"createTime":"2021-04-28 14:38:56","name":"梦幻测试","remainLotteryCount":295,"endTime":"2031-08-01 09:11:12","activityType":1,"priceRules":"[{\"price\":2,\"times\":1},{\"price\":10,\"times\":5},{\"price\":20,\"times\":10}]","isActivate":false,"status":0},{"remark":"","openedTimes":61,"delFlag":false,"ruleStatus":1,"operatorName":"张迪","coverThreshold":0,"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"endTime\":1943313072000,\"id\":6698,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1285,\"name\":\"礼物-甜甜草莓\",\"perCount\":40,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1,\"endTime\":1943313072000,\"id\":6699,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1286,\"name\":\"礼物-荧光棒\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1,\"endTime\":1943313072000,\"id\":6700,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1287,\"name\":\"礼物-萤火虫\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":7,\"endTime\":1943313072000,\"id\":6701,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1288,\"name\":\"礼物-小花朵\",\"perCount\":100,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":156,"operatorId":139,"rewardLotteryCount":61,"openRewardDiamonds":95,"updateTime":"2021-07-31 15:38:13","sort":111,"labelUrl":"","version":1,"remainLotteryDiamonds":1585,"openPayDiamonds":14,"createTime":"2021-04-28 14:37:13","name":"甜心测试","remainLotteryCount":339,"endTime":"2031-08-01 09:11:12","activityType":1,"priceRules":"[{\"price\":1,\"times\":1},{\"price\":5,\"times\":5},{\"price\":10,\"times\":10}]","isActivate":false,"status":0},{"remark":"","openedTimes":1709740,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/1c8c826736504450b1264ca94afefddd.png","delFlag":false,"ruleStatus":1,"operatorName":"张迪","lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/9/ae6c941f02ad40b48434702e24d30b47.png","lotteryActivityId":218,"createTime":"2021-08-01 19:45:57","id":150,"content":"","activityH5Url":"https://html-public.apeiwan.com/article/20210613/index.html","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/14/3b4d53610c82490b954de52a0b8059fb.png\",\"decorationId\":447,\"decorationName\":\"海心座位框\"}","lotteryRules":"[{\"amount\":26,\"endTime\":1943313072000,\"id\":6359,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1545,\"name\":\"魅力值礼物-一条咸鱼\",\"perCount\":383,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":36,\"endTime\":1943313072000,\"id\":6360,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1546,\"name\":\"礼物-水果冰棒*\",\"perCount\":450,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":52,\"endTime\":1943313072000,\"id\":6361,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1547,\"name\":\"礼物-小熊风扇*\",\"perCount\":470,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":99,\"endTime\":1943313072000,\"id\":6362,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1548,\"name\":\"礼物-冰镇西瓜*\",\"perCount\":391,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":109,\"endTime\":1943313072000,\"id\":6363,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1549,\"name\":\"礼物-加油鸭*\",\"perCount\":200,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":365,\"endTime\":1943313072000,\"id\":6364,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1550,\"name\":\"礼物-惬意一下*\",\"perCount\":80,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":1099,\"endTime\":1943313072000,\"id\":6365,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1551,\"name\":\"魅力值礼物-夏日凉爽\",\"perCount\":22,\"ruleStatus\":1,\"startTime\":1627780272000},{\"amount\":7777,\"endTime\":1943313072000,\"id\":6366,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1570,\"name\":\"礼物-游艇派对*\",\"perCount\":4,\"ruleStatus\":1,\"startTime\":1627780272000}]","startTime":"2021-08-01 09:11:12","id":218,"operatorId":139,"rewardLotteryCount":1709740,"openRewardDiamonds":170877897,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/a36e814bedac49e4a519cb061ace8147.svga","updateTime":"2021-08-01 19:45:58","sort":61,"labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/474d3470afd348adbcf50daca5c74479.png","version":1,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/90a9f35a3a7542a5a8101116193beb38.webp","remainLotteryDiamonds":147294,"openPayDiamonds":169264260,"createTime":"2021-06-14 15:19:22","name":"夏日流星瓶","remainLotteryCount":1460,"endTime":"2031-08-01 09:11:12","activityType":1,"priceRules":"[{\"price\":99,\"times\":1},{\"price\":495,\"times\":5},{\"price\":990,\"times\":10}]","isActivate":true,"status":1},{"objectVapUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/a7ad4be1ddf24e0f85b914b4bf568ae8.mp4","remark":"","openedTimes":7818636,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/f75799a20219443b8791f4a5e5edf074.png","delFlag":false,"ruleStatus":2,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/13/ab29558d514d449998ba3a77dc35923e.png","lotteryActivityId":152,"createTime":"2021-08-02 09:08:43","id":152,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":3,\"endTime\":1696089599000,\"id\":7082,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1789,\"name\":\"魅力值礼物-小开心\",\"perCount\":1400,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":5,\"endTime\":1696089599000,\"id\":7081,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1790,\"name\":\"魅力值礼物-鼓掌\",\"perCount\":900,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":7,\"endTime\":1696089599000,\"id\":7080,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1791,\"name\":\"魅力值礼物-小花朵\",\"perCount\":900,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":8,\"endTime\":1696089599000,\"id\":7079,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1792,\"name\":\"魅力值礼物-四叶草\",\"perCount\":500,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":10,\"endTime\":1696089599000,\"id\":7078,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1793,\"name\":\"魅力值礼物-小可乐\",\"perCount\":480,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":21,\"endTime\":1696089599000,\"id\":7077,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1794,\"name\":\"魅力值礼物-甜甜圈\",\"perCount\":420,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":26,\"endTime\":1696089599000,\"id\":7076,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1795,\"name\":\"魅力值礼物-一条咸鱼\",\"perCount\":290,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":36,\"endTime\":1696089599000,\"id\":7075,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1796,\"name\":\"魅力值礼物-水果冰棒\",\"perCount\":55,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":52,\"endTime\":1696089599000,\"id\":7074,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1797,\"name\":\"魅力值礼物-小熊风扇\",\"perCount\":40,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":300,\"endTime\":1696089599000,\"id\":7073,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1798,\"name\":\"魅力值礼物-粉色情书\",\"perCount\":10,\"ruleStatus\":2,\"startTime\":1628849700000},{\"amount\":500,\"endTime\":1696089599000,\"id\":7072,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1799,\"name\":\"魅力值礼物-流光宝瓶\",\"perCount\":5,\"ruleStatus\":2,\"startTime\":1628849700000}]","startTime":"2021-08-13 18:15:00","id":152,"operatorId":139,"rewardLotteryCount":7818636,"openRewardDiamonds":78337346,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga","updateTime":"2021-08-13 18:02:49","sort":60,"labelUrl":"","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/35e5b6de04614e7aba6e62507bf694ca.webp","remainLotteryDiamonds":64090,"openPayDiamonds":78186320,"createTime":"2021-04-23 18:20:19","name":"普通祈愿","remainLotteryCount":6811,"endTime":"2023-09-30 23:59:59","activityType":1,"priceRules":"[{\"price\":10,\"times\":1},{\"price\":50,\"times\":5},{\"price\":100,\"times\":10}]","isActivate":true,"status":1},{"objectVapUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/8a036751310a47b59d83767f0bd83805.mp4","remark":"","openedTimes":683769,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d839550c64084898b321c8e3c0ba264f.png","delFlag":false,"ruleStatus":2,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/412f9b9d3e014b8f8b326feff6de672a.png","lotteryActivityId":153,"createTime":"2021-08-02 09:25:48","id":153,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":99,\"endTime\":1696089599000,\"id\":7122,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1778,\"name\":\"魅力值礼物-幸运铃\",\"perCount\":450,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":106,\"endTime\":1696089599000,\"id\":7121,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1779,\"name\":\"魅力值礼物-变瘦药水\",\"perCount\":350,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":122,\"endTime\":1696089599000,\"id\":7120,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1780,\"name\":\"魅力值礼物-告白气球\",\"perCount\":300,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":155,\"endTime\":1696089599000,\"id\":7119,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1781,\"name\":\"魅力值礼物-雨梦精灵\",\"perCount\":300,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":199,\"endTime\":1696089599000,\"id\":7118,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1782,\"name\":\"魅力值礼物-桃花水晶\",\"perCount\":200,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":299,\"endTime\":1696089599000,\"id\":7117,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1783,\"name\":\"魅力值礼物-万箭穿心\",\"perCount\":190,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":333,\"endTime\":1696089599000,\"id\":7116,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1784,\"name\":\"魅力值礼物-亲亲热热\",\"perCount\":100,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":388,\"endTime\":1696089599000,\"id\":7115,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1785,\"name\":\"魅力值礼物-魔力娃娃\",\"perCount\":90,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":999,\"endTime\":1696089599000,\"id\":7114,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1786,\"name\":\"魅力值礼物-破茧成蝶\",\"perCount\":13,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":5970,\"endTime\":1696089599000,\"id\":7113,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1787,\"name\":\"魅力值礼物-偷星大盗\",\"perCount\":5,\"ruleStatus\":2,\"startTime\":1628960700000},{\"amount\":9999,\"endTime\":1696089599000,\"id\":7112,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1788,\"name\":\"魅力值礼物-心愿马车\",\"perCount\":2,\"ruleStatus\":2,\"startTime\":1628960700000}]","startTime":"2021-08-15 01:05:00","id":153,"operatorId":139,"rewardLotteryCount":683769,"openRewardDiamonds":152921018,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga","updateTime":"2021-08-15 01:03:05","sort":59,"labelUrl":"","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/00a636de2f204339a1c61dc1acefe9b3.webp","remainLotteryDiamonds":764047,"openPayDiamonds":143589390,"createTime":"2021-04-23 18:37:26","name":"白银祈愿","remainLotteryCount":3751,"endTime":"2023-09-30 23:59:59","activityType":1,"priceRules":"[{\"price\":199,\"times\":1},{\"price\":995,\"times\":5},{\"price\":1990,\"times\":10}]","isActivate":true,"status":1},{"objectVapUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d185125a633b48a7855344422a77f004.mp4","remark":"","openedTimes":380443,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/df5175700b4749d4abf21eec3469e77b.png","delFlag":false,"ruleStatus":2,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/6abd2754b9c8431582c7ea6ebfda0404.png","lotteryActivityId":154,"createTime":"2021-08-02 14:25:04","id":154,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\",\"decorationId\":231,\"decorationName\":\"耀金座位框\"}","lotteryRules":"[{\"amount\":199,\"endTime\":1696089599000,\"id\":7143,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1814,\"name\":\"魅力值礼物-桃花水晶\",\"perCount\":490,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":222,\"endTime\":1696089599000,\"id\":7144,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1815,\"name\":\"魅力值礼物-广寒月\",\"perCount\":370,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":300,\"endTime\":1696089599000,\"id\":7145,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1816,\"name\":\"魅力值礼物-飞鸽传书\",\"perCount\":320,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":365,\"endTime\":1696089599000,\"id\":7146,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1817,\"name\":\"魅力值礼物-惬意一下\",\"perCount\":200,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":406,\"endTime\":1696089599000,\"id\":7147,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1818,\"name\":\"魅力值礼物-林中鹿\",\"perCount\":340,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":520,\"endTime\":1696089599000,\"id\":7148,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1819,\"name\":\"魅力值礼物-流光溢彩\",\"perCount\":170,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":999,\"endTime\":1696089599000,\"id\":7149,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1820,\"name\":\"魅力值礼物-圆梦精灵\",\"perCount\":86,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":1314,\"endTime\":1696089599000,\"id\":7150,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1821,\"name\":\"魅力值礼物-环游星河\",\"perCount\":12,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":2666,\"endTime\":1696089599000,\"id\":7151,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1822,\"name\":\"魅力值礼物-风崖闻铃\",\"perCount\":8,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":13140,\"endTime\":1696089599000,\"id\":7152,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1823,\"name\":\"魅力值礼物-逐爱星辰\",\"perCount\":4,\"ruleStatus\":2,\"startTime\":1629018000000},{\"amount\":20010,\"endTime\":1696089599000,\"id\":7153,\"isNotice\":1,\"isReward\":1,\"lotteryId\":1824,\"name\":\"魅力值礼物-爱境仙池\",\"perCount\":2,\"ruleStatus\":2,\"startTime\":1629018000000}]","startTime":"2021-08-15 17:00:00","id":154,"operatorId":139,"rewardLotteryCount":380443,"openRewardDiamonds":263397644,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga","updateTime":"2021-08-15 18:41:55","sort":58,"labelUrl":"","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/e9448d6f0c2e4e5f80918bea1a9fda5c.webp","remainLotteryDiamonds":1109300,"openPayDiamonds":253375038,"createTime":"2021-04-23 18:49:41","name":"黄金祈愿","remainLotteryCount":1912,"endTime":"2023-09-30 23:59:59","activityType":1,"priceRules":"[{\"price\":399,\"times\":1},{\"price\":1995,\"times\":5},{\"price\":3990,\"times\":10}]","isActivate":true,"status":1},{"objectVapUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/5c31fdab34fc46e899a45bdda9012f03.mp4","remark":"","openedTimes":635827,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d1e55a78701b4298b013049d9ac8bed1.png","delFlag":false,"ruleStatus":2,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/9/3cec148fbc2347f187fd233785f32908.png","lotteryActivityId":155,"createTime":"2021-08-02 17:39:05","id":155,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\",\"decorationId\":232,\"decorationName\":\"幻尊座位框\"}","lotteryRules":"[{\"amount\":388,\"endTime\":1696089599000,\"id\":7035,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1768,\"name\":\"魅力值礼物-魔力娃娃\",\"perCount\":500,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":455,\"endTime\":1696089599000,\"id\":7036,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1769,\"name\":\"魅力值礼物-魔法手杖\",\"perCount\":450,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":568,\"endTime\":1696089599000,\"id\":7037,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1770,\"name\":\"魅力值礼物-鎏金百合\",\"perCount\":340,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":666,\"endTime\":1696089599000,\"id\":7038,\"isNotice\":0,\"isReward\":0,\"lotteryId\":1771,\"name\":\"魅力值礼物-魔法喵喵\",\"perCount\":220,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":999,\"endTime\":1696089599000,\"id\":7039,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1772,\"name\":\"魅力值礼物-破茧成蝶\",\"perCount\":200,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":1199,\"endTime\":1696089599000,\"id\":7040,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1773,\"name\":\"魅力值礼物-白马王子\",\"perCount\":200,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":1688,\"endTime\":1696089599000,\"id\":7041,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1774,\"name\":\"魅力值礼物-天使之翼\",\"perCount\":58,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":6666,\"endTime\":1696089599000,\"id\":7042,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1775,\"name\":\"魅力值礼物-恶魔之翼\",\"perCount\":14,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":9999,\"endTime\":1696089599000,\"id\":7043,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1776,\"name\":\"魅力值礼物-毁灭魔法\",\"perCount\":10,\"ruleStatus\":2,\"startTime\":1628780700000},{\"amount\":58888,\"endTime\":1696089599000,\"id\":7044,\"isNotice\":1,\"isReward\":0,\"lotteryId\":1777,\"name\":\"魅力值礼物-浴火凤凰\",\"perCount\":8,\"ruleStatus\":2,\"startTime\":1628780700000}]","startTime":"2021-08-12 23:05:00","id":155,"operatorId":139,"rewardLotteryCount":635827,"openRewardDiamonds":629272159,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga","updateTime":"2021-08-12 23:38:10","sort":57,"labelUrl":"","version":0,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/4debd04e5a1f4030ae49f2deed0c0353.webp","remainLotteryDiamonds":3288679,"openPayDiamonds":635191173,"createTime":"2021-04-23 19:19:29","name":"魔幻祈愿","remainLotteryCount":3285,"endTime":"2023-09-30 23:59:59","activityType":1,"priceRules":"[{\"price\":999,\"times\":1},{\"price\":4995,\"times\":5},{\"price\":9990,\"times\":10}]","isActivate":true,"status":1}],"pageNum":1,"navigatePages":8,"total":9,"pages":1,"size":9,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:14.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:14.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:14.599] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-08-31 15:13:14.599] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:14:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-08-31 15:13:14.600] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 445毫秒======
[2021-08-31 15:13:14.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:14.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:14.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:14.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:14.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:14.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:14.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:14.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:14.635] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:14.635] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:14.635] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:14.635] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:14.635] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:14.635] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-08-31 15:13:14:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"activityType\":\"1\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&activityType=1&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:15 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":9,\"list\":[{\"remark\":\"\",\"openedTimes\":140294,\"staticUrl\":\"null\",\"delFlag\":false,\"ruleStatus\":1,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\\\",\\\"decorationId\\\":365,\\\"decorationName\\\":\\\"萌小兔座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":210,\\\"endTime\\\":1943313072000,\\\"id\\\":6323,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1427,\\\"name\\\":\\\"许愿瓶\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":266,\\\"endTime\\\":1943313072000,\\\"id\\\":6324,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1428,\\\"name\\\":\\\"喵克里里\\\",\\\"perCount\\\":82,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":406,\\\"endTime\\\":1943313072000,\\\"id\\\":6325,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1429,\\\"name\\\":\\\"林中鹿\\\",\\\"perCount\\\":120,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":520,\\\"endTime\\\":1943313072000,\\\"id\\\":6326,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1430,\\\"name\\\":\\\"流光溢彩\\\",\\\"perCount\\\":190,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":999,\\\"endTime\\\":1943313072000,\\\"id\\\":6327,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1431,\\\"name\\\":\\\"小精灵\\\",\\\"perCount\\\":180,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1314,\\\"endTime\\\":1943313072000,\\\"id\\\":6328,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1432,\\\"name\\\":\\\"环游星河\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":5200,\\\"endTime\\\":1943313072000,\\\"id\\\":6329,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1433,\\\"name\\\":\\\"恋爱星球\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":13140,\\\"endTime\\\":1943313072000,\\\"id\\\":6330,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1434,\\\"name\\\":\\\"逐爱星辰\\\",\\\"perCount\\\":3,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":66666,\\\"endTime\\\":1943313072000,\\\"id\\\":6332,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1435,\\\"name\\\":\\\"时光之恋\\\",\\\"perCount\\\":1,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":18888,\\\"endTime\\\":1943313072000,\\\"id\\\":6331,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1436,\\\"name\\\":\\\"魅力值礼物-爱恋之城\\\",\\\"perCount\\\":2,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":189,\"operatorId\":25,\"rewardLotteryCount\":140294,\"openRewardDiamonds\":133116134,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-06-25 16:06:56\",\"sort\":121,\"labelUrl\":\"null\",\"version\":1,\"gifUrl\":\"null\",\"remainLotteryDiamonds\":614599,\"openPayDiamonds\":68030,\"createTime\":\"2021-05-24 12:04:17\",\"name\":\"梦幻糖果机\",\"remainLotteryCount\":683,\"endTime\":\"2031-08-01 09:11:12\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":819103,\"staticUrl\":\"null\",\"delFlag\":false,\"ruleStatus\":1,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\\\",\\\"decorationId\\\":224,\\\"decorationName\\\":\\\"绚烂阳光座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":21,\\\"endTime\\\":1943313072000,\\\"id\\\":5842,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1414,\\\"name\\\":\\\"礼物-蓝色焰火*\\\",\\\"perCount\\\":392,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":30,\\\"endTime\\\":1943313072000,\\\"id\\\":5843,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1415,\\\"name\\\":\\\"礼物-小礼花*\\\",\\\"perCount\\\":440,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":52,\\\"endTime\\\":1943313072000,\\\"id\\\":5844,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1416,\\\"name\\\":\\\"礼物-点赞*\\\",\\\"perCount\\\":400,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":66,\\\"endTime\\\":1943313072000,\\\"id\\\":5845,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1417,\\\"name\\\":\\\"礼物-乐符*\\\",\\\"perCount\\\":350,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":99,\\\"endTime\\\":1943313072000,\\\"id\\\":5846,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1418,\\\"name\\\":\\\"礼物-水晶瓶*\\\",\\\"perCount\\\":250,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":213,\\\"endTime\\\":1943313072000,\\\"id\\\":5847,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1419,\\\"name\\\":\\\"礼物-天鹅之恋*\\\",\\\"perCount\\\":120,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":520,\\\"endTime\\\":1943313072000,\\\"id\\\":5848,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1420,\\\"name\\\":\\\"天生一对\\\",\\\"perCount\\\":30,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1314,\\\"endTime\\\":1943313072000,\\\"id\\\":5849,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1421,\\\"name\\\":\\\"一生有你\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":5200,\\\"endTime\\\":1943313072000,\\\"id\\\":5850,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1422,\\\"name\\\":\\\"为你摘星\\\",\\\"perCount\\\":4,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":2000,\\\"endTime\\\":1943313072000,\\\"id\\\":5851,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1423,\\\"name\\\":\\\"礼物-梦幻奇遇*\\\",\\\"perCount\\\":4,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":188,\"operatorId\":25,\"rewardLotteryCount\":819103,\"openRewardDiamonds\":72553941,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:19\",\"sort\":120,\"labelUrl\":\"null\",\"version\":1,\"gifUrl\":\"null\",\"remainLotteryDiamonds\":157282,\"openPayDiamonds\":123607,\"createTime\":\"2021-05-24 11:55:16\",\"name\":\"甜心糖果机\",\"remainLotteryCount\":1821,\"endTime\":\"2031-08-01 09:11:12\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":5,\"staticUrl\":\"null\",\"delFlag\":false,\"ruleStatus\":1,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"endTime\\\":1943313072000,\\\"id\\\":6694,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1289,\\\"name\\\":\\\"礼物-小开心\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1,\\\"endTime\\\":1943313072000,\\\"id\\\":6695,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1290,\\\"name\\\":\\\"礼物-小蛋糕\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1,\\\"endTime\\\":1943313072000,\\\"id\\\":6696,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1291,\\\"name\\\":\\\"礼物-小嘎嘎\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":5,\\\"endTime\\\":1943313072000,\\\"id\\\":6697,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1292,\\\"name\\\":\\\"礼物-鼓掌\\\",\\\"perCount\\\":100,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":157,\"operatorId\":139,\"rewardLotteryCount\":5,\"openRewardDiamonds\":5,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-07-31 15:37:39\",\"sort\":113,\"labelUrl\":\"null\",\"version\":1,\"gifUrl\":\"null\",\"remainLotteryDiamonds\":775,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:38:56\",\"name\":\"梦幻测试\",\"remainLotteryCount\":295,\"endTime\":\"2031-08-01 09:11:12\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":2,\\\"times\\\":1},{\\\"price\\\":10,\\\"times\\\":5},{\\\"price\\\":20,\\\"times\\\":10}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":61,\"delFlag\":false,\"ruleStatus\":1,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"endTime\\\":1943313072000,\\\"id\\\":6698,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1285,\\\"name\\\":\\\"礼物-甜甜草莓\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1,\\\"endTime\\\":1943313072000,\\\"id\\\":6699,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1286,\\\"name\\\":\\\"礼物-荧光棒\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1,\\\"endTime\\\":1943313072000,\\\"id\\\":6700,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1287,\\\"name\\\":\\\"礼物-萤火虫\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":7,\\\"endTime\\\":1943313072000,\\\"id\\\":6701,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1288,\\\"name\\\":\\\"礼物-小花朵\\\",\\\"perCount\\\":100,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":156,\"operatorId\":139,\"rewardLotteryCount\":61,\"openRewardDiamonds\":95,\"updateTime\":\"2021-07-31 15:38:13\",\"sort\":111,\"labelUrl\":\"\",\"version\":1,\"remainLotteryDiamonds\":1585,\"openPayDiamonds\":14,\"createTime\":\"2021-04-28 14:37:13\",\"name\":\"甜心测试\",\"remainLotteryCount\":339,\"endTime\":\"2031-08-01 09:11:12\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":1,\\\"times\\\":1},{\\\"price\\\":5,\\\"times\\\":5},{\\\"price\\\":10,\\\"times\\\":10}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":1709740,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/1c8c826736504450b1264ca94afefddd.png\",\"delFlag\":false,\"ruleStatus\":1,\"operatorName\":\"张迪\",\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/9/ae6c941f02ad40b48434702e24d30b47.png\",\"lotteryActivityId\":218,\"createTime\":\"2021-08-01 19:45:57\",\"id\":150,\"content\":\"\",\"activityH5Url\":\"https://html-public.apeiwan.com/article/20210613/index.html\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/14/3b4d53610c82490b954de52a0b8059fb.png\\\",\\\"decorationId\\\":447,\\\"decorationName\\\":\\\"海心座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":26,\\\"endTime\\\":1943313072000,\\\"id\\\":6359,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1545,\\\"name\\\":\\\"魅力值礼物-一条咸鱼\\\",\\\"perCount\\\":383,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":36,\\\"endTime\\\":1943313072000,\\\"id\\\":6360,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1546,\\\"name\\\":\\\"礼物-水果冰棒*\\\",\\\"perCount\\\":450,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":52,\\\"endTime\\\":1943313072000,\\\"id\\\":6361,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1547,\\\"name\\\":\\\"礼物-小熊风扇*\\\",\\\"perCount\\\":470,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":99,\\\"endTime\\\":1943313072000,\\\"id\\\":6362,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1548,\\\"name\\\":\\\"礼物-冰镇西瓜*\\\",\\\"perCount\\\":391,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":109,\\\"endTime\\\":1943313072000,\\\"id\\\":6363,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1549,\\\"name\\\":\\\"礼物-加油鸭*\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":365,\\\"endTime\\\":1943313072000,\\\"id\\\":6364,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1550,\\\"name\\\":\\\"礼物-惬意一下*\\\",\\\"perCount\\\":80,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":1099,\\\"endTime\\\":1943313072000,\\\"id\\\":6365,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1551,\\\"name\\\":\\\"魅力值礼物-夏日凉爽\\\",\\\"perCount\\\":22,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000},{\\\"amount\\\":7777,\\\"endTime\\\":1943313072000,\\\"id\\\":6366,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1570,\\\"name\\\":\\\"礼物-游艇派对*\\\",\\\"perCount\\\":4,\\\"ruleStatus\\\":1,\\\"startTime\\\":1627780272000}]\",\"startTime\":\"2021-08-01 09:11:12\",\"id\":218,\"operatorId\":139,\"rewardLotteryCount\":1709740,\"openRewardDiamonds\":170877897,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/a36e814bedac49e4a519cb061ace8147.svga\",\"updateTime\":\"2021-08-01 19:45:58\",\"sort\":61,\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/474d3470afd348adbcf50daca5c74479.png\",\"version\":1,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/14/90a9f35a3a7542a5a8101116193beb38.webp\",\"remainLotteryDiamonds\":147294,\"openPayDiamonds\":169264260,\"createTime\":\"2021-06-14 15:19:22\",\"name\":\"夏日流星瓶\",\"remainLotteryCount\":1460,\"endTime\":\"2031-08-01 09:11:12\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":99,\\\"times\\\":1},{\\\"price\\\":495,\\\"times\\\":5},{\\\"price\\\":990,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"objectVapUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/a7ad4be1ddf24e0f85b914b4bf568ae8.mp4\",\"remark\":\"\",\"openedTimes\":7818636,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/f75799a20219443b8791f4a5e5edf074.png\",\"delFlag\":false,\"ruleStatus\":2,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/13/ab29558d514d449998ba3a77dc35923e.png\",\"lotteryActivityId\":152,\"createTime\":\"2021-08-02 09:08:43\",\"id\":152,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"endTime\\\":1696089599000,\\\"id\\\":7082,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1789,\\\"name\\\":\\\"魅力值礼物-小开心\\\",\\\"perCount\\\":1400,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":5,\\\"endTime\\\":1696089599000,\\\"id\\\":7081,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1790,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"perCount\\\":900,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":7,\\\"endTime\\\":1696089599000,\\\"id\\\":7080,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1791,\\\"name\\\":\\\"魅力值礼物-小花朵\\\",\\\"perCount\\\":900,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":8,\\\"endTime\\\":1696089599000,\\\"id\\\":7079,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1792,\\\"name\\\":\\\"魅力值礼物-四叶草\\\",\\\"perCount\\\":500,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":10,\\\"endTime\\\":1696089599000,\\\"id\\\":7078,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1793,\\\"name\\\":\\\"魅力值礼物-小可乐\\\",\\\"perCount\\\":480,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":21,\\\"endTime\\\":1696089599000,\\\"id\\\":7077,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1794,\\\"name\\\":\\\"魅力值礼物-甜甜圈\\\",\\\"perCount\\\":420,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":26,\\\"endTime\\\":1696089599000,\\\"id\\\":7076,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1795,\\\"name\\\":\\\"魅力值礼物-一条咸鱼\\\",\\\"perCount\\\":290,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":36,\\\"endTime\\\":1696089599000,\\\"id\\\":7075,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1796,\\\"name\\\":\\\"魅力值礼物-水果冰棒\\\",\\\"perCount\\\":55,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":52,\\\"endTime\\\":1696089599000,\\\"id\\\":7074,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1797,\\\"name\\\":\\\"魅力值礼物-小熊风扇\\\",\\\"perCount\\\":40,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":300,\\\"endTime\\\":1696089599000,\\\"id\\\":7073,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1798,\\\"name\\\":\\\"魅力值礼物-粉色情书\\\",\\\"perCount\\\":10,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000},{\\\"amount\\\":500,\\\"endTime\\\":1696089599000,\\\"id\\\":7072,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1799,\\\"name\\\":\\\"魅力值礼物-流光宝瓶\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628849700000}]\",\"startTime\":\"2021-08-13 18:15:00\",\"id\":152,\"operatorId\":139,\"rewardLotteryCount\":7818636,\"openRewardDiamonds\":78337346,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga\",\"updateTime\":\"2021-08-13 18:02:49\",\"sort\":60,\"labelUrl\":\"\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/35e5b6de04614e7aba6e62507bf694ca.webp\",\"remainLotteryDiamonds\":64090,\"openPayDiamonds\":78186320,\"createTime\":\"2021-04-23 18:20:19\",\"name\":\"普通祈愿\",\"remainLotteryCount\":6811,\"endTime\":\"2023-09-30 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":10,\\\"times\\\":1},{\\\"price\\\":50,\\\"times\\\":5},{\\\"price\\\":100,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"objectVapUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/8a036751310a47b59d83767f0bd83805.mp4\",\"remark\":\"\",\"openedTimes\":683769,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d839550c64084898b321c8e3c0ba264f.png\",\"delFlag\":false,\"ruleStatus\":2,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/412f9b9d3e014b8f8b326feff6de672a.png\",\"lotteryActivityId\":153,\"createTime\":\"2021-08-02 09:25:48\",\"id\":153,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\\\",\\\"decorationId\\\":230,\\\"decorationName\\\":\\\"璀银座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":99,\\\"endTime\\\":1696089599000,\\\"id\\\":7122,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1778,\\\"name\\\":\\\"魅力值礼物-幸运铃\\\",\\\"perCount\\\":450,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":106,\\\"endTime\\\":1696089599000,\\\"id\\\":7121,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1779,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"perCount\\\":350,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":122,\\\"endTime\\\":1696089599000,\\\"id\\\":7120,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1780,\\\"name\\\":\\\"魅力值礼物-告白气球\\\",\\\"perCount\\\":300,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":155,\\\"endTime\\\":1696089599000,\\\"id\\\":7119,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1781,\\\"name\\\":\\\"魅力值礼物-雨梦精灵\\\",\\\"perCount\\\":300,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":199,\\\"endTime\\\":1696089599000,\\\"id\\\":7118,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1782,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":299,\\\"endTime\\\":1696089599000,\\\"id\\\":7117,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1783,\\\"name\\\":\\\"魅力值礼物-万箭穿心\\\",\\\"perCount\\\":190,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":333,\\\"endTime\\\":1696089599000,\\\"id\\\":7116,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1784,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"perCount\\\":100,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":388,\\\"endTime\\\":1696089599000,\\\"id\\\":7115,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1785,\\\"name\\\":\\\"魅力值礼物-魔力娃娃\\\",\\\"perCount\\\":90,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":999,\\\"endTime\\\":1696089599000,\\\"id\\\":7114,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1786,\\\"name\\\":\\\"魅力值礼物-破茧成蝶\\\",\\\"perCount\\\":13,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":5970,\\\"endTime\\\":1696089599000,\\\"id\\\":7113,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1787,\\\"name\\\":\\\"魅力值礼物-偷星大盗\\\",\\\"perCount\\\":5,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000},{\\\"amount\\\":9999,\\\"endTime\\\":1696089599000,\\\"id\\\":7112,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1788,\\\"name\\\":\\\"魅力值礼物-心愿马车\\\",\\\"perCount\\\":2,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628960700000}]\",\"startTime\":\"2021-08-15 01:05:00\",\"id\":153,\"operatorId\":139,\"rewardLotteryCount\":683769,\"openRewardDiamonds\":152921018,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga\",\"updateTime\":\"2021-08-15 01:03:05\",\"sort\":59,\"labelUrl\":\"\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/00a636de2f204339a1c61dc1acefe9b3.webp\",\"remainLotteryDiamonds\":764047,\"openPayDiamonds\":143589390,\"createTime\":\"2021-04-23 18:37:26\",\"name\":\"白银祈愿\",\"remainLotteryCount\":3751,\"endTime\":\"2023-09-30 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":199,\\\"times\\\":1},{\\\"price\\\":995,\\\"times\\\":5},{\\\"price\\\":1990,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"objectVapUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d185125a633b48a7855344422a77f004.mp4\",\"remark\":\"\",\"openedTimes\":380443,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/df5175700b4749d4abf21eec3469e77b.png\",\"delFlag\":false,\"ruleStatus\":2,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/6abd2754b9c8431582c7ea6ebfda0404.png\",\"lotteryActivityId\":154,\"createTime\":\"2021-08-02 14:25:04\",\"id\":154,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\\\",\\\"decorationId\\\":231,\\\"decorationName\\\":\\\"耀金座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":199,\\\"endTime\\\":1696089599000,\\\"id\\\":7143,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1814,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"perCount\\\":490,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":222,\\\"endTime\\\":1696089599000,\\\"id\\\":7144,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1815,\\\"name\\\":\\\"魅力值礼物-广寒月\\\",\\\"perCount\\\":370,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":300,\\\"endTime\\\":1696089599000,\\\"id\\\":7145,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1816,\\\"name\\\":\\\"魅力值礼物-飞鸽传书\\\",\\\"perCount\\\":320,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":365,\\\"endTime\\\":1696089599000,\\\"id\\\":7146,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1817,\\\"name\\\":\\\"魅力值礼物-惬意一下\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":406,\\\"endTime\\\":1696089599000,\\\"id\\\":7147,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1818,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"perCount\\\":340,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":520,\\\"endTime\\\":1696089599000,\\\"id\\\":7148,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1819,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"perCount\\\":170,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":999,\\\"endTime\\\":1696089599000,\\\"id\\\":7149,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1820,\\\"name\\\":\\\"魅力值礼物-圆梦精灵\\\",\\\"perCount\\\":86,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":1314,\\\"endTime\\\":1696089599000,\\\"id\\\":7150,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1821,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"perCount\\\":12,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":2666,\\\"endTime\\\":1696089599000,\\\"id\\\":7151,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1822,\\\"name\\\":\\\"魅力值礼物-风崖闻铃\\\",\\\"perCount\\\":8,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":13140,\\\"endTime\\\":1696089599000,\\\"id\\\":7152,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1823,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"perCount\\\":4,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000},{\\\"amount\\\":20010,\\\"endTime\\\":1696089599000,\\\"id\\\":7153,\\\"isNotice\\\":1,\\\"isReward\\\":1,\\\"lotteryId\\\":1824,\\\"name\\\":\\\"魅力值礼物-爱境仙池\\\",\\\"perCount\\\":2,\\\"ruleStatus\\\":2,\\\"startTime\\\":1629018000000}]\",\"startTime\":\"2021-08-15 17:00:00\",\"id\":154,\"operatorId\":139,\"rewardLotteryCount\":380443,\"openRewardDiamonds\":263397644,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga\",\"updateTime\":\"2021-08-15 18:41:55\",\"sort\":58,\"labelUrl\":\"\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/e9448d6f0c2e4e5f80918bea1a9fda5c.webp\",\"remainLotteryDiamonds\":1109300,\"openPayDiamonds\":253375038,\"createTime\":\"2021-04-23 18:49:41\",\"name\":\"黄金祈愿\",\"remainLotteryCount\":1912,\"endTime\":\"2023-09-30 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":399,\\\"times\\\":1},{\\\"price\\\":1995,\\\"times\\\":5},{\\\"price\\\":3990,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"objectVapUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/5c31fdab34fc46e899a45bdda9012f03.mp4\",\"remark\":\"\",\"openedTimes\":635827,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/d1e55a78701b4298b013049d9ac8bed1.png\",\"delFlag\":false,\"ruleStatus\":2,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/9/3cec148fbc2347f187fd233785f32908.png\",\"lotteryActivityId\":155,\"createTime\":\"2021-08-02 17:39:05\",\"id\":155,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=152,153,154,155&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\\\",\\\"decorationId\\\":232,\\\"decorationName\\\":\\\"幻尊座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":388,\\\"endTime\\\":1696089599000,\\\"id\\\":7035,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1768,\\\"name\\\":\\\"魅力值礼物-魔力娃娃\\\",\\\"perCount\\\":500,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":455,\\\"endTime\\\":1696089599000,\\\"id\\\":7036,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1769,\\\"name\\\":\\\"魅力值礼物-魔法手杖\\\",\\\"perCount\\\":450,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":568,\\\"endTime\\\":1696089599000,\\\"id\\\":7037,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1770,\\\"name\\\":\\\"魅力值礼物-鎏金百合\\\",\\\"perCount\\\":340,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":666,\\\"endTime\\\":1696089599000,\\\"id\\\":7038,\\\"isNotice\\\":0,\\\"isReward\\\":0,\\\"lotteryId\\\":1771,\\\"name\\\":\\\"魅力值礼物-魔法喵喵\\\",\\\"perCount\\\":220,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":999,\\\"endTime\\\":1696089599000,\\\"id\\\":7039,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1772,\\\"name\\\":\\\"魅力值礼物-破茧成蝶\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":1199,\\\"endTime\\\":1696089599000,\\\"id\\\":7040,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1773,\\\"name\\\":\\\"魅力值礼物-白马王子\\\",\\\"perCount\\\":200,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":1688,\\\"endTime\\\":1696089599000,\\\"id\\\":7041,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1774,\\\"name\\\":\\\"魅力值礼物-天使之翼\\\",\\\"perCount\\\":58,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":6666,\\\"endTime\\\":1696089599000,\\\"id\\\":7042,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1775,\\\"name\\\":\\\"魅力值礼物-恶魔之翼\\\",\\\"perCount\\\":14,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":9999,\\\"endTime\\\":1696089599000,\\\"id\\\":7043,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1776,\\\"name\\\":\\\"魅力值礼物-毁灭魔法\\\",\\\"perCount\\\":10,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000},{\\\"amount\\\":58888,\\\"endTime\\\":1696089599000,\\\"id\\\":7044,\\\"isNotice\\\":1,\\\"isReward\\\":0,\\\"lotteryId\\\":1777,\\\"name\\\":\\\"魅力值礼物-浴火凤凰\\\",\\\"perCount\\\":8,\\\"ruleStatus\\\":2,\\\"startTime\\\":1628780700000}]\",\"startTime\":\"2021-08-12 23:05:00\",\"id\":155,\"operatorId\":139,\"rewardLotteryCount\":635827,\"openRewardDiamonds\":629272159,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga\",\"updateTime\":\"2021-08-12 23:38:10\",\"sort\":57,\"labelUrl\":\"\",\"version\":0,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/2/4debd04e5a1f4030ae49f2deed0c0353.webp\",\"remainLotteryDiamonds\":3288679,\"openPayDiamonds\":635191173,\"createTime\":\"2021-04-23 19:19:29\",\"name\":\"魔幻祈愿\",\"remainLotteryCount\":3285,\"endTime\":\"2023-09-30 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":999,\\\"times\\\":1},{\\\"price\\\":4995,\\\"times\\\":5},{\\\"price\\\":9990,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1}],\"pageNum\":1,\"navigatePages\":8,\"total\":9,\"pages\":1,\"size\":9,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:14:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 445毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"445毫秒","endTime":"2021-08-31 15:13:14","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:14","status":1}
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:16 GMT
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:15.394] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:15.394] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:15.394] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:15.394] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:15.907] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:15:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-08-31 15:13:15.907] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-31 15:13:15.907] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:16.022] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:16.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:16.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-31 15:13:16.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:16.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:16.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:16.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:16.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:16.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=16677017}
[2021-08-31 15:13:16.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:16.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=16677017
[2021-08-31 15:13:16.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:16.026] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:16.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:16.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:16.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:16.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:17 GMT
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-08-31 15:10:52","maxNum":50,"guildCode":"16677017","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":5523052,"curNum":1,"createTime":"2021-08-31 13:45:00","guildType":1,"id":1739,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:16.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:16.249] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-08-31 15:13:16.249] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:16.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:16.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyRemark=我是test,想加入公会, guildId=1739}
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyRemark=%E6%88%91%E6%98%AFtest%EF%BC%8C%E6%83%B3%E5%8A%A0%E5%85%A5%E5%85%AC%E4%BC%9A&guildId=1739
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:16.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:16.489] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:16.489] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:16.489] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:16.489] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:16.489] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:16.489] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:16.489] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:16.489] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:16.489] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:17 GMT
[2021-08-31 15:13:16.490] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:16.490] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:16.490] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:16.490] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"你的入会申请提交成功","status":200}
[2021-08-31 15:13:16.490] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:16.490] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:16.490] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-08-31 15:13:16.490] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=999999, guildCode=16677017, pageNum=1}
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=999999&guildCode=16677017&pageNum=1
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:16.691] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:16.691] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:16.691] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:16.691] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:16.691] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:17 GMT
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":999999,"endRow":1,"list":[{"roomNums":0,"guildStatus":2,"mobile":"13823774131","description":"欢迎来到我的公会","updateTime":"2021-08-31 15:10:52","leaderNickName":"test","maxNum":50,"guildCode":"16677017","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":5523052,"guildMaxNumDesc":"50人以下","curNum":1,"createTime":"2021-08-31 13:45:00","guildType":1,"id":1739,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:16.692] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:16.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:16.840] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:16.840] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:16.840] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:16.840] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:16.840] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:16.840] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:16.840] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:16.840] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:16.841] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 15:13:16.841] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:16.841] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 15:13:16.841] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:16.841] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:17 GMT
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":0.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-31 11:13:54","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-08-31 14:38:03","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻24","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":24}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:16.987] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:16.988] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:16.988] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-31 15:13:16.988] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:17.137] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=16677017}
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=16677017
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:17.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:17.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:17.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:17.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:17.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:17.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:17.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:18 GMT
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-08-31 15:10:52","maxNum":50,"guildCode":"16677017","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":5523052,"curNum":1,"createTime":"2021-08-31 13:45:00","guildType":1,"id":1739,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:17.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-08-31 15:13:17.287] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:17.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:17.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:17.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-08-31 15:13:17.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:17.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:17.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-7740a404412e4e98a7fa7ce69a473a9f#5523052
[2021-08-31 15:13:17.416] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:17.416] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:17.416] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyType=1, pageSize=20, pageNum=1, guildId=1739}
[2021-08-31 15:13:17.416] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:17.416] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyType=1&pageSize=20&pageNum=1&guildId=1739
[2021-08-31 15:13:17.416] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:17.416] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:17.760] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:17.760] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:17.760] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:17.760] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:17.760] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:18 GMT
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"baseInfo":{"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":62,"memberExp":0,"gender":0,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png","memberLevel":0,"nobleRankName":"公爵Ⅱ","hideActiveTime":false,"hideRoomStatus":false,"type":1,"userId":5523051,"userCode":"115032550","fans":0,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png","nickname":"沉着的电脑","nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/daf6c71657d24e4a805c81c9d041bb62.png","showInTops":false,"status":1},"applyType":1,"applyId":121580,"applyRemark":"我是test,想加入公会","handleDesc":"","handleStatus":1,"applyTime":"2021-08-31 15:13:17"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/handle-apply
[2021-08-31 15:13:17.761] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:18.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:18.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:18.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/handle-apply
[2021-08-31 15:13:18.188] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:18.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:18.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-7740a404412e4e98a7fa7ce69a473a9f#5523052
[2021-08-31 15:13:18.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:18.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:18.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyId=121580, configs=[], handleStatus=2}
[2021-08-31 15:13:18.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:18.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyId=121580&configs=%5B%5D&handleStatus=2
[2021-08-31 15:13:18.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:18.189] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:19 GMT
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:18.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:18.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:18.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"已同意","status":200}
[2021-08-31 15:13:18.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:18.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:18.576] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testAuditGuild--Test Mthod Success
[2021-08-31 15:13:18.576] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:18:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-08-31 15:13:18.576] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 02秒669毫秒======
[2021-08-31 15:13:18.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:18.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:18.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-08-31 15:13:15:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"16677017\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=16677017\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:17 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-08-31 15:10:52\",\"maxNum\":50,\"guildCode\":\"16677017\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":5523052,\"curNum\":1,\"createTime\":\"2021-08-31 13:45:00\",\"guildType\":1,\"id\":1739,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/join\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyRemark\":\"我是test,想加入公会\",\"guildId\":1739}\r\n###Http Request queryString after URLEncoder### :\r\napplyRemark=%E6%88%91%E6%98%AFtest%EF%BC%8C%E6%83%B3%E5%8A%A0%E5%85%A5%E5%85%AC%E4%BC%9A&guildId=1739\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:17 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"你的入会申请提交成功\",\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/guild-center/guild/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":999999,\"guildCode\":\"16677017\",\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=999999&guildCode=16677017&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:17 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":999999,\"endRow\":1,\"list\":[{\"roomNums\":0,\"guildStatus\":2,\"mobile\":\"13823774131\",\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-08-31 15:10:52\",\"leaderNickName\":\"test\",\"maxNum\":50,\"guildCode\":\"16677017\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":5523052,\"guildMaxNumDesc\":\"50人以下\",\"curNum\":1,\"createTime\":\"2021-08-31 13:45:00\",\"guildType\":1,\"id\":1739,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:17 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-31 11:13:54\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 14:38:03\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"钻24\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":24}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"16677017\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=16677017\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:18 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-08-31 15:10:52\",\"maxNum\":50,\"guildCode\":\"16677017\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":5523052,\"curNum\":1,\"createTime\":\"2021-08-31 13:45:00\",\"guildType\":1,\"id\":1739,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-7740a404412e4e98a7fa7ce69a473a9f#5523052\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyType\":\"1\",\"pageSize\":\"20\",\"pageNum\":\"1\",\"guildId\":1739}\r\n###Http Request queryString after URLEncoder### :\r\napplyType=1&pageSize=20&pageNum=1&guildId=1739\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:18 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"baseInfo\":{\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":62,\"memberExp\":0,\"gender\":0,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png\",\"memberLevel\":0,\"nobleRankName\":\"公爵Ⅱ\",\"hideActiveTime\":false,\"hideRoomStatus\":false,\"type\":1,\"userId\":5523051,\"userCode\":\"115032550\",\"fans\":0,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png\",\"nickname\":\"沉着的电脑\",\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/daf6c71657d24e4a805c81c9d041bb62.png\",\"showInTops\":false,\"status\":1},\"applyType\":1,\"applyId\":121580,\"applyRemark\":\"我是test,想加入公会\",\"handleDesc\":\"\",\"handleStatus\":1,\"applyTime\":\"2021-08-31 15:13:17\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/handle-apply\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-7740a404412e4e98a7fa7ce69a473a9f#5523052\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyId\":121580,\"configs\":\"[]\",\"handleStatus\":2}\r\n###Http Request queryString after URLEncoder### :\r\napplyId=121580&configs=%5B%5D&handleStatus=2\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:19 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"已同意\",\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:18:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 02秒669毫秒======\r","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"02秒669毫秒","endTime":"2021-08-31 15:13:18","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:15","status":1}
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:18.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:18.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:18.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:19 GMT
[2021-08-31 15:13:18.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:18.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:18.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:18.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:18.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:18.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:19.414] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:19:用例【com.pipi.invoker.CosPlayerTest.testGetMine】开始======
[2021-08-31 15:13:19.414] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v3/user/get-mine
[2021-08-31 15:13:19.414] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:19.560] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:19.560] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:19.560] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v3/user/get-mine
[2021-08-31 15:13:19.560] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:19.560] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:19.560] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:19.561] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:19.561] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:19.561] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:19.561] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:19.561] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:19.561] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:19.561] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:19.811] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:19.811] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:19.811] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:19.811] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:19.811] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:20 GMT
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"signFlag":false,"userInfo":{"platformAuthUrl":"","nobleRankName":"公爵Ⅱ","type":1,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":62,"skillsGroup":"b44f12547c1d455c8cf8aba14ed22e7f","totalFootprints":0,"gender":0,"managerPermit":false,"userCode":"115032550","nickname":"沉着的电脑","emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png","memberLevel":0,"mobile":"13823774134","attentions":0,"imPsw":"b739ce120f584a7597187eecc691bba8","userId":5523051,"imId":"5523051_20210831","fans":0,"popularityInfo":{"levelCode":0,"backgroundColor":"#E99A53,#FDC07D","levelName":"暂无等级","iconUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/07/12/a44eda5f4f40f8899a273117eab91722.png","userId":5523051},"isInGuild":true,"isRicher":false,"totalAccessedCnt":0},"signDays":1,"userSetting":{"orderMsg":1,"productNotifySettings":[],"noticeMsg":1,"userId":5523051,"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,"welfareCount":1,"grabOrderAmount":0,"addCouponCount":0}},"status":200}
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:19.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:19.812] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetMine--Test Mthod Success
[2021-08-31 15:13:19.812] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:19:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======
[2021-08-31 15:13:19.813] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 398毫秒======
[2021-08-31 15:13:19.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:19.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:19.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"/api/v3/user/get-mine 获取用户信(人气等级)","caseLog":"======2021-08-31 15:13:19:用例【com.pipi.invoker.CosPlayerTest.testGetMine】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v3/user/get-mine\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:20 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"signFlag\":false,\"userInfo\":{\"platformAuthUrl\":\"\",\"nobleRankName\":\"公爵Ⅱ\",\"type\":1,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png\",\"id\":5523051,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":62,\"skillsGroup\":\"b44f12547c1d455c8cf8aba14ed22e7f\",\"totalFootprints\":0,\"gender\":0,\"managerPermit\":false,\"userCode\":\"115032550\",\"nickname\":\"沉着的电脑\",\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png\",\"memberLevel\":0,\"mobile\":\"13823774134\",\"attentions\":0,\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"userId\":5523051,\"imId\":\"5523051_20210831\",\"fans\":0,\"popularityInfo\":{\"levelCode\":0,\"backgroundColor\":\"#E99A53,#FDC07D\",\"levelName\":\"暂无等级\",\"iconUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/07/12/a44eda5f4f40f8899a273117eab91722.png\",\"userId\":5523051},\"isInGuild\":true,\"isRicher\":false,\"totalAccessedCnt\":0},\"signDays\":1,\"userSetting\":{\"orderMsg\":1,\"productNotifySettings\":[],\"noticeMsg\":1,\"userId\":5523051,\"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,\"welfareCount\":1,\"grabOrderAmount\":0,\"addCouponCount\":0}},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:19:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======\r\n======本次用例运行消耗时间 398毫秒======\r","caseName":"testGetMine","className":"com.pipi.invoker.CosPlayerTest","durationTime":"398毫秒","endTime":"2021-08-31 15:13:19","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:19","status":1}
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:20 GMT
[2021-08-31 15:13:20.065] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:20.066] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:20.066] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:20.066] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:20.066] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:20.066] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:20.578] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:20:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】开始======
[2021-08-31 15:13:20.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/user/balance/get
[2021-08-31 15:13:20.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:20.726] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:20.726] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:20.726] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/user/balance/get
[2021-08-31 15:13:20.726] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:20.726] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:20.726] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:20.727] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:20.727] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:20.727] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:20.727] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:20.727] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:20.727] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:20.727] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:20.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:20.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:20.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:20.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:21 GMT
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"virtualBalance":356890,"balance":0.00,"charm":0,"charmMoney":0.00,"chargeBalance":15.00,"bodyAuthDesc":"未实名认证","newCharm":0},"status":200}
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:20.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:20.834] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserBalance--Test Mthod Success
[2021-08-31 15:13:20.834] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:20:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======
[2021-08-31 15:13:20.834] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 256毫秒======
[2021-08-31 15:13:20.835] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:20.835] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:20.835] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:20.835] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:20.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户皮皮币/钻石余额","caseLog":"======2021-08-31 15:13:20:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v1/user/balance/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:21 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"virtualBalance\":356890,\"balance\":0.00,\"charm\":0,\"charmMoney\":0.00,\"chargeBalance\":15.00,\"bodyAuthDesc\":\"未实名认证\",\"newCharm\":0},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:20:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======\r\n======本次用例运行消耗时间 256毫秒======\r","caseName":"testGetUserBalance","className":"com.pipi.invoker.CosPlayerTest","durationTime":"256毫秒","endTime":"2021-08-31 15:13:20","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:20","status":1}
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:21 GMT
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:21.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:21.636] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:21:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】开始======
[2021-08-31 15:13:21.637] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:21.637] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:21.776] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:21.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:21.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:22 GMT
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"公爵Ⅱ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":15.00,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":62,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 14:51:27","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":356890,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:21.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:21.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/user/simple/get
[2021-08-31 15:13:21.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:22.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:22.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/user/simple/get
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=882100, userId=5523051}
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=882100&userId=5523051
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:22.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:22.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:23 GMT
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"获取个人信息成功!","data":{"platformAuthUrl":"","type":1,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png","balance":0.00,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":15.00,"lastMemberExp":0,"activeTime":"2021-08-31 11:13:53","userProducts":[],"isAttention":0,"status":1,"gender":0,"city":"未设置","managerPermit":false,"registerType":0,"userCode":"115032550","loginTime":"2021-08-31 14:51:27","nickname":"沉着的电脑","virtualBalance":356890,"memberLevel":0,"updateTime":"2021-08-31 11:13:53","mainPicUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png","quickServerStatus":0,"userId":5523051,"imId":"5523051_20210831","charm":0,"createTime":"2021-08-31 11:13:53","newUser":false,"nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/daf6c71657d24e4a805c81c9d041bb62.png","sourceId":0,"platformAuth":0,"charmDrawSum":0,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":62,"isRoomBlacked":false,"userInfoAuth":0,"totalFootprints":0,"orderTakeSwitch":false,"userTechList":[],"registIp":"61.183.246.70","accessCount":0,"openedTechs":0,"isCancel":false,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png","attentions":0,"imPsw":"b739ce120f584a7597187eecc691bba8","scoreAvg":4.0,"fans":0,"totalAccessedCnt":0},"status":200}
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:22.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:22.255] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple--Test Mthod Success
[2021-08-31 15:13:22.255] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:22:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======
[2021-08-31 15:13:22.255] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 619毫秒======
[2021-08-31 15:13:22.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:22.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:22.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v1","caseLog":"======2021-08-31 15:13:21:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13: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\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"公爵Ⅱ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":15.00,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":62,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 14:51:27\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":356890,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v1/user/simple/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"882100\",\"userId\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=882100&userId=5523051\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:23 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"获取个人信息成功!\",\"data\":{\"platformAuthUrl\":\"\",\"type\":1,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png\",\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":15.00,\"lastMemberExp\":0,\"activeTime\":\"2021-08-31 11:13:53\",\"userProducts\":[],\"isAttention\":0,\"status\":1,\"gender\":0,\"city\":\"未设置\",\"managerPermit\":false,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 14:51:27\",\"nickname\":\"沉着的电脑\",\"virtualBalance\":356890,\"memberLevel\":0,\"updateTime\":\"2021-08-31 11:13:53\",\"mainPicUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png\",\"quickServerStatus\":0,\"userId\":5523051,\"imId\":\"5523051_20210831\",\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false,\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/daf6c71657d24e4a805c81c9d041bb62.png\",\"sourceId\":0,\"platformAuth\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":62,\"isRoomBlacked\":false,\"userInfoAuth\":0,\"totalFootprints\":0,\"orderTakeSwitch\":false,\"userTechList\":[],\"registIp\":\"61.183.246.70\",\"accessCount\":0,\"openedTechs\":0,\"isCancel\":false,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png\",\"attentions\":0,\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"scoreAvg\":4.0,\"fans\":0,\"totalAccessedCnt\":0},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:22:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======\r\n======本次用例运行消耗时间 619毫秒======\r","caseName":"testGetUserSimple","className":"com.pipi.invoker.CosPlayerTest","durationTime":"619毫秒","endTime":"2021-08-31 15:13:22","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:21","status":1}
[2021-08-31 15:13:22.504] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:22.504] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:22.504] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:22.504] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:22.504] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:22.504] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:22.504] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:22.504] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:22.504] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:22.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:22.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:22.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:23 GMT
[2021-08-31 15:13:22.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:22.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:22.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:22.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:22.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:22.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:23.017] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:23:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】开始======
[2021-08-31 15:13:23.017] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:23.017] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:23.106] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:23.106] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:23.106] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:23.107] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:24 GMT
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"公爵Ⅱ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":15.00,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":62,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 14:51:27","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":356890,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v2/user/simple/get
[2021-08-31 15:13:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:23.295] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v2/user/simple/get
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=882100, userId=5523051}
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=882100&userId=5523051
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:23.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:24 GMT
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"获取个人信息成功!","data":{"platformAuthUrl":"","about":"TA还没有个性签名哟~","type":1,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png","balance":0.00,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":15.00,"lastMemberExp":0,"activeTime":"2021-08-31 11:13:53","userProducts":[],"isAttention":0,"status":1,"gender":0,"city":"未设置","managerPermit":false,"registerType":0,"userCode":"115032550","loginTime":"2021-08-31 14:51:27","nickname":"沉着的电脑","virtualBalance":356890,"memberLevel":0,"updateTime":"2021-08-31 11:13:53","mainPicUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png","quickServerStatus":0,"userId":5523051,"imId":"5523051_20210831","charm":0,"createTime":"2021-08-31 11:13:53","newUser":false,"nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/daf6c71657d24e4a805c81c9d041bb62.png","sourceId":0,"platformAuth":0,"charmDrawSum":0,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":62,"isRoomBlacked":false,"userInfoAuth":0,"totalFootprints":0,"orderTakeSwitch":false,"userTechList":[],"registIp":"61.183.246.70","accessCount":0,"openedTechs":0,"isCancel":false,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png","attentions":0,"imPsw":"b739ce120f584a7597187eecc691bba8","scoreAvg":4.0,"fans":0,"totalAccessedCnt":0},"status":200}
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:23.485] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:23.486] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple2--Test Mthod Success
[2021-08-31 15:13:23.486] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:23:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======
[2021-08-31 15:13:23.486] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 469毫秒======
[2021-08-31 15:13:23.486] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:23.486] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:23.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v2","caseLog":"======2021-08-31 15:13:23:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:24 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"公爵Ⅱ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":15.00,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":62,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 14:51:27\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":356890,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v2/user/simple/get\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"882100\",\"userId\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=882100&userId=5523051\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:24 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"获取个人信息成功!\",\"data\":{\"platformAuthUrl\":\"\",\"about\":\"TA还没有个性签名哟~\",\"type\":1,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png\",\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":15.00,\"lastMemberExp\":0,\"activeTime\":\"2021-08-31 11:13:53\",\"userProducts\":[],\"isAttention\":0,\"status\":1,\"gender\":0,\"city\":\"未设置\",\"managerPermit\":false,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 14:51:27\",\"nickname\":\"沉着的电脑\",\"virtualBalance\":356890,\"memberLevel\":0,\"updateTime\":\"2021-08-31 11:13:53\",\"mainPicUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png\",\"quickServerStatus\":0,\"userId\":5523051,\"imId\":\"5523051_20210831\",\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false,\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/daf6c71657d24e4a805c81c9d041bb62.png\",\"sourceId\":0,\"platformAuth\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":62,\"isRoomBlacked\":false,\"userInfoAuth\":0,\"totalFootprints\":0,\"orderTakeSwitch\":false,\"userTechList\":[],\"registIp\":\"61.183.246.70\",\"accessCount\":0,\"openedTechs\":0,\"isCancel\":false,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png\",\"attentions\":0,\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"scoreAvg\":4.0,\"fans\":0,\"totalAccessedCnt\":0},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:23:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======\r\n======本次用例运行消耗时间 469毫秒======\r","caseName":"testGetUserSimple2","className":"com.pipi.invoker.CosPlayerTest","durationTime":"469毫秒","endTime":"2021-08-31 15:13:23","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:23","status":1}
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:23.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:23.734] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:24 GMT
[2021-08-31 15:13:23.734] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:23.734] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:23.734] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:23.734] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:23.734] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:23.734] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:24.239] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:24:用例【com.pipi.invoker.CosPlayerTest.testGethome】开始======
[2021-08-31 15:13:24.239] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v3/user/get-home
[2021-08-31 15:13:24.240] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v3/user/get-home
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:24.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:24.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:24.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:24.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:24.469] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:24.469] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:24.469] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:24.469] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:24.469] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:24.469] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:24.469] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:24.469] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:24.469] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:25 GMT
[2021-08-31 15:13:24.470] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:24.470] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:24.470] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:24.470] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"signFlag":false,"userInfo":{"platformAuthUrl":"","gender":"0","managerPermit":false,"type":1,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png","nickname":"沉着的电脑","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":62,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png","memberLevel":0,"skillsGroup":"b44f12547c1d455c8cf8aba14ed22e7f","mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","userId":5523051,"imId":"5523051_20210831","isInGuild":true,"isRicher":false},"signDays":1,"userSetting":{"orderMsg":1,"productNotifySettings":[],"noticeMsg":1,"userId":5523051,"newMessageReminder":1,"proclamationMsg":1,"assignOrderMsgDnd":false,"robOrderMsgDnd":true,"messageDetail":1,"assignMsg":1},"showGuildCenter":true,"signImg":"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png","userAlertInfo":{"orderNoPayAmount":0,"orderWaitingAmount":0,"guildApplyCount":0,"welfareCount":1,"grabOrderAmount":0,"addCouponCount":0}},"status":200}
[2021-08-31 15:13:24.470] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:24.470] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:24.470] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGethome--Test Mthod Success
[2021-08-31 15:13:24.470] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:24:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======
[2021-08-31 15:13:24.470] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 231毫秒======
[2021-08-31 15:13:24.470] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:24.471] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:24.472] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:24.472] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:24.472] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":" /api/v3/user/get-home获取用户信息(用户是否是巡管员) ","caseLog":"======2021-08-31 15:13:24:用例【com.pipi.invoker.CosPlayerTest.testGethome】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v3/user/get-home\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:25 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"signFlag\":false,\"userInfo\":{\"platformAuthUrl\":\"\",\"gender\":\"0\",\"managerPermit\":false,\"type\":1,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/ed2b4d429f5e41bc91f042e82d2f7b74.png\",\"nickname\":\"沉着的电脑\",\"id\":5523051,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":62,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/448e9ebca4be4e4582b81dda1da4ef49.png\",\"memberLevel\":0,\"skillsGroup\":\"b44f12547c1d455c8cf8aba14ed22e7f\",\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"userId\":5523051,\"imId\":\"5523051_20210831\",\"isInGuild\":true,\"isRicher\":false},\"signDays\":1,\"userSetting\":{\"orderMsg\":1,\"productNotifySettings\":[],\"noticeMsg\":1,\"userId\":5523051,\"newMessageReminder\":1,\"proclamationMsg\":1,\"assignOrderMsgDnd\":false,\"robOrderMsgDnd\":true,\"messageDetail\":1,\"assignMsg\":1},\"showGuildCenter\":true,\"signImg\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png\",\"userAlertInfo\":{\"orderNoPayAmount\":0,\"orderWaitingAmount\":0,\"guildApplyCount\":0,\"welfareCount\":1,\"grabOrderAmount\":0,\"addCouponCount\":0}},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:24:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======\r\n======本次用例运行消耗时间 231毫秒======\r","caseName":"testGethome","className":"com.pipi.invoker.CosPlayerTest","durationTime":"231毫秒","endTime":"2021-08-31 15:13:24","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:24","status":1}
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:26 GMT
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:25.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:25.373] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:25.887] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:25:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-08-31 15:13:25.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-08-31 15:13:25.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:25.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:25.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:25.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-08-31 15:13:25.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:25.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:25.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:25.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:25.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:25.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-08-31 15:13:25.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:25.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-08-31 15:13:25.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:25.941] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:26.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:26.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:26 GMT
[2021-08-31 15:13:26.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:26.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:26.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:26.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":136,"virtualProductId":376,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-09-11 20:31:28","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/11/f143b1c700e24aa6b29af3d93f452d20.svga\",\"remark\":\"一心一意\",\"vapUrl\":\"\"}]","id":182,"virtualProductId":376}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/23/d3b5c42ee22f4c0aa2e5bd4dfdb5e6ca.png","createTime":"2021-08-23 13:04:59","refType":1,"id":91,"virtualProductId":376,"content":"","activityH5Url":"https://h5.apeiwan.com/app/toplist2.html?hideNavi=1","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5945c7db61dc47a2887c4c4876d0e67e.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送一个,可触发动效,增加对方99魅力值","giftVersion":6,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":376,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":99,"limitUpdateTime":"2020-09-11 20:31:29","useStatus":1,"name":"捕梦网","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-08-23 13:04:59","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2020-09-11 20:31:29"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":306,"virtualProductId":538,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":4,"createTime":"2021-06-22 16:23:25","playMethod":"[{\"broadcastRangType\":3,\"chainNum\":5000,\"level\":1,\"remark\":\"穿云火箭\",\"roomBannerId\":146,\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/f05f44c8b19c4264baa85a99301c0b63.png\"},{\"broadcastRangType\":5,\"chainNum\":20000,\"level\":2,\"remark\":\"太空火箭\",\"roomBannerId\":147,\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/53dbc470a89b4855a9bf846147db8ecc.png\"},{\"broadcastRangType\":2,\"chainNum\":50000,\"level\":3,\"listBannerId\":149,\"remark\":\"星际火箭\",\"roomBannerId\":148,\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/3d4f314da33943d68e0396cd3903810b.png\"}]","id":268,"virtualProductId":538}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/29/4e48ff76c05e4acdbdc56421d91081dc.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":28,"price":1000,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/28/e60cc230c27e4118b80eb2bd6f8020cb.png","id":538,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/29/927c0d38397f46ff8c29b690d8fd0bc3.svga","giftType":1,"sort":2000,"charmValue":1000,"limitUpdateTime":"2021-06-22 16:23:25","useStatus":1,"name":"火箭","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"startTime":"2021-06-29 11:00:00","hasAnimation":true,"rewardLevel":2,"updateTime":"2021-07-12 15:15:44","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/28/44d71ef8cc8d45efbcaed560f3577445.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-06-22 16:23:25","endTime":"2029-07-31 23:59:59"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-08-30 16:41:16","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":6,"remarkUrl":"","id":524,"objectGifUrl":"","giftType":1,"sort":975,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-08-23 11:24:47","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"550751","rangeName":"ID 550751 【CC女神】福宝嘤嘤-限时返场\n","id":85,"virtualProductId":269,"roomType":2,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 19:37:23","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/24/e5346ea8520e42909aa8af6f8174e19f.svga\",\"remark\":\"1\",\"vapUrl\":\"\"}]","id":78,"virtualProductId":269}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f633e332d9ba4875a479749a582a66d7.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":10,"price":666,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/23/25bbe7150bfd401496e41d470b45ba5d.png","id":269,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":666,"useStatus":1,"name":"福宝嘤嘤","isWall":true,"permissionDesc":"","remark":"2020新春限定","delFlag":false,"obtainType":1,"startTime":"2021-08-23 12:00:00","hasAnimation":true,"rewardLevel":2,"updateTime":"2021-08-23 11:28:27","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2020-01-17 11:56:35","endTime":"2021-09-02 11:59:59"}},{"virtualProductRange":{"roomRange":"929080","rangeName":"ID 929080 【山海】皇家礼炮最后限时返厂\n","id":86,"virtualProductId":270,"roomType":2,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 19:39:21","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/24/fab2d0dc1dc2426594f88d8e9d8d98ea.svga\",\"remark\":\"1\",\"vapUrl\":\"\"}]","id":80,"virtualProductId":270}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/1/17/a02e88973c094844af4cf1cb17d6bdc7.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":9,"price":888,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/23/8e9f1cdfb4914ff598a7c5cce4a0470f.png","id":270,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":888,"useStatus":1,"name":"皇家礼炮","isWall":true,"permissionDesc":"","remark":"2020新春限定","delFlag":false,"obtainType":1,"startTime":"2021-08-23 12:00:00","hasAnimation":true,"rewardLevel":2,"updateTime":"2021-08-23 11:27:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2020-01-17 11:57:43","endTime":"2021-09-02 11:59:59"}}],"pageNum":1,"navigatePages":8,"total":36,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:26.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:26.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:26.212] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-08-31 15:13:26.212] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:26:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-08-31 15:13:26.212] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 325毫秒======
[2021-08-31 15:13:26.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:26.212] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:26.214] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-08-31 15:13:25:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&type=1&pageNum=1&useStatus=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:26 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":4,\"navigatepageNums\":[1,2,3,4],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png\",\"createTime\":\"2020-12-23 14:37:34\",\"refType\":1,\"id\":44,\"virtualProductId\":328,\"content\":\"每送1个,可增加房间热度10\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"每送1个,可增加房间热度10\",\"giftVersion\":24,\"price\":0,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png\",\"id\":328,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室热度礼物\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":136,\"virtualProductId\":376,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-09-11 20:31:28\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/11/f143b1c700e24aa6b29af3d93f452d20.svga\\\",\\\"remark\\\":\\\"一心一意\\\",\\\"vapUrl\\\":\\\"\\\"}]\",\"id\":182,\"virtualProductId\":376}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/23/d3b5c42ee22f4c0aa2e5bd4dfdb5e6ca.png\",\"createTime\":\"2021-08-23 13:04:59\",\"refType\":1,\"id\":91,\"virtualProductId\":376,\"content\":\"\",\"activityH5Url\":\"https://h5.apeiwan.com/app/toplist2.html?hideNavi=1\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5945c7db61dc47a2887c4c4876d0e67e.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送一个,可触发动效,增加对方99魅力值\",\"giftVersion\":6,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":376,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":99,\"limitUpdateTime\":\"2020-09-11 20:31:29\",\"useStatus\":1,\"name\":\"捕梦网\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-08-23 13:04:59\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2020-09-11 20:31:29\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":306,\"virtualProductId\":538,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":4,\"createTime\":\"2021-06-22 16:23:25\",\"playMethod\":\"[{\\\"broadcastRangType\\\":3,\\\"chainNum\\\":5000,\\\"level\\\":1,\\\"remark\\\":\\\"穿云火箭\\\",\\\"roomBannerId\\\":146,\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/f05f44c8b19c4264baa85a99301c0b63.png\\\"},{\\\"broadcastRangType\\\":5,\\\"chainNum\\\":20000,\\\"level\\\":2,\\\"remark\\\":\\\"太空火箭\\\",\\\"roomBannerId\\\":147,\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/53dbc470a89b4855a9bf846147db8ecc.png\\\"},{\\\"broadcastRangType\\\":2,\\\"chainNum\\\":50000,\\\"level\\\":3,\\\"listBannerId\\\":149,\\\"remark\\\":\\\"星际火箭\\\",\\\"roomBannerId\\\":148,\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/29/3d4f314da33943d68e0396cd3903810b.png\\\"}]\",\"id\":268,\"virtualProductId\":538}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/29/4e48ff76c05e4acdbdc56421d91081dc.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":28,\"price\":1000,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/28/e60cc230c27e4118b80eb2bd6f8020cb.png\",\"id\":538,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/29/927c0d38397f46ff8c29b690d8fd0bc3.svga\",\"giftType\":1,\"sort\":2000,\"charmValue\":1000,\"limitUpdateTime\":\"2021-06-22 16:23:25\",\"useStatus\":1,\"name\":\"火箭\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-06-29 11:00:00\",\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-07-12 15:15:44\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/28/44d71ef8cc8d45efbcaed560f3577445.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-06-22 16:23:25\",\"endTime\":\"2029-07-31 23:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":285,\"virtualProductId\":517,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png\",\"createTime\":\"2021-05-24 10:02:07\",\"refType\":1,\"id\":76,\"virtualProductId\":517,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":100,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png\",\"id\":517,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1001,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-24 10:02:08\",\"useStatus\":1,\"name\":\"皮皮糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"糖果制造机玩法礼物\",\"delFlag\":false,\"obtainType\":5,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-08-30 16:41:16\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-24 10:02:08\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:56:35\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":24,\"virtualProductId\":327}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可增加对方1魅力值\",\"giftVersion\":17,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":980,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":292,\"virtualProductId\":524,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":6,\"remarkUrl\":\"\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":975,\"charmValue\":6,\"limitUpdateTime\":\"2021-05-28 17:21:11\",\"useStatus\":1,\"name\":\"爱心补给\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-08-23 11:24:47\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"virtualProductRange\":{\"roomRange\":\"3\",\"rangeName\":\"全部\",\"id\":244,\"virtualProductId\":476,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":128,\"remarkUrl\":\"\",\"id\":476,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-03-06 10:48:39\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"女生厅专属礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-03-06 10:48:39\"}},{\"virtualProductRange\":{\"roomRange\":\"17\",\"rangeName\":\"全部\",\"id\":260,\"virtualProductId\":492,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png\",\"createTime\":\"2021-05-13 15:42:15\",\"refType\":1,\"id\":73,\"virtualProductId\":492,\"content\":\"男生厅专属礼物\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":128,\"remarkUrl\":\"\",\"id\":492,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-04-20 12:01:04\",\"useStatus\":1,\"name\":\"游戏机\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 15:42:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-04-20 12:01:04\"}},{\"virtualProductRange\":{\"roomRange\":\"550751\",\"rangeName\":\"ID 550751 【CC女神】福宝嘤嘤-限时返场\\n\",\"id\":85,\"virtualProductId\":269,\"roomType\":2,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 19:37:23\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/24/e5346ea8520e42909aa8af6f8174e19f.svga\\\",\\\"remark\\\":\\\"1\\\",\\\"vapUrl\\\":\\\"\\\"}]\",\"id\":78,\"virtualProductId\":269}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f633e332d9ba4875a479749a582a66d7.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":10,\"price\":666,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/23/25bbe7150bfd401496e41d470b45ba5d.png\",\"id\":269,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":666,\"useStatus\":1,\"name\":\"福宝嘤嘤\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"2020新春限定\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-08-23 12:00:00\",\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-08-23 11:28:27\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2020-01-17 11:56:35\",\"endTime\":\"2021-09-02 11:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"929080\",\"rangeName\":\"ID 929080 【山海】皇家礼炮最后限时返厂\\n\",\"id\":86,\"virtualProductId\":270,\"roomType\":2,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 19:39:21\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/24/fab2d0dc1dc2426594f88d8e9d8d98ea.svga\\\",\\\"remark\\\":\\\"1\\\",\\\"vapUrl\\\":\\\"\\\"}]\",\"id\":80,\"virtualProductId\":270}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/1/17/a02e88973c094844af4cf1cb17d6bdc7.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":9,\"price\":888,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/8/23/8e9f1cdfb4914ff598a7c5cce4a0470f.png\",\"id\":270,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":888,\"useStatus\":1,\"name\":\"皇家礼炮\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"2020新春限定\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-08-23 12:00:00\",\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-08-23 11:27:32\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2020-01-17 11:57:43\",\"endTime\":\"2021-09-02 11:59:59\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":36,\"pages\":4,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:26:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 325毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"325毫秒","endTime":"2021-08-31 15:13:26","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:25","status":1}
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:26 GMT
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:26.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:26.332] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:26.332] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:26.834] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:26:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======
[2021-08-31 15:13:26.834] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-31 15:13:26.835] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:26.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:26.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:26.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-08-31 15:13:26.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:26.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:26.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-7740a404412e4e98a7fa7ce69a473a9f#5523052
[2021-08-31 15:13:26.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:26.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:26.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=16677017}
[2021-08-31 15:13:26.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:26.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=16677017
[2021-08-31 15:13:26.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:26.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:27.042] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:27.042] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:27.042] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:27.042] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:27.042] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:27.042] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:27.042] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:27.042] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:27.043] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:27 GMT
[2021-08-31 15:13:27.043] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:27.043] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:27.043] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:27.043] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-08-31 15:13:19","maxNum":50,"guildCode":"16677017","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":5523052,"curNum":2,"createTime":"2021-08-31 13:45:00","guildType":1,"id":1739,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:27.043] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:27.043] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:27.043] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGuildSearch--Test Mthod Success
[2021-08-31 15:13:27.043] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:27:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======
[2021-08-31 15:13:27.043] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 209毫秒======
[2021-08-31 15:13:27.043] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:27.044] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:27.044] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:27.044] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:27.044] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:27.044] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:27.044] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:27.044] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:27.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:27.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:27.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:27.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:27.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:27.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"搜索公会","caseLog":"======2021-08-31 15:13:26:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/guild-center/guild/search\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-7740a404412e4e98a7fa7ce69a473a9f#5523052\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"16677017\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=16677017\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:27 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-08-31 15:13:19\",\"maxNum\":50,\"guildCode\":\"16677017\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":5523052,\"curNum\":2,\"createTime\":\"2021-08-31 13:45:00\",\"guildType\":1,\"id\":1739,\"guildBiz\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:27:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======\r\n======本次用例运行消耗时间 209毫秒======\r","caseName":"testGuildSearch","className":"com.pipi.invoker.CosPlayerTest","durationTime":"209毫秒","endTime":"2021-08-31 15:13:27","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:26","status":1}
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:28 GMT
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:27.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:27.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:27.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:27.831] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:27:用例【com.pipi.invoker.CosPlayerTest.testMSend】开始======
[2021-08-31 15:13:27.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:27.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:27.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:27.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:27.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:27.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:27.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:27.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:27.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:27.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:27.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 15:13:27.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:27.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 15:13:27.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:27.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:28.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:28.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:28.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:28.047] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:28.047] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:28.047] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:28.047] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:28.047] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:28.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:28 GMT
[2021-08-31 15:13:28.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:28.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:28.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:28.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":0.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-31 11:13:54","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-08-31 14:38:03","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻24","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":24}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:28.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:28.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:28.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-31 15:13:28.048] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=882100, productId=496, userIds=5523052, timestamp=1621828487580}
[2021-08-31 15:13:28.119] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:28.120] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=882100&productId=496&userIds=5523052×tamp=1621828487580
[2021-08-31 15:13:28.120] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:28.120] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:29 GMT
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3Pj2JdoRsqE3S9fOEfjNpXK7VTvr9/1KuJ5+3QSF4gFUabnozv/zR45zoXBImJosob7E6nr6rFKLMBatWRZYcRmJpp6fibKZwGM0CWjOnnu88syrMTuP5ExUjihR2VShvuZQOlFelisTJsZ1/yJDm5gbu5Nqf/Au/oaIC3tZ8gHzsmO5QFM9iEBvqCiIkwwBi0FF1UPASkQ06kwrodndpX/FlmQ90SZgdITT4d2FyzcdaEHT07XLCv0oiw5l7onR5ZXzlNqYFn2Ab82Z2d6ZNh8OTBfj/tzaz+zfrNaAS3lRizRT/mPrH5ITgZMDzQ7IYzczlgiydxIdKO9XpvRp7gGalQ8fOrYyP88wMuxS4EBx0ZBa5c6iTifg5S6z3/FL9X","status":200}
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:28.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:28.602] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMSend--Test Mthod Success
[2021-08-31 15:13:28.602] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:28:用例【com.pipi.invoker.CosPlayerTest.testMSend】结束======
[2021-08-31 15:13:28.602] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 771毫秒======
[2021-08-31 15:13:28.602] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:28.602] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:28.603] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:28.604] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送魅力值礼物","caseLog":"======2021-08-31 15:13:27:用例【com.pipi.invoker.CosPlayerTest.testMSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:28 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-31 11:13:54\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 14:38:03\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"钻24\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":24}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"882100\",\"productId\":\"496\",\"userIds\":\"5523052\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=882100&productId=496&userIds=5523052×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:29 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3Pj2JdoRsqE3S9fOEfjNpXK7VTvr9/1KuJ5+3QSF4gFUabnozv/zR45zoXBImJosob7E6nr6rFKLMBatWRZYcRmJpp6fibKZwGM0CWjOnnu88syrMTuP5ExUjihR2VShvuZQOlFelisTJsZ1/yJDm5gbu5Nqf/Au/oaIC3tZ8gHzsmO5QFM9iEBvqCiIkwwBi0FF1UPASkQ06kwrodndpX/FlmQ90SZgdITT4d2FyzcdaEHT07XLCv0oiw5l7onR5ZXzlNqYFn2Ab82Z2d6ZNh8OTBfj/tzaz+zfrNaAS3lRizRT/mPrH5ITgZMDzQ7IYzczlgiydxIdKO9XpvRp7gGalQ8fOrYyP88wMuxS4EBx0ZBa5c6iTifg5S6z3/FL9X\",\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:28:用例【com.pipi.invoker.CosPlayerTest.testMSend】结束======\r\n======本次用例运行消耗时间 771毫秒======\r","caseName":"testMSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"771毫秒","endTime":"2021-08-31 15:13:28","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:27","status":1}
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:28.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:28.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:28.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:29 GMT
[2021-08-31 15:13:28.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:28.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:28.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:28.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:28.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:28.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:29.430] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:29:用例【com.pipi.invoker.CosPlayerTest.testManagerList】开始======
[2021-08-31 15:13:29.431] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/list
[2021-08-31 15:13:29.431] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:29.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:29.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/list
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:29.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:30 GMT
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询超管列表成功!","data":{"startRow":1,"lastPage":5,"navigatepageNums":[1,2,3,4,5],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"manager.create_time desc","endRow":10,"list":[{"remark":"平台服务审核监控","managerName":"彭成","userId":4421470,"userCode":"107412440","createTime":"2021-08-18 14:19:55","nickname":"皮皮巡管员","id":55,"status":0},{"remark":"平台服务审核监控","managerName":"李领桢","userId":5416383,"userCode":"138361450","createTime":"2021-08-17 14:30:01","nickname":"皮皮巡管员","id":54,"status":0},{"remark":"平台服务审核监控","managerName":"郝德龙","userId":5416522,"userCode":"122561450","createTime":"2021-08-17 14:29:08","nickname":"皮皮巡管员","id":53,"status":0},{"remark":"平台服务审核监控","managerName":"杜修齐","userId":5416386,"userCode":"168361450","createTime":"2021-08-17 14:26:31","nickname":"皮皮巡管员","id":52,"status":0},{"remark":"平台服务审核监控","managerName":"余洋","userId":5416391,"userCode":"119361450","createTime":"2021-08-17 14:25:35","nickname":"皮皮巡管员","id":51,"status":0},{"remark":"平台服务审核监控","managerName":"高先柯","userId":5315382,"userCode":"128351350","createTime":"2021-08-11 09:46:00","nickname":"皮皮巡管员","id":50,"status":0},{"remark":"平台服务审核监控","managerName":"王庆君","userId":5315386,"userCode":"168351350","createTime":"2021-08-11 09:43:55","nickname":"皮皮巡管员","id":49,"status":0},{"remark":"平台服务审核监控","managerName":"高为福","userId":5315344,"userCode":"144351350","createTime":"2021-08-11 09:40:26","nickname":"皮皮巡管员","id":48,"status":0},{"remark":"测试","managerName":"李必伟","userId":3665359,"userCode":"195356630","createTime":"2021-08-04 17:52:48","nickname":"噔噔咚","id":46,"status":1},{"remark":"平台服务审核监控","managerName":"杨星","userId":5120895,"userCode":"159802150","createTime":"2021-07-26 12:00:55","nickname":"皮皮巡管员","id":45,"status":0}],"pageNum":1,"navigatePages":8,"total":49,"pages":5,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:29.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:29.572] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testManagerList--Test Mthod Success
[2021-08-31 15:13:29.572] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:29:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======
[2021-08-31 15:13:29.572] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 142毫秒======
[2021-08-31 15:13:29.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:29.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:29.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管列表 /api/v1/rask/manager/list","caseLog":"======2021-08-31 15:13:29:用例【com.pipi.invoker.CosPlayerTest.testManagerList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:30 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询超管列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":5,\"navigatepageNums\":[1,2,3,4,5],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"manager.create_time desc\",\"endRow\":10,\"list\":[{\"remark\":\"平台服务审核监控\",\"managerName\":\"彭成\",\"userId\":4421470,\"userCode\":\"107412440\",\"createTime\":\"2021-08-18 14:19:55\",\"nickname\":\"皮皮巡管员\",\"id\":55,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"李领桢\",\"userId\":5416383,\"userCode\":\"138361450\",\"createTime\":\"2021-08-17 14:30:01\",\"nickname\":\"皮皮巡管员\",\"id\":54,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"郝德龙\",\"userId\":5416522,\"userCode\":\"122561450\",\"createTime\":\"2021-08-17 14:29:08\",\"nickname\":\"皮皮巡管员\",\"id\":53,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"杜修齐\",\"userId\":5416386,\"userCode\":\"168361450\",\"createTime\":\"2021-08-17 14:26:31\",\"nickname\":\"皮皮巡管员\",\"id\":52,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"余洋\",\"userId\":5416391,\"userCode\":\"119361450\",\"createTime\":\"2021-08-17 14:25:35\",\"nickname\":\"皮皮巡管员\",\"id\":51,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"高先柯\",\"userId\":5315382,\"userCode\":\"128351350\",\"createTime\":\"2021-08-11 09:46:00\",\"nickname\":\"皮皮巡管员\",\"id\":50,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"王庆君\",\"userId\":5315386,\"userCode\":\"168351350\",\"createTime\":\"2021-08-11 09:43:55\",\"nickname\":\"皮皮巡管员\",\"id\":49,\"status\":0},{\"remark\":\"平台服务审核监控\",\"managerName\":\"高为福\",\"userId\":5315344,\"userCode\":\"144351350\",\"createTime\":\"2021-08-11 09:40:26\",\"nickname\":\"皮皮巡管员\",\"id\":48,\"status\":0},{\"remark\":\"测试\",\"managerName\":\"李必伟\",\"userId\":3665359,\"userCode\":\"195356630\",\"createTime\":\"2021-08-04 17:52:48\",\"nickname\":\"噔噔咚\",\"id\":46,\"status\":1},{\"remark\":\"平台服务审核监控\",\"managerName\":\"杨星\",\"userId\":5120895,\"userCode\":\"159802150\",\"createTime\":\"2021-07-26 12:00:55\",\"nickname\":\"皮皮巡管员\",\"id\":45,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":49,\"pages\":5,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:29:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======\r\n======本次用例运行消耗时间 142毫秒======\r","caseName":"testManagerList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"142毫秒","endTime":"2021-08-31 15:13:29","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:29","status":1}
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:31 GMT
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:30.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:30.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:30.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:30.937] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:30:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-08-31 15:13:30.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:30.938] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:31.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:31.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:31.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:31.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:31.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:31.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:31.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:31.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:31.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 15:13:31.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:31.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 15:13:31.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:31.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:31.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:31.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:31.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:31.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:31.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:31.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:31.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:31.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:31.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:31 GMT
[2021-08-31 15:13:31.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:31.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:31.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:31.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"公爵Ⅱ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":15.00,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":62,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 14:51:27","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":356883,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:31.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:31.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:31.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-08-31 15:13:31.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:31.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774134, nickname=沉着的电脑, remark=1, chargeBalance=15.00, userId=5523051, searchValue=5523051}
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=%E6%B2%89%E7%9D%80%E7%9A%84%E7%94%B5%E8%84%91&remark=1&chargeBalance=15.00&userId=5523051&searchValue=5523051
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:31.211] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:31.341] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:31.341] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:31.341] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:31.341] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:31.341] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:32 GMT
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:31.342] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:31.342] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMoneyDetailsSave--Test Mthod Success
[2021-08-31 15:13:31.342] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:31:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-08-31 15:13:31.342] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 405毫秒======
[2021-08-31 15:13:31.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:31.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:31.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:31.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:31.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:31.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:31.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:31.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:31.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:31.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:31.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:31.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:31.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:31.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-08-31 15:13:30:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:31 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"公爵Ⅱ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":15.00,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":62,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 14:51:27\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":356883,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/save\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":1,\"balance\":\"0.00\",\"isSearch\":true,\"moneyType\":1,\"mobile\":\"13823774134\",\"nickname\":\"沉着的电脑\",\"remark\":\"1\",\"chargeBalance\":\"15.00\",\"userId\":\"5523051\",\"searchValue\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=%E6%B2%89%E7%9D%80%E7%9A%84%E7%94%B5%E8%84%91&remark=1&chargeBalance=15.00&userId=5523051&searchValue=5523051\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:32 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:31:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 405毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"405毫秒","endTime":"2021-08-31 15:13:31","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:30","status":1}
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:32 GMT
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:31.571] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:31.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:31.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:31.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:31.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:32.083] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:32:用例【com.pipi.invoker.CosPlayerTest.testQSend】开始======
[2021-08-31 15:13:32.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:32.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:32.135] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:32.135] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:32.136] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:33 GMT
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":0.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-31 11:13:54","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-08-31 14:38:03","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻24","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":24}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:32.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:32.260] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-31 15:13:32.260] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:32.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:32.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:32.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=882100, productId=410, userIds=5523052, timestamp=1621828487580}
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=882100&productId=410&userIds=5523052×tamp=1621828487580
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:32.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:32.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:32.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:32.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:32.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:32.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:32.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:32.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:32.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:32.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:33 GMT
[2021-08-31 15:13:32.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:32.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:32.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:32.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaYrULTnSJ/Gg8k3rnDgnEbrPMuX/jl6gvF4YYBEgXrJwqzKpCQ92OZ0r4f21h84Vh2+ZOZqbm1AgNgVcOaETZdEn5xlGJTXS9dbhhi0S8ort2i4Wrzi0OpwxQL1U2kChESjmqpc/r0nBzS8OgZFpNfagp7Ki18Fa8a0p9AETu3qtjr5Z4fDiAewkKCds40oP5FLCcR5vHRnaUH/Oil4mOWwMa7WdbRi9mMsRbXDTka85xvC4lqq1RJ90trsUoGOKpwXZ0hKLCqyvSdFds7rjPO1FvbmRTLQ/OvjR8SBcfI8l3z5RGfnyS8QRTOQMDTI6BWSos7M42oDdLc2MkvJq8jvOJfzRQkVkC6N/eQGTJ/LA3XPYn4iA+ZA1O7+DnCHcBGqgbwAAYtmN7SEKyUJ434rbvMGIAouxySszqnYarWvN+BbQ+a8MnjkN92i2pOlJiambbLcjQXHR+zWgWHO8BnYN0XACtuvd8N8wfYkGTdPr1/GpDYujVu8V/ZdO2wWR3WkJlbqSp3nKR+bCaHeqm+M=","status":200}
[2021-08-31 15:13:32.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:32.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:32.736] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testQSend--Test Mthod Success
[2021-08-31 15:13:32.736] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:32:用例【com.pipi.invoker.CosPlayerTest.testQSend】结束======
[2021-08-31 15:13:32.736] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 653毫秒======
[2021-08-31 15:13:32.737] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:32.737] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:32.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送全服礼物","caseLog":"======2021-08-31 15:13:32:用例【com.pipi.invoker.CosPlayerTest.testQSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13: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,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-31 11:13:54\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 14:38:03\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"钻24\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":24}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"882100\",\"productId\":\"410\",\"userIds\":\"5523052\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=882100&productId=410&userIds=5523052×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:33 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaYrULTnSJ/Gg8k3rnDgnEbrPMuX/jl6gvF4YYBEgXrJwqzKpCQ92OZ0r4f21h84Vh2+ZOZqbm1AgNgVcOaETZdEn5xlGJTXS9dbhhi0S8ort2i4Wrzi0OpwxQL1U2kChESjmqpc/r0nBzS8OgZFpNfagp7Ki18Fa8a0p9AETu3qtjr5Z4fDiAewkKCds40oP5FLCcR5vHRnaUH/Oil4mOWwMa7WdbRi9mMsRbXDTka85xvC4lqq1RJ90trsUoGOKpwXZ0hKLCqyvSdFds7rjPO1FvbmRTLQ/OvjR8SBcfI8l3z5RGfnyS8QRTOQMDTI6BWSos7M42oDdLc2MkvJq8jvOJfzRQkVkC6N/eQGTJ/LA3XPYn4iA+ZA1O7+DnCHcBGqgbwAAYtmN7SEKyUJ434rbvMGIAouxySszqnYarWvN+BbQ+a8MnjkN92i2pOlJiambbLcjQXHR+zWgWHO8BnYN0XACtuvd8N8wfYkGTdPr1/GpDYujVu8V/ZdO2wWR3WkJlbqSp3nKR+bCaHeqm+M=\",\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:32:用例【com.pipi.invoker.CosPlayerTest.testQSend】结束======\r\n======本次用例运行消耗时间 653毫秒======\r","caseName":"testQSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"653毫秒","endTime":"2021-08-31 15:13:32","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:32","status":1}
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:33 GMT
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:32.895] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:32.896] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:32.896] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:32.896] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:32.896] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:33.401] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:33:用例【com.pipi.invoker.CosPlayerTest.testRSend】开始======
[2021-08-31 15:13:33.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:33.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 15:13:33.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:33.480] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 15:13:33.480] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:33.480] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:34 GMT
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":0.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-31 11:13:54","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-08-31 14:38:03","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻24","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":24}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:33.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:33.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:33.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-31 15:13:33.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:33.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:33.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:33.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v4/room/gift/send
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=882100, productId=549, userIds=5523052, timestamp=1621828487580}
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=882100&productId=549&userIds=5523052×tamp=1621828487580
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:33.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:34 GMT
[2021-08-31 15:13:33.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:33.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:33.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:33.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPezKwxLlr0y01GgVbCZbNxMGhiDqHCDeEhQhOEYkRRbUQrr8YQVIMEi60i1G5vzwllGNrpYSMgZ9YtgKQ8AuINqKZapVbs+ZWR7a6yRRyKclWgWPBwmY7uej4J+/5G4pnX1xiOXOlK5WmCVLKvqBlckIS3un5KZiwYbBouWsEHrsaiupOwfJA64g/WTzIlvrqzzLafTFkiusQEruVigpi421PvdODwy8WdGZ3WZxdkCY3YHXMDjtgDgQyL306GKpLegJlTOl43ql5taT7tdIbI0k35JYDnhk/XR9E8xuN4mO4Towg+mxV8GOIVd5W0cGQMzhxndi0PTfJZKcQh7LJjSRMDnHFzaJGfiPaZLFfPe222cPuTWzIGev1XCscCGL1xnH8xubiA1nKMOD91Uspjm1GmjaMtUxnuoOQwFL90H85JRm6FFcAOX/mZifpVi60c=","status":200}
[2021-08-31 15:13:33.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:33.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:33.991] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRSend--Test Mthod Success
[2021-08-31 15:13:33.991] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:33:用例【com.pipi.invoker.CosPlayerTest.testRSend】结束======
[2021-08-31 15:13:33.991] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 590毫秒======
[2021-08-31 15:13:33.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:33.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:33.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送热度值礼物","caseLog":"======2021-08-31 15:13:33:用例【com.pipi.invoker.CosPlayerTest.testRSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:34 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-31 11:13:54\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 14:38:03\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"钻24\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":24}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"882100\",\"productId\":\"549\",\"userIds\":\"5523052\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=882100&productId=549&userIds=5523052×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:34 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPezKwxLlr0y01GgVbCZbNxMGhiDqHCDeEhQhOEYkRRbUQrr8YQVIMEi60i1G5vzwllGNrpYSMgZ9YtgKQ8AuINqKZapVbs+ZWR7a6yRRyKclWgWPBwmY7uej4J+/5G4pnX1xiOXOlK5WmCVLKvqBlckIS3un5KZiwYbBouWsEHrsaiupOwfJA64g/WTzIlvrqzzLafTFkiusQEruVigpi421PvdODwy8WdGZ3WZxdkCY3YHXMDjtgDgQyL306GKpLegJlTOl43ql5taT7tdIbI0k35JYDnhk/XR9E8xuN4mO4Towg+mxV8GOIVd5W0cGQMzhxndi0PTfJZKcQh7LJjSRMDnHFzaJGfiPaZLFfPe222cPuTWzIGev1XCscCGL1xnH8xubiA1nKMOD91Uspjm1GmjaMtUxnuoOQwFL90H85JRm6FFcAOX/mZifpVi60c=\",\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:33:用例【com.pipi.invoker.CosPlayerTest.testRSend】结束======\r\n======本次用例运行消耗时间 590毫秒======\r","caseName":"testRSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"590毫秒","endTime":"2021-08-31 15:13:33","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:33","status":1}
[2021-08-31 15:13:34.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:34.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:34.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:34.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:34.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:34.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:34.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:34.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:34.693] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:34.694] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:34.694] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:34.694] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:35 GMT
[2021-08-31 15:13:34.694] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:34.694] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:34.694] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:34.694] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:34.694] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:34.694] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:35.206] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:35:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======
[2021-08-31 15:13:35.206] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:35.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:35.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:35.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:35.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:35.407] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:35.407] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:35.407] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:35.407] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:35.407] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:35.407] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:35.407] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:35.407] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:35.407] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:36 GMT
[2021-08-31 15:13:35.408] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:35.408] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:35.408] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:35.408] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":0.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-31 11:13:54","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-08-31 14:38:03","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻24","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":24}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:35.408] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:35.408] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:35.408] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/room/list
[2021-08-31 15:13:35.408] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/room/list
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1, userId=5523052}
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1&userId=5523052
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:35.493] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:35.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:35.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:35.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:35.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:35.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:35.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:35.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:35.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:35.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:36 GMT
[2021-08-31 15:13:35.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:35.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:35.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:35.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"endRow":1,"list":[{"hostUserId":5523052,"scoreWeight":4123,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":31244,"virtualPeople":1,"roomType":2,"realPeople":0,"roomNo":"882100","recommendWeight":0,"sort":999,"roomName":"我的非公会厅4131","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":true,"isHot":false,"template":1,"hostMobile":"13823774131","remark":"我的非公会厅4131","roomCode":"882100","sortWeight":0,"isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","closeTime":"2021-08-31 14:54:08","orderRoomSerial":"1","openTime":"2021-08-31 14:54:14","roomCategoryId":2,"collectCount":0,"micDuration":900,"isShow":true,"hostUserName":"test","createTime":"2021-08-31 11:29:19"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:35.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:35.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:35.583] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomList--Test Mthod Success
[2021-08-31 15:13:35.583] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:35:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======
[2021-08-31 15:13:35.583] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 377毫秒======
[2021-08-31 15:13:35.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:35.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:35.584] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:35.585] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:35.585] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询房间","caseLog":"======2021-08-31 15:13:35:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:36 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-31 11:13:54\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 14:38:03\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"钻24\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":24}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/room/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":10,\"pageNum\":1,\"userId\":\"5523052\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1&userId=5523052\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:36 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"endRow\":1,\"list\":[{\"hostUserId\":5523052,\"scoreWeight\":4123,\"roomInfoTagList\":[],\"roomStatus\":1,\"password\":\"123456\",\"isOpenChat\":true,\"roomCategoryName\":\"派单\",\"id\":31244,\"virtualPeople\":1,\"roomType\":2,\"realPeople\":0,\"roomNo\":\"882100\",\"recommendWeight\":0,\"sort\":999,\"roomName\":\"我的非公会厅4131\",\"roomInfoTagConfigList\":[],\"roomVipCount\":15,\"basicHotValue\":0,\"isActivate\":true,\"isHot\":false,\"template\":1,\"hostMobile\":\"13823774131\",\"remark\":\"我的非公会厅4131\",\"roomCode\":\"882100\",\"sortWeight\":0,\"isLock\":false,\"roomIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg\",\"closeTime\":\"2021-08-31 14:54:08\",\"orderRoomSerial\":\"1\",\"openTime\":\"2021-08-31 14:54:14\",\"roomCategoryId\":2,\"collectCount\":0,\"micDuration\":900,\"isShow\":true,\"hostUserName\":\"test\",\"createTime\":\"2021-08-31 11:29:19\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:35:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======\r\n======本次用例运行消耗时间 377毫秒======\r","caseName":"testRoomList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"377毫秒","endTime":"2021-08-31 15:13:35","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:35","status":1}
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:37 GMT
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:36.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:36.819] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:37.322] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:37:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】开始======
[2021-08-31 15:13:37.322] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/room/record
[2021-08-31 15:13:37.323] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:37.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:37.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:37.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/room/record
[2021-08-31 15:13:37.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:37.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:37.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:37.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:37.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:37.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-08-31 15:13:37.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:37.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-08-31 15:13:37.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:37.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:38 GMT
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:38.093] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询超管房间记录成功!","data":{"startRow":1,"lastPage":8,"navigatepageNums":[1,2,3,4,5,6,7,8],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"record.enter_time desc","endRow":10,"list":[{"roomNo":"396674","quitTime":"2021-08-31 15:13:38","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"点唱测试","adminId":15,"id":114311,"enterTime":"2021-08-30 15:00:35"},{"roomNo":"963806","quitTime":"2021-08-30 15:00:34","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114310,"enterTime":"2021-08-30 14:49:47"},{"roomNo":"963806","quitTime":"2021-08-30 14:49:47","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114309,"enterTime":"2021-08-30 14:11:17"},{"roomNo":"963806","quitTime":"2021-08-30 14:11:17","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114308,"enterTime":"2021-08-30 11:39:40"},{"roomNo":"963806","quitTime":"2021-08-30 11:39:40","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114307,"enterTime":"2021-08-30 11:31:09"},{"roomNo":"963806","quitTime":"2021-08-30 11:31:09","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114306,"enterTime":"2021-08-30 11:31:04"},{"roomNo":"963806","quitTime":"2021-08-30 11:31:04","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114305,"enterTime":"2021-08-30 11:27:14"},{"roomNo":"963806","quitTime":"2021-08-30 11:27:14","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114304,"enterTime":"2021-08-30 11:27:08"},{"roomNo":"963806","quitTime":"2021-08-30 11:27:08","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114303,"enterTime":"2021-08-30 11:27:05"},{"roomNo":"963806","quitTime":"2021-08-30 11:27:05","managerName":"Tommiy","userId":1386490,"userCode":"109468310","roomName":"男生测试","adminId":15,"id":114302,"enterTime":"2021-08-30 11:27:00"}],"pageNum":1,"navigatePages":8,"total":114311,"pages":11432,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:38.094] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:38.094] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:38.094] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomRecord--Test Mthod Success
[2021-08-31 15:13:38.094] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:38:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======
[2021-08-31 15:13:38.094] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 772毫秒======
[2021-08-31 15:13:38.094] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:38.094] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:38.095] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管巡查记录 /api/v1/rask/manager/room/record","caseLog":"======2021-08-31 15:13:37:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/rask/manager/room/record\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:38 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询超管房间记录成功!\",\"data\":{\"startRow\":1,\"lastPage\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"record.enter_time desc\",\"endRow\":10,\"list\":[{\"roomNo\":\"396674\",\"quitTime\":\"2021-08-31 15:13:38\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"点唱测试\",\"adminId\":15,\"id\":114311,\"enterTime\":\"2021-08-30 15:00:35\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 15:00:34\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114310,\"enterTime\":\"2021-08-30 14:49:47\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 14:49:47\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114309,\"enterTime\":\"2021-08-30 14:11:17\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 14:11:17\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114308,\"enterTime\":\"2021-08-30 11:39:40\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 11:39:40\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114307,\"enterTime\":\"2021-08-30 11:31:09\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 11:31:09\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114306,\"enterTime\":\"2021-08-30 11:31:04\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 11:31:04\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114305,\"enterTime\":\"2021-08-30 11:27:14\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 11:27:14\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114304,\"enterTime\":\"2021-08-30 11:27:08\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 11:27:08\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114303,\"enterTime\":\"2021-08-30 11:27:05\"},{\"roomNo\":\"963806\",\"quitTime\":\"2021-08-30 11:27:05\",\"managerName\":\"Tommiy\",\"userId\":1386490,\"userCode\":\"109468310\",\"roomName\":\"男生测试\",\"adminId\":15,\"id\":114302,\"enterTime\":\"2021-08-30 11:27:00\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":114311,\"pages\":11432,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:38:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======\r\n======本次用例运行消耗时间 772毫秒======\r","caseName":"testRoomRecord","className":"com.pipi.invoker.CosPlayerTest","durationTime":"772毫秒","endTime":"2021-08-31 15:13:38","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:37","status":1}
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:39 GMT
[2021-08-31 15:13:38.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:38.282] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:38.282] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:38.282] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:38.282] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:38.282] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:38.787] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:38:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======
[2021-08-31 15:13:38.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-08-31 15:13:38.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:38.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:38.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:38.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=882100, type=2}
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=882100&type=2
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:38.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:39.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:39.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:39.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:39.073] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:39 GMT
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":[],"status":200}
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:39.074] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:39.074] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpList--Test Mthod Success
[2021-08-31 15:13:39.074] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:39:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======
[2021-08-31 15:13:39.074] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 287毫秒======
[2021-08-31 15:13:39.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:39.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:39.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:39.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:39.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取上麦、试音申请列表数据","caseLog":"======2021-08-31 15:13:38:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"882100\",\"type\":\"2\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=882100&type=2\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:39 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":[],\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:39:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======\r\n======本次用例运行消耗时间 287毫秒======\r","caseName":"testUpList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"287毫秒","endTime":"2021-08-31 15:13:39","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:38","status":1}
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:39 GMT
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:39.191] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:39.704] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:39:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======
[2021-08-31 15:13:39.705] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-08-31 15:13:39.705] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:39.799] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:39.799] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:39.799] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-08-31 15:13:39.799] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:39.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:39.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:39.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:39.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:39.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {types=2, roomNo=882100}
[2021-08-31 15:13:39.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:39.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - types=2&roomNo=882100
[2021-08-31 15:13:39.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:39.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:39.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:39.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:40 GMT
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"2":{"alreadyInList":false,"people":0}},"status":200}
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:39.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:39.927] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpSize--Test Mthod Success
[2021-08-31 15:13:39.927] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:39:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======
[2021-08-31 15:13:39.928] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 223毫秒======
[2021-08-31 15:13:39.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:39.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:39.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:39.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:39.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:39.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:39.929] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:39.929] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:39.929] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:39.929] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:39.929] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:39.929] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:39.929] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:39.929] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取聊天室内上麦试音队列、点单队列等","caseLog":"======2021-08-31 15:13:39:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v1/room/mic/up/size\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"types\":\"2\",\"roomNo\":\"882100\"}\r\n###Http Request queryString after URLEncoder### :\r\ntypes=2&roomNo=882100\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:40 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-31 15:13:39:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======\r\n======本次用例运行消耗时间 223毫秒======\r","caseName":"testUpSize","className":"com.pipi.invoker.CosPlayerTest","durationTime":"223毫秒","endTime":"2021-08-31 15:13:39","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:39","status":1}
[2021-08-31 15:13:40.140] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:40 GMT
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:40.141] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:40.654] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:40:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======
[2021-08-31 15:13:40.655] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:40.655] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:40.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:40.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:41 GMT
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"公爵Ⅲ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":16.00,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":63,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 14:51:27","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":304883,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:40.845] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:40.846] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUserList--Test Mthod Success
[2021-08-31 15:13:40.846] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:40:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======
[2021-08-31 15:13:40.846] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 192毫秒======
[2021-08-31 15:13:40.846] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:40.846] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:40.847] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"用户信息","caseLog":"======2021-08-31 15:13:40:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:41 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"公爵Ⅲ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":16.00,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":63,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 14:51:27\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":304883,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:40:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======\r\n======本次用例运行消耗时间 192毫秒======\r","caseName":"testUserList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"192毫秒","endTime":"2021-08-31 15:13:40","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:40","status":1}
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:40 GMT
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:40.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:41.436] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:41:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-08-31 15:13:41.436] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:41.436] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:41.523] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:41.524] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:42 GMT
[2021-08-31 15:13:41.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:41.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:41.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:41.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"公爵Ⅲ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":16.00,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":63,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 14:51:27","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":304883,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:41.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:41.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:41.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-08-31 15:13:41.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:41.720] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:41.720] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:41.720] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-08-31 15:13:41.720] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:41.720] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:41.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:41.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:41.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:41.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=52000, remark=1, type=1, userId=5523051}
[2021-08-31 15:13:41.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:41.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=52000&remark=1&type=1&userId=5523051
[2021-08-31 15:13:41.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:41.721] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:42 GMT
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:41.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:41.830] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testVirtualMoneyModify--Test Mthod Success
[2021-08-31 15:13:41.830] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:41:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-08-31 15:13:41.830] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 394毫秒======
[2021-08-31 15:13:41.830] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:41.830] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:41.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-08-31 15:13:41:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:42 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"公爵Ⅲ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":16.00,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":63,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 14:51:27\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":304883,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":52000,\"remark\":\"1\",\"type\":1,\"userId\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=52000&remark=1&type=1&userId=5523051\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:42 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:41:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 394毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"394毫秒","endTime":"2021-08-31 15:13:41","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:41","status":1}
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:41.973] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:42 GMT
[2021-08-31 15:13:41.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:41.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:41.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:41.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:41.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:41.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:42.478] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:42:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======
[2021-08-31 15:13:42.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-08-31 15:13:42.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {activityId=188, times=1, roomNo=882100, timestamp=1621828487580}
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - activityId=188×=1&roomNo=882100×tamp=1621828487580
[2021-08-31 15:13:42.546] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:42.547] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:43 GMT
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"开宝箱成功!","data":"iIK4VEePuLmptPgrFTITtfqR/mX0e730T4ok+sumkLBFae8OOhdWUbK3Uh4gcjO9SO5hvHWXV8seOh+ufX9AiRI+KXpLzCF9ni7L5IyExffXxwPgDpep5vtI0mVaWY436QfVZDUYuMugBgLDY0k+ktNIyBFkv71bdvWOdV99i+v95llITH1LgRicjTs879Gxxrt65Yp2mePYyUPDnX88hOh3hN5GelZMoex10DN/EfAjkl2hDj6i7HYhfcpQxEbkX0OnHKKxoJptw11/+vXjag5hAgEVOHNT1qK4yYtBMiQqV782L4ymQ9/mbHDiI+QxyZZBgTZTNai7bUaYV+xd13WL+HJq00Jdx3GKPx60KNjehGpSuebsR7imaXlQCU5Mafsd8lKXha265qJIRKuAATu0QWwWgJen682iQ8N4AHbDCcVEjxiP5fcUElBr6yLHXcfaquU76b6AoCkRsKkjZBx23QVC6RO/DeOWjjb2zDlI82CzP/gjW4uCNyVmPFFurtXDNwvVJkWFfCs6NZnZ988y5f+OXqC8XhhgESBesnBjz+LYCQxVsi69idMjLfLdZFqpk0pnvNXGrHoaEydaSf2rwz+yyL/ONOF3FnvZf3f/anRk9KoFIggIqcsYCpJlwaB26zi60iL9BxBZJfxj8Q5DTIbMq49u61ZKRRcW3u0+TKBV5RXG+gaKMdeMMogq7HBYzrpFPgsVTK98fIlL1g==","status":200}
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:42.968] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:42.969] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testLotteryActivity--Test Mthod Success
[2021-08-31 15:13:42.969] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:42:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======
[2021-08-31 15:13:42.969] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 491毫秒======
[2021-08-31 15:13:42.969] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:42.969] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:42.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"开宝箱","caseLog":"======2021-08-31 15:13:42:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-81cf94ee4b9d4c5693ca323499cbaf1d#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"activityId\":\"188\",\"times\":\"1\",\"roomNo\":\"882100\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactivityId=188×=1&roomNo=882100×tamp=1621828487580\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:43 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"开宝箱成功!\",\"data\":\"iIK4VEePuLmptPgrFTITtfqR/mX0e730T4ok+sumkLBFae8OOhdWUbK3Uh4gcjO9SO5hvHWXV8seOh+ufX9AiRI+KXpLzCF9ni7L5IyExffXxwPgDpep5vtI0mVaWY436QfVZDUYuMugBgLDY0k+ktNIyBFkv71bdvWOdV99i+v95llITH1LgRicjTs879Gxxrt65Yp2mePYyUPDnX88hOh3hN5GelZMoex10DN/EfAjkl2hDj6i7HYhfcpQxEbkX0OnHKKxoJptw11/+vXjag5hAgEVOHNT1qK4yYtBMiQqV782L4ymQ9/mbHDiI+QxyZZBgTZTNai7bUaYV+xd13WL+HJq00Jdx3GKPx60KNjehGpSuebsR7imaXlQCU5Mafsd8lKXha265qJIRKuAATu0QWwWgJen682iQ8N4AHbDCcVEjxiP5fcUElBr6yLHXcfaquU76b6AoCkRsKkjZBx23QVC6RO/DeOWjjb2zDlI82CzP/gjW4uCNyVmPFFurtXDNwvVJkWFfCs6NZnZ988y5f+OXqC8XhhgESBesnBjz+LYCQxVsi69idMjLfLdZFqpk0pnvNXGrHoaEydaSf2rwz+yyL/ONOF3FnvZf3f/anRk9KoFIggIqcsYCpJlwaB26zi60iL9BxBZJfxj8Q5DTIbMq49u61ZKRRcW3u0+TKBV5RXG+gaKMdeMMogq7HBYzrpFPgsVTK98fIlL1g==\",\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:42:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======\r\n======本次用例运行消耗时间 491毫秒======\r","caseName":"testLotteryActivity","className":"com.pipi.invoker.CosPlayerTest","durationTime":"491毫秒","endTime":"2021-08-31 15:13:42","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:42","status":1}
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:44 GMT
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:43.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:43.249] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:43.249] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:43.757] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:13:43:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======
[2021-08-31 15:13:43.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:43.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:43.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:43.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:43.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:13:43.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:43.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:43.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b21ece805d284fc58c5e869c836a610b
[2021-08-31 15:13:43.837] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:43.837] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:43.837] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 15:13:43.837] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:43.837] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 15:13:43.837] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:43.837] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:43.948] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:43.948] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:43.948] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:43.948] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:43.948] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:44 GMT
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":0,"platformAuthUrl":"","platformAuth":0,"nobleName":"公爵Ⅲ","type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":16.00,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":63,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 14:51:27","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":356882,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-08-31 15:13:43.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:44.026] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-7740a404412e4e98a7fa7ce69a473a9f#5523052
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {userId=5523051}
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - userId=5523051
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:44.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:13:44.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:44.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:44.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:45 GMT
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","status":200}
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:44.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:44.402] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRemove--Test Mthod Success
[2021-08-31 15:13:44.402] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:13:44:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======
[2021-08-31 15:13:44.402] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 645毫秒======
[2021-08-31 15:13:44.403] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:44.403] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:44.403] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:44.403] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:44.403] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:13:44.403] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:44.403] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:44.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:44.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:44.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:44.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:44.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:44.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:44.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"将成员从公会移除","caseLog":"======2021-08-31 15:13:43:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"b21ece805d284fc58c5e869c836a610b\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:44 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"公爵Ⅲ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":16.00,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":63,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 14:51:27\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":356882,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-guild-api.apeiwan.com/api/v2/guild-member/remove\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-7740a404412e4e98a7fa7ce69a473a9f#5523052\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"userId\":\"5523051\"}\r\n###Http Request queryString after URLEncoder### :\r\nuserId=5523051\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:13:45 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"status\":200}\r\n===================================\r\n======2021-08-31 15:13:44:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======\r\n======本次用例运行消耗时间 645毫秒======\r","caseName":"testRemove","className":"com.pipi.invoker.CosPlayerTest","durationTime":"645毫秒","endTime":"2021-08-31 15:13:44","id":0,"serviceId":1,"startTime":"2021-08-31 15:13:43","status":1}
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:45 GMT
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:45.027] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:45.549] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetMine
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testVirtualMoneyModify
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGethome
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomList
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testAuditGuild
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpList
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMoneyDetailsSave
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUserList
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRSend
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomRecord
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRemove
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple2
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testManagerList
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testLotteryActivity
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserBalance
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMSend
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpSize
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGuildSearch
[2021-08-31 15:13:45.550] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testQSend
[2021-08-31 15:13:45.551] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:22
[2021-08-31 15:13:45.551] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 15:13:45.551] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 15:13:45.554] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 15:13:45.555] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 15:13:45.559] [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-31 15:13:45.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:13:45.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"33秒549毫秒","endTime":"2021-08-31 15:13:45","env":"pre-test","failed":0,"id":0,"passed":22,"serviceId":1,"skipped":0,"startTime":"2021-08-31 15:13:12","status":1,"teamId":0,"total":22}
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:13:47 GMT
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:13:47.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:13:47.135] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-31 15:13:45:测试集结束======
[2021-08-31 15:13:47.135] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 33秒549毫秒======
[2021-08-31 15:47:28.831] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 15:47:28.894] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 15:47:28:测试集开始======
[2021-08-31 15:47:29.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 15:47:29.119] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:47:30.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:47:30.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:47:30.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 15:47:30.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:47:30.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:47:30.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:47:30.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:47:30.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-08-31 15:47:30.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:47:30.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-08-31 15:47:30.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:47:30.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:47:31.274] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:47:31.274] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:47:31.274] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:47:31 GMT
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"65301227c7804414a6c4e498afde15a4","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-08-31 15:47:31.275] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:47:31.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:47:31.276] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:47:31.277] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:47:31.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:47:31.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:47:31.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:47:31.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:47:31.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:47:31.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:47:31.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:47:31.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-31 15:47:31.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:47:31.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-31 15:47:31.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:47:31.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:47:32.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:47:32.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:47:32.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:47:32.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:47:32.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:47:32.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:47:32.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:47:32.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 15:47:32.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:47:33 GMT
[2021-08-31 15:47:32.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:47:32.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:47:32.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:47:32.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 15:47:32.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:47:32.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:47:32.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:47:32.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:47:32.603] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:47:32.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:47:33.680] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:47:33.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:47:33.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:47:33.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:47:33.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:47:33.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:47:33.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:47:33.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:933
[2021-08-31 15:47:33.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:47:33 GMT
[2021-08-31 15:47:33.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:47:33.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:47:33.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:47:33.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":0,"platformAuth":0,"type":1,"userCode":"115032550","nickname":"沉着的电脑","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","memberExp":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","imId":"5523051_20210831","token":"APP-f334bf49586143d9b52ddd4ab48bde04#5523051","createTime":"2021-08-31 11:13:53","newUser":false,"status":1},"status":200}
[2021-08-31 15:47:33.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:47:33.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:47:33.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:47:33.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:47:33.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:47:33.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:47:33.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:47:33.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:47:33.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:47:33.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:47:33.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:47:33.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-31 15:47:33.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:47:33.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-31 15:47:33.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:47:33.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:47:34.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:47:35 GMT
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 15:47:34.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:47:34.502] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:47:34.502] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:47:34.502] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:47:34.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:47:35.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:47:35.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:47:35.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:47:35.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:47:35.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:47:35.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:47:35.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:47:35.299] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:931
[2021-08-31 15:47:35.300] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:47:36 GMT
[2021-08-31 15:47:35.300] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:47:35.300] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:47:35.300] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:47:35.300] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"platformAuth":0,"type":2,"userCode":"125032550","nickname":"test","id":5523052,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","imId":"5523052_20210831","token":"APP-8227a2b9552d4e428d6fea19a5c0528f#5523052","createTime":"2021-08-31 11:13:54","newUser":false,"status":1},"status":200}
[2021-08-31 15:47:35.300] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:47:35.300] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:47:35.307] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:47:35:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】开始======
[2021-08-31 15:47:35.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:47:35.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:47:35.461] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:65301227c7804414a6c4e498afde15a4
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:47:35.462] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:47:38 GMT
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:47:37.626] [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":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":0.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-31 11:13:54","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-08-31 15:47:35","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻25","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":25}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:47:37.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:47:37.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:47:37.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v3/user/get-mine
[2021-08-31 15:47:37.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:47:37.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:47:37.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v3/user/get-mine
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-f334bf49586143d9b52ddd4ab48bde04#5523051
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {giftProductId=14, amount=1, dynamicId=, rewardOrderNo=, toUserId=5523052, SendGiftScene=1, timestamp=1630395325064}
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - giftProductId=14&amount=1&dynamicId=&rewardOrderNo=&toUserId=5523052&SendGiftScene=1×tamp=1630395325064
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:47:37.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:47:39.394] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:47:40 GMT
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"signFlag":false,"userInfo":{"platformAuthUrl":"","nobleRankName":"公爵Ⅲ","type":1,"emblemSimpleUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/7ba9be872a0846fd871767b817ac5fba.png","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":63,"skillsGroup":"b44f12547c1d455c8cf8aba14ed22e7f","totalFootprints":0,"gender":0,"managerPermit":false,"userCode":"115032550","nickname":"沉着的电脑","emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/82bb607e88fa47c2a6da7da6a561d4b6.png","memberLevel":0,"mobile":"13823774134","attentions":0,"imPsw":"b739ce120f584a7597187eecc691bba8","userId":5523051,"imId":"5523051_20210831","fans":0,"popularityInfo":{"levelCode":0,"backgroundColor":"#E99A53,#FDC07D","levelName":"暂无等级","iconUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/07/12/a44eda5f4f40f8899a273117eab91722.png","userId":5523051},"isInGuild":false,"isRicher":false,"totalAccessedCnt":0},"signDays":1,"userSetting":{"orderMsg":1,"productNotifySettings":[],"noticeMsg":1,"userId":5523051,"newMessageReminder":1,"proclamationMsg":1,"assignOrderMsgDnd":false,"robOrderMsgDnd":true,"messageDetail":1,"assignMsg":1},"userTypeList":[],"showGuildCenter":false,"signImg":"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png","userAlertInfo":{"orderNoPayAmount":0,"orderWaitingAmount":0,"guildApplyCount":0,"welfareCount":1,"grabOrderAmount":0,"addCouponCount":0}},"status":200}
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:47:39.395] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:47:39.399] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testPipibiSend--Test Mthod Success
[2021-08-31 15:47:39.399] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:47:39:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】结束======
[2021-08-31 15:47:39.399] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 04秒092毫秒======
[2021-08-31 15:47:39.409] [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-31 15:47:39.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:47:39.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送皮皮币礼物","caseLog":"======2021-08-31 15:47:35:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"65301227c7804414a6c4e498afde15a4\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:47:38 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-31 11:13:54\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 15:47:35\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"钻25\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":25}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v3/user/get-mine\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-f334bf49586143d9b52ddd4ab48bde04#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"giftProductId\":\"14\",\"amount\":\"1\",\"dynamicId\":\"\",\"rewardOrderNo\":\"\",\"toUserId\":\"5523052\",\"SendGiftScene\":\"1\",\"timestamp\":\"1630395325064\"}\r\n###Http Request queryString after URLEncoder### :\r\ngiftProductId=14&amount=1&dynamicId=&rewardOrderNo=&toUserId=5523052&SendGiftScene=1×tamp=1630395325064\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:47:40 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"signFlag\":false,\"userInfo\":{\"platformAuthUrl\":\"\",\"nobleRankName\":\"公爵Ⅲ\",\"type\":1,\"emblemSimpleUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/7ba9be872a0846fd871767b817ac5fba.png\",\"id\":5523051,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":63,\"skillsGroup\":\"b44f12547c1d455c8cf8aba14ed22e7f\",\"totalFootprints\":0,\"gender\":0,\"managerPermit\":false,\"userCode\":\"115032550\",\"nickname\":\"沉着的电脑\",\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/82bb607e88fa47c2a6da7da6a561d4b6.png\",\"memberLevel\":0,\"mobile\":\"13823774134\",\"attentions\":0,\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"userId\":5523051,\"imId\":\"5523051_20210831\",\"fans\":0,\"popularityInfo\":{\"levelCode\":0,\"backgroundColor\":\"#E99A53,#FDC07D\",\"levelName\":\"暂无等级\",\"iconUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/07/12/a44eda5f4f40f8899a273117eab91722.png\",\"userId\":5523051},\"isInGuild\":false,\"isRicher\":false,\"totalAccessedCnt\":0},\"signDays\":1,\"userSetting\":{\"orderMsg\":1,\"productNotifySettings\":[],\"noticeMsg\":1,\"userId\":5523051,\"newMessageReminder\":1,\"proclamationMsg\":1,\"assignOrderMsgDnd\":false,\"robOrderMsgDnd\":true,\"messageDetail\":1,\"assignMsg\":1},\"userTypeList\":[],\"showGuildCenter\":false,\"signImg\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/uploadfile/2021/05/17/f506759c2cac9a81b294ce80aba0b48b.png\",\"userAlertInfo\":{\"orderNoPayAmount\":0,\"orderWaitingAmount\":0,\"guildApplyCount\":0,\"welfareCount\":1,\"grabOrderAmount\":0,\"addCouponCount\":0}},\"status\":200}\r\n===================================\r\n======2021-08-31 15:47:39:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】结束======\r\n======本次用例运行消耗时间 04秒092毫秒======\r","caseName":"testPipibiSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"04秒092毫秒","endTime":"2021-08-31 15:47:39","id":0,"serviceId":1,"startTime":"2021-08-31 15:47:35","status":1}
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:47:39.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:47:40 GMT
[2021-08-31 15:47:39.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:47:39.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:47:39.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:47:39.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:47:39.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:47:39.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:47:40.194] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testPipibiSend
[2021-08-31 15:47:40.194] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-08-31 15:47:40.194] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 15:47:40.194] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 15:47:40.197] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 15:47:40.199] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 15:47:40.203] [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-31 15:47:40.203] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:47:40.204] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"11秒301毫秒","endTime":"2021-08-31 15:47:40","env":"pre-test","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-08-31 15:47:28","status":1,"teamId":0,"total":1}
[2021-08-31 15:47:43.210] [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-31 15:47:43.212] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:26.948] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 15:49:27.011] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 15:49:27:测试集开始======
[2021-08-31 15:49:27.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 15:49:27.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:49:27.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:49:27.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:49:27.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 15:49:27.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:49:27.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:49:27.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:49:27.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:49:27.319] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-08-31 15:49:27.319] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:49:27.319] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-08-31 15:49:27.319] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:49:27.319] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:49:27.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:49:28 GMT
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:49:27.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"8d79ed4452f448a5a40ad58d2b9ecc8c","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-08-31 15:49:27.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:49:27.444] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:27.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:49:27.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:49:27.515] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:49:27.515] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:49:27.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:49:27.607] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:49:28 GMT
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:49:27.608] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 15:49:27.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:49:27.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:27.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:49:27.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:49:27.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:49:27.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:49:27.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:49:27.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:49:27.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:49:27.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:49:27.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:49:27.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-31 15:49:27.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:49:27.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-31 15:49:27.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:49:27.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:49:27.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:49:27.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:49:27.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:49:27.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:49:27.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:49:27.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:49:27.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:49:27.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:933
[2021-08-31 15:49:27.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:49:28 GMT
[2021-08-31 15:49:27.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:49:27.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:49:27.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:49:27.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":0,"platformAuth":0,"type":1,"userCode":"115032550","nickname":"沉着的电脑","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","memberExp":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","imId":"5523051_20210831","token":"APP-9f2b7ee6af994641b57d7eb4e876ebf1#5523051","createTime":"2021-08-31 11:13:53","newUser":false,"status":1},"status":200}
[2021-08-31 15:49:27.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:49:27.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:27.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:49:27.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:49:27.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:49:27.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:49:27.873] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 15:49:27.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:49:27.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:49:27.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:49:27.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:49:27.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-31 15:49:27.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:49:27.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-31 15:49:27.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:49:27.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:49:28 GMT
[2021-08-31 15:49:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:49:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:49:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:49:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 15:49:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:49:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:49:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:49:28.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:49:28.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:49:28.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:49:28.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:49:28.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:49:28.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:49:28.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:49:28.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:49:28.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:931
[2021-08-31 15:49:28.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:49:28 GMT
[2021-08-31 15:49:28.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:49:28.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:49:28.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:49:28.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"platformAuth":0,"type":2,"userCode":"125032550","nickname":"test","id":5523052,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","imId":"5523052_20210831","token":"APP-e77f2de29e064321962664428397646d#5523052","createTime":"2021-08-31 11:13:54","newUser":false,"status":1},"status":200}
[2021-08-31 15:49:28.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:49:28.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:28.125] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 15:49:28:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】开始======
[2021-08-31 15:49:28.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:49:28.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:49:28.176] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:49:28.176] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:49:28.176] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:8d79ed4452f448a5a40ad58d2b9ecc8c
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:49:28.177] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:49:28.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:49:28.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:49:28.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:49:28.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:49:28.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:49:28.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 15:49:28.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:49:28.297] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:49:28.298] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:49:29 GMT
[2021-08-31 15:49:28.298] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:49:28.298] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:49:28.298] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:49:28.298] [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":0,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":0.00,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-08-31 11:13:54","userInfoAuth":2,"status":1,"gender":1,"registerType":0,"guildCode":"16677017","userCode":"125032550","loginTime":"2021-08-31 15:47:35","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻25","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false,"popularityLevelCode":25}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 15:49:28.298] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:49:28.298] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:28.298] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/gift-product/send-gift
[2021-08-31 15:49:28.298] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:49:28.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:49:28.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:49:28.371] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/gift-product/send-gift
[2021-08-31 15:49:28.371] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 15:49:28.371] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:49:28.372] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-9f2b7ee6af994641b57d7eb4e876ebf1#5523051
[2021-08-31 15:49:28.372] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 15:49:28.372] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:49:28.372] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {giftProductId=14, amount=1, dynamicId=, rewardOrderNo=, toUserId=5523052, SendGiftScene=1, timestamp=1630395325064}
[2021-08-31 15:49:28.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:49:28.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - giftProductId=14&amount=1&dynamicId=&rewardOrderNo=&toUserId=5523052&SendGiftScene=1×tamp=1630395325064
[2021-08-31 15:49:28.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:49:28.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 15:49:28.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:49:28.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:49:28.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 15:49:28.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:49:28.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:49:28.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 15:49:28.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:49:28.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 15:49:28.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:49:29 GMT
[2021-08-31 15:49:28.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 15:49:28.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:49:28.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:49:28.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":{"data":"1NpJum+cvX3MKJmVVjCNpIzMyV5FvTJRS0DgUGSXFggTJNt2FvhbybSrVvEWJaR3brtSLevF0c1UcAfylGQwYH3wu6aQjw/7peNvWzN1ivE="},"status":200}
[2021-08-31 15:49:28.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:49:28.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:28.847] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testPipibiSend--Test Mthod Success
[2021-08-31 15:49:28.847] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 15:49:28:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】结束======
[2021-08-31 15:49:28.847] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 722毫秒======
[2021-08-31 15:49:28.857] [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-31 15:49:28.858] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:49:28.859] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送皮皮币礼物","caseLog":"======2021-08-31 15:49:28:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"8d79ed4452f448a5a40ad58d2b9ecc8c\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:49:29 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":0.00,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-08-31 11:13:54\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 15:47:35\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"钻25\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false,\"popularityLevelCode\":25}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v1/gift-product/send-gift\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-9f2b7ee6af994641b57d7eb4e876ebf1#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"giftProductId\":\"14\",\"amount\":\"1\",\"dynamicId\":\"\",\"rewardOrderNo\":\"\",\"toUserId\":\"5523052\",\"SendGiftScene\":\"1\",\"timestamp\":\"1630395325064\"}\r\n###Http Request queryString after URLEncoder### :\r\ngiftProductId=14&amount=1&dynamicId=&rewardOrderNo=&toUserId=5523052&SendGiftScene=1×tamp=1630395325064\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 07:49:29 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":{\"data\":\"1NpJum+cvX3MKJmVVjCNpIzMyV5FvTJRS0DgUGSXFggTJNt2FvhbybSrVvEWJaR3brtSLevF0c1UcAfylGQwYH3wu6aQjw/7peNvWzN1ivE=\"},\"status\":200}\r\n===================================\r\n======2021-08-31 15:49:28:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】结束======\r\n======本次用例运行消耗时间 722毫秒======\r","caseName":"testPipibiSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"722毫秒","endTime":"2021-08-31 15:49:28","id":0,"serviceId":1,"startTime":"2021-08-31 15:49:28","status":1}
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:49:29 GMT
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:49:29.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:29.598] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testPipibiSend
[2021-08-31 15:49:29.599] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-08-31 15:49:29.599] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 15:49:29.599] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 15:49:29.602] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 15:49:29.603] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 15:49:29.607] [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-31 15:49:29.607] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 15:49:29.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 15:49:29.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"02秒588毫秒","endTime":"2021-08-31 15:49:29","env":"pre-test","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-08-31 15:49:27","status":1,"teamId":0,"total":1}
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 07:49:32 GMT
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 15:49:31.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 15:49:31.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 15:49:31.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 15:49:31.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 15:49:31.563] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 15:49:31.563] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-31 15:49:29:测试集结束======
[2021-08-31 15:49:31.563] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒588毫秒======