debug.log
698 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
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
[2021-08-31 16:35:57.326] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 16:35:57.391] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 16:35:57:测试集开始======
[2021-08-31 16:35:57.630] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 16:35:57.750] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:35:57.938] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:35:57.938] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:35:57.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 16:35:57.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:35:57.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:35:57.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:35:57.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:35:57.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-08-31 16:35:57.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:35:57.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-08-31 16:35:57.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:35:57.940] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:35:58 GMT
[2021-08-31 16:35:58.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:35:58.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:35:58.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:35:58.087] [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":"d951c25af93a47d3ae8d43219d75fadf","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-08-31 16:35:58.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:35:58.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:35:58.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:35:58.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:35:58.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:35:58.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:35:58.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:35:58.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:35:58.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:35:58.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:35:58.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:35:58.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-31 16:35:58.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:35:58.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-31 16:35:58.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:35:58.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:35:58.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:35:58.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:35:58.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:35:58.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:35:58.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:35:58.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:35:58.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:35:58.370] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 16:35:58.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:35:59 GMT
[2021-08-31 16:35:58.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:35:58.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:35:58.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:35:58.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 16:35:58.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:35:58.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:35:58.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:35:58.372] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:35:59.625] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:35:59.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:35:59.742] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:35:59.743] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:35:59.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:35:59.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:35:59.744] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:35:59.745] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:35:59.745] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:35:59.745] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:933
[2021-08-31 16:35:59.745] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:00 GMT
[2021-08-31 16:35:59.746] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:35:59.746] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:35:59.746] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:35:59.746] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":0,"platformAuth":0,"type":1,"userCode":"115032550","nickname":"沉着的电脑","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","memberExp":0,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","imId":"5523051_20210831","token":"APP-60cf99dd715a4ac8905ac330b38cb853#5523051","createTime":"2021-08-31 11:13:53","newUser":false,"status":1},"status":200}
[2021-08-31 16:35:59.747] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:35:59.747] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:35:59.747] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:35:59.748] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:35:59.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:35:59.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:35:59.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:35:59.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:35:59.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:35:59.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:35:59.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:35:59.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-31 16:35:59.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:35:59.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-31 16:35:59.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:35:59.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:35:59.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:35:59.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:35:59.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:35:59.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:35:59.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:35:59.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:35:59.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:35:59.992] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 16:35:59.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:00 GMT
[2021-08-31 16:35:59.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:35:59.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:35:59.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:35:59.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 16:35:59.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:35:59.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:35:59.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:35:59.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:00.114] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:00.114] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:00.114] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:36:00.114] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:00.114] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:00.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:00.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:00.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-31 16:36:00.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:00.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-31 16:36:00.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:00.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:00.250] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:00.250] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:00.250] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:00.250] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:00.250] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:00.250] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:00.250] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:00.250] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:931
[2021-08-31 16:36:00.250] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:01 GMT
[2021-08-31 16:36:00.251] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:00.251] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:00.251] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:00.251] [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-c7e1e8801dea4a61883e3806ac1fc563#5523052","createTime":"2021-08-31 11:13:54","newUser":false,"status":1},"status":200}
[2021-08-31 16:36:00.251] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:00.251] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:00.258] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:00:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-08-31 16:36:00.261] [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 16:36:00.261] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:00.429] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:00.429] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:00.429] [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 16:36:00.429] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:00.429] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:00.429] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:00.430] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:00.430] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:00.430] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-08-31 16:36:00.430] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:00.430] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-08-31 16:36:00.430] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:00.430] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:00.842] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:00.842] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:01 GMT
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:00.843] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:00.843] [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":156825,"openPayDiamonds":123607,"createTime":"2021-05-24 11:55:16","name":"甜心糖果机","remainLotteryCount":1815,"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":63660,"openPayDiamonds":78186320,"createTime":"2021-04-23 18:20:19","name":"普通祈愿","remainLotteryCount":6791,"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 16:36:00.844] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:00.844] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:00.847] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-08-31 16:36:00.848] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:00:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-08-31 16:36:00.848] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 590毫秒======
[2021-08-31 16:36:00.882] [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 16:36:00.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:00.884] [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 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:00.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-08-31 16:36:00:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:01 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\":156825,\"openPayDiamonds\":123607,\"createTime\":\"2021-05-24 11:55:16\",\"name\":\"甜心糖果机\",\"remainLotteryCount\":1815,\"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\":63660,\"openPayDiamonds\":78186320,\"createTime\":\"2021-04-23 18:20:19\",\"name\":\"普通祈愿\",\"remainLotteryCount\":6791,\"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 16:36:00:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 590毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"590毫秒","endTime":"2021-08-31 16:36:00","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:00","status":1}
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:01.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:01.274] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:01.274] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:02 GMT
[2021-08-31 16:36:01.274] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:01.274] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:01.274] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:01.274] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:01.274] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:01.274] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:01.784] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:01:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-08-31 16:36:01.784] [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 16:36:01.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:01.990] [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 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=16677017}
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=16677017
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:01.990] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:02.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:02.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:02.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:02.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:02.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:02.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:02.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:02.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:02.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:03 GMT
[2021-08-31 16:36:02.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:02.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:02.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:02.315] [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 16:21:46","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 16:36:02.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:02.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:02.316] [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 16:36:02.316] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:02.458] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:02.458] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:02.459] [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 16:36:02.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:02.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:02.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:02.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:02.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:02.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyRemark=我是test,想加入公会, guildId=1739}
[2021-08-31 16:36:02.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:02.459] [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 16:36:02.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:02.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:02.727] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:02.727] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:02.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:02.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:02.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:02.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:02.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:02.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:02.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:03 GMT
[2021-08-31 16:36:02.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:02.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:02.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:02.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"你的入会申请提交成功","status":200}
[2021-08-31 16:36:02.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:02.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:02.729] [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 16:36:02.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:02.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:02.904] [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 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=999999, guildCode=16677017, pageNum=1}
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=999999&guildCode=16677017&pageNum=1
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:02.904] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:03.023] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:03 GMT
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:03.024] [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 16:21:46","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 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:03.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:03.025] [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 16:36:03.025] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:03.193] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:03.193] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:03.194] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:03.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:03.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:03.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:03.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:03.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:03.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:03.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:03.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:03.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:04 GMT
[2021-08-31 16:36:03.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:03.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:03.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:03.327] [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 15:47:35","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻27","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":27}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 16:36:03.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:03.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:03.327] [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 16:36:03.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:03.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:03.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:03.482] [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 16:36:03.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:03.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:03.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:03.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:03.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:03.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=16677017}
[2021-08-31 16:36:03.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:03.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=16677017
[2021-08-31 16:36:03.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:03.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:03.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:04 GMT
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:03.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":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-08-31 16:21:46","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 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:03.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:03.641] [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 16:36:03.641] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:03.784] [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 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-c7e1e8801dea4a61883e3806ac1fc563#5523052
[2021-08-31 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyType=1, pageSize=20, pageNum=1, guildId=1739}
[2021-08-31 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:03.784] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyType=1&pageSize=20&pageNum=1&guildId=1739
[2021-08-31 16:36:03.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:03.785] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:04.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:04.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:04.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:04.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:04.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:04.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:04.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:04.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:04.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:05 GMT
[2021-08-31 16:36:04.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:04.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:04.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:04.927] [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":72,"memberExp":0,"gender":0,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.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/dc60fb9240ae4bb0a7ee8e58dd263f22.png","nickname":"沉着的电脑","nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png","showInTops":false,"status":1},"applyType":1,"applyId":121592,"applyRemark":"我是test,想加入公会","handleDesc":"","handleStatus":1,"applyTime":"2021-08-31 16:36:03"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 16:36:04.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:04.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:04.927] [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 16:36:04.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:05.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:05.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:05.055] [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 16:36:05.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:05.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:05.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-c7e1e8801dea4a61883e3806ac1fc563#5523052
[2021-08-31 16:36:05.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:05.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:05.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyId=121592, configs=[], handleStatus=2}
[2021-08-31 16:36:05.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:05.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyId=121592&configs=%5B%5D&handleStatus=2
[2021-08-31 16:36:05.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:05.056] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:05.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:05.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:05.728] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:06 GMT
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"已同意","status":200}
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:05.729] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:05.729] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testAuditGuild--Test Mthod Success
[2021-08-31 16:36:05.730] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:05:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-08-31 16:36:05.730] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 03秒946毫秒======
[2021-08-31 16:36:05.731] [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 16:36:05.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:05.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:05.732] [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 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:05.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-08-31 16:36:01:用例【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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:03 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 16:21:46\",\"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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:03 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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:03 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 16:21:46\",\"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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:04 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":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\":\"钻27\",\"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\":27}],\"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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:04 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-08-31 16:21:46\",\"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-c7e1e8801dea4a61883e3806ac1fc563#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 08:36:05 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"baseInfo\":{\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":72,\"memberExp\":0,\"gender\":0,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.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/dc60fb9240ae4bb0a7ee8e58dd263f22.png\",\"nickname\":\"沉着的电脑\",\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png\",\"showInTops\":false,\"status\":1},\"applyType\":1,\"applyId\":121592,\"applyRemark\":\"我是test,想加入公会\",\"handleDesc\":\"\",\"handleStatus\":1,\"applyTime\":\"2021-08-31 16:36:03\"}],\"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-c7e1e8801dea4a61883e3806ac1fc563#5523052\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyId\":121592,\"configs\":\"[]\",\"handleStatus\":2}\r\n###Http Request queryString after URLEncoder### :\r\napplyId=121592&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 08:36:06 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"已同意\",\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:05:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 03秒946毫秒======\r","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"03秒946毫秒","endTime":"2021-08-31 16:36:05","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:01","status":1}
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:06 GMT
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:06.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:06.621] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:06:用例【com.pipi.invoker.CosPlayerTest.testGetMine】开始======
[2021-08-31 16:36:06.622] [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 16:36:06.622] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:06.771] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:06.772] [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 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:06.772] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:06.965] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:07 GMT
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:06.966] [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/dc60fb9240ae4bb0a7ee8e58dd263f22.png","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":72,"skillsGroup":"b44f12547c1d455c8cf8aba14ed22e7f","totalFootprints":0,"gender":0,"managerPermit":false,"userCode":"115032550","nickname":"沉着的电脑","accessCount":1,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.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":1},"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 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:06.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:06.967] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetMine--Test Mthod Success
[2021-08-31 16:36:06.967] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:06:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======
[2021-08-31 16:36:06.967] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 346毫秒======
[2021-08-31 16:36:06.967] [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 16:36:06.967] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:06.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 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:06.970] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"/api/v3/user/get-mine 获取用户信(人气等级)","caseLog":"======2021-08-31 16:36:06:用例【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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:07 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/dc60fb9240ae4bb0a7ee8e58dd263f22.png\",\"id\":5523051,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":72,\"skillsGroup\":\"b44f12547c1d455c8cf8aba14ed22e7f\",\"totalFootprints\":0,\"gender\":0,\"managerPermit\":false,\"userCode\":\"115032550\",\"nickname\":\"沉着的电脑\",\"accessCount\":1,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.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\":1},\"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 16:36:06:用例【com.pipi.invoker.CosPlayerTest.testGetMine】结束======\r\n======本次用例运行消耗时间 346毫秒======\r","caseName":"testGetMine","className":"com.pipi.invoker.CosPlayerTest","durationTime":"346毫秒","endTime":"2021-08-31 16:36:06","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:06","status":1}
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:08 GMT
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:08.138] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:08.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:08.139] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:08.651] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:08:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】开始======
[2021-08-31 16:36:08.651] [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 16:36:08.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:08.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:08.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:08.975] [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 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:08.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:09.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:09.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:09.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:09.084] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:09 GMT
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"virtualBalance":356842,"balance":0.00,"charm":0,"charmMoney":0.00,"chargeBalance":20.40,"bodyAuthDesc":"未实名认证","newCharm":0},"status":200}
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:09.085] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:09.085] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserBalance--Test Mthod Success
[2021-08-31 16:36:09.086] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:09:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======
[2021-08-31 16:36:09.086] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 434毫秒======
[2021-08-31 16:36:09.086] [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 16:36:09.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:09.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:09.087] [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 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:09.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户皮皮币/钻石余额","caseLog":"======2021-08-31 16:36:08:用例【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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:09 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"virtualBalance\":356842,\"balance\":0.00,\"charm\":0,\"charmMoney\":0.00,\"chargeBalance\":20.40,\"bodyAuthDesc\":\"未实名认证\",\"newCharm\":0},\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:09:用例【com.pipi.invoker.CosPlayerTest.testGetUserBalance】结束======\r\n======本次用例运行消耗时间 434毫秒======\r","caseName":"testGetUserBalance","className":"com.pipi.invoker.CosPlayerTest","durationTime":"434毫秒","endTime":"2021-08-31 16:36:09","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:08","status":1}
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:10 GMT
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:09.949] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:10.465] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:10:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】开始======
[2021-08-31 16:36:10.466] [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 16:36:10.466] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:10.595] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:10.595] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:10.595] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:10.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:10.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:10.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:10.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:10.924] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:10.924] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:10.924] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:10.924] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:10.924] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:10.925] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:11 GMT
[2021-08-31 16:36:10.925] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:10.925] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:10.925] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:10.925] [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":20.40,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":72,"memberExp":0,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 15:52:20","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":356842,"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 16:36:10.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:10.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:10.926] [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 16:36:10.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:11.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:11.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:11.061] [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 16:36:11.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:11.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:11.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:11.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:11.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:11.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=882100, userId=5523051}
[2021-08-31 16:36:11.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:11.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=882100&userId=5523051
[2021-08-31 16:36:11.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:11.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:11.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:11.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:11.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:11.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:11.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:11.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:11.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:11.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:11.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:12 GMT
[2021-08-31 16:36:11.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:11.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:11.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:11.256] [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/dc60fb9240ae4bb0a7ee8e58dd263f22.png","balance":0.00,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":20.40,"lastMemberExp":0,"memberExp":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 15:52:20","nickname":"沉着的电脑","virtualBalance":356842,"memberLevel":0,"updateTime":"2021-08-31 11:13:53","mainPicUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png","quickServerStatus":0,"userId":5523051,"imId":"5523051_20210831","charm":0,"createTime":"2021-08-31 11:13:53","newUser":false,"nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png","sourceId":0,"platformAuth":0,"charmDrawSum":0,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":72,"isRoomBlacked":false,"userInfoAuth":0,"totalFootprints":0,"orderTakeSwitch":false,"userTechList":[],"registIp":"61.183.246.70","accessCount":1,"openedTechs":0,"isCancel":false,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.png","attentions":0,"imPsw":"b739ce120f584a7597187eecc691bba8","scoreAvg":4.0,"fans":0,"totalAccessedCnt":1},"status":200}
[2021-08-31 16:36:11.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:11.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:11.256] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple--Test Mthod Success
[2021-08-31 16:36:11.256] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:11:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======
[2021-08-31 16:36:11.257] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 791毫秒======
[2021-08-31 16:36:11.257] [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 16:36:11.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:11.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:11.258] [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 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:11.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v1","caseLog":"======2021-08-31 16:36:10:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:11 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"国王Ⅱ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":20.40,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":72,\"memberExp\":0,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 15:52:20\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":356842,\"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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:12 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/dc60fb9240ae4bb0a7ee8e58dd263f22.png\",\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":20.40,\"lastMemberExp\":0,\"memberExp\":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 15:52:20\",\"nickname\":\"沉着的电脑\",\"virtualBalance\":356842,\"memberLevel\":0,\"updateTime\":\"2021-08-31 11:13:53\",\"mainPicUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png\",\"quickServerStatus\":0,\"userId\":5523051,\"imId\":\"5523051_20210831\",\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false,\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png\",\"sourceId\":0,\"platformAuth\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":72,\"isRoomBlacked\":false,\"userInfoAuth\":0,\"totalFootprints\":0,\"orderTakeSwitch\":false,\"userTechList\":[],\"registIp\":\"61.183.246.70\",\"accessCount\":1,\"openedTechs\":0,\"isCancel\":false,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.png\",\"attentions\":0,\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"scoreAvg\":4.0,\"fans\":0,\"totalAccessedCnt\":1},\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:11:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple】结束======\r\n======本次用例运行消耗时间 791毫秒======\r","caseName":"testGetUserSimple","className":"com.pipi.invoker.CosPlayerTest","durationTime":"791毫秒","endTime":"2021-08-31 16:36:11","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:10","status":1}
[2021-08-31 16:36:11.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:11.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:11.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:11.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:11.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:11.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:12 GMT
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:11.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:12.174] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:12:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】开始======
[2021-08-31 16:36:12.175] [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 16:36:12.175] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:12.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:12.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:12.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:12.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:12.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:12.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:12.310] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:12.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:12.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 16:36:12.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:12.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 16:36:12.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:12.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:13 GMT
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:12.446] [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":20.40,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":72,"memberExp":0,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 15:52:20","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":356842,"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 16:36:12.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:12.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:12.447] [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 16:36:12.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:12.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:12.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:12.582] [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 16:36:12.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:12.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:12.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:12.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:12.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:12.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=882100, userId=5523051}
[2021-08-31 16:36:12.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:12.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=882100&userId=5523051
[2021-08-31 16:36:12.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:12.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:13 GMT
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:12.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:12.800] [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/dc60fb9240ae4bb0a7ee8e58dd263f22.png","balance":0.00,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":20.40,"lastMemberExp":0,"memberExp":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 15:52:20","nickname":"沉着的电脑","virtualBalance":356842,"memberLevel":0,"updateTime":"2021-08-31 11:13:53","mainPicUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png","quickServerStatus":0,"userId":5523051,"imId":"5523051_20210831","charm":0,"createTime":"2021-08-31 11:13:53","newUser":false,"nobleBackgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png","sourceId":0,"platformAuth":0,"charmDrawSum":0,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":72,"isRoomBlacked":false,"userInfoAuth":0,"totalFootprints":0,"orderTakeSwitch":false,"userTechList":[],"registIp":"61.183.246.70","accessCount":1,"openedTechs":0,"isCancel":false,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.png","attentions":0,"imPsw":"b739ce120f584a7597187eecc691bba8","scoreAvg":4.0,"fans":0,"totalAccessedCnt":1},"status":200}
[2021-08-31 16:36:12.801] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:12.801] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:12.801] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGetUserSimple2--Test Mthod Success
[2021-08-31 16:36:12.801] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:12:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======
[2021-08-31 16:36:12.801] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 627毫秒======
[2021-08-31 16:36:12.801] [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 16:36:12.802] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:12.802] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:12.802] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:12.802] [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 16:36:12.802] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:12.802] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:12.802] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:12.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:12.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:12.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:12.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:12.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:12.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取用户信息v2","caseLog":"======2021-08-31 16:36:12:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:13 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"国王Ⅱ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":20.40,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":72,\"memberExp\":0,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 15:52:20\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":356842,\"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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:13 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/dc60fb9240ae4bb0a7ee8e58dd263f22.png\",\"balance\":0.00,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":20.40,\"lastMemberExp\":0,\"memberExp\":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 15:52:20\",\"nickname\":\"沉着的电脑\",\"virtualBalance\":356842,\"memberLevel\":0,\"updateTime\":\"2021-08-31 11:13:53\",\"mainPicUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/img/pipi_default_head.png\",\"quickServerStatus\":0,\"userId\":5523051,\"imId\":\"5523051_20210831\",\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false,\"nobleBackgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/bdde3241fc7644068cfc9424f886348e.png\",\"sourceId\":0,\"platformAuth\":0,\"charmDrawSum\":0,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":72,\"isRoomBlacked\":false,\"userInfoAuth\":0,\"totalFootprints\":0,\"orderTakeSwitch\":false,\"userTechList\":[],\"registIp\":\"61.183.246.70\",\"accessCount\":1,\"openedTechs\":0,\"isCancel\":false,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.png\",\"attentions\":0,\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"scoreAvg\":4.0,\"fans\":0,\"totalAccessedCnt\":1},\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:12:用例【com.pipi.invoker.CosPlayerTest.testGetUserSimple2】结束======\r\n======本次用例运行消耗时间 627毫秒======\r","caseName":"testGetUserSimple2","className":"com.pipi.invoker.CosPlayerTest","durationTime":"627毫秒","endTime":"2021-08-31 16:36:12","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:12","status":1}
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:13 GMT
[2021-08-31 16:36:13.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:13.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:13.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:13.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:13.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:13.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:13.675] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:13:用例【com.pipi.invoker.CosPlayerTest.testGethome】开始======
[2021-08-31 16:36:13.676] [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 16:36:13.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:13.817] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:13.817] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:13.817] [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 16:36:13.817] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:13.817] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:13.817] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:13.817] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:13.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:13.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:13.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:13.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:13.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:13.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:13.995] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:14 GMT
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:13.996] [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/dc60fb9240ae4bb0a7ee8e58dd263f22.png","nickname":"沉着的电脑","id":5523051,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","nobleRankCode":72,"emblemUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.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 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:13.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:13.997] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGethome--Test Mthod Success
[2021-08-31 16:36:13.997] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:13:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======
[2021-08-31 16:36:13.997] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 322毫秒======
[2021-08-31 16:36:13.997] [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 16:36:13.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:13.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:13.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:13.998] [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 16:36:13.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:13.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:13.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:13.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:13.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:13.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:13.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:13.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:13.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":" /api/v3/user/get-home获取用户信息(用户是否是巡管员) ","caseLog":"======2021-08-31 16:36:13:用例【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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:14 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/dc60fb9240ae4bb0a7ee8e58dd263f22.png\",\"nickname\":\"沉着的电脑\",\"id\":5523051,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"nobleRankCode\":72,\"emblemUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/4/2/39bfebe8222945059f6d8bfd6d893cb1.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 16:36:13:用例【com.pipi.invoker.CosPlayerTest.testGethome】结束======\r\n======本次用例运行消耗时间 322毫秒======\r","caseName":"testGethome","className":"com.pipi.invoker.CosPlayerTest","durationTime":"322毫秒","endTime":"2021-08-31 16:36:13","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:13","status":1}
[2021-08-31 16:36:14.881] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:14.881] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:14.881] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:14.881] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:14.881] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:14.881] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:14.881] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:15 GMT
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:14.882] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:15.392] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:15:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-08-31 16:36:15.393] [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 16:36:15.393] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:15.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:15.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:15.505] [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 16:36:15.505] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:15.506] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:15.506] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:15.506] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:15.506] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:15.506] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-08-31 16:36:15.506] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:15.506] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-08-31 16:36:15.506] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:15.506] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:16 GMT
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:15.683] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:15.684] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:15.684] [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 16:36:15.684] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:15.684] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:15.684] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-08-31 16:36:15.685] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:15:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-08-31 16:36:15.685] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 293毫秒======
[2021-08-31 16:36:15.685] [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 16:36:15.685] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:15.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:15.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:15.686] [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 16:36:15.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:15.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:15.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:15.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:15.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:15.686] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:15.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:15.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:15.687] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-08-31 16:36:15:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:16 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 16:36:15:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 293毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"293毫秒","endTime":"2021-08-31 16:36:15","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:15","status":1}
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:16 GMT
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:15.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:15.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:15.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:16.463] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:16:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======
[2021-08-31 16:36:16.463] [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 16:36:16.463] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:16.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:16.587] [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 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-c7e1e8801dea4a61883e3806ac1fc563#5523052
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=16677017}
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=16677017
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:16.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:16.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:16.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:16.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:16.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:17 GMT
[2021-08-31 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:16.731] [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 16:36:06","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 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:16.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:16.731] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGuildSearch--Test Mthod Success
[2021-08-31 16:36:16.732] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:16:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======
[2021-08-31 16:36:16.732] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 268毫秒======
[2021-08-31 16:36:16.732] [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 16:36:16.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:16.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:16.733] [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 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:16.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"搜索公会","caseLog":"======2021-08-31 16:36:16:用例【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-c7e1e8801dea4a61883e3806ac1fc563#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 08:36: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 16:36:06\",\"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 16:36:16:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======\r\n======本次用例运行消耗时间 268毫秒======\r","caseName":"testGuildSearch","className":"com.pipi.invoker.CosPlayerTest","durationTime":"268毫秒","endTime":"2021-08-31 16:36:16","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:16","status":1}
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:16 GMT
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:16.878] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:17.380] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:17:用例【com.pipi.invoker.CosPlayerTest.testMSend】开始======
[2021-08-31 16:36:17.380] [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 16:36:17.380] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:17.507] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:17.507] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:17.507] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:17.507] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:17.507] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:17.508] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:17.508] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:17.508] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:17.508] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 16:36:17.508] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:17.508] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 16:36:17.508] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:17.508] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:17.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:17.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:17.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:17.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:17.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:17.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:17.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:17.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:17.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:18 GMT
[2021-08-31 16:36:17.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:17.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:17.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:17.633] [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 15:47:35","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻27","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":27}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 16:36:17.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:17.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:17.633] [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 16:36:17.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:17.768] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:17.768] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:17.768] [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 16:36:17.768] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:17.768] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:17.768] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:17.768] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:17.768] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:17.768] [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 16:36:17.768] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:17.769] [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 16:36:17.769] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:17.769] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:19 GMT
[2021-08-31 16:36:18.621] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:18.621] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:18.621] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:18.621] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3Pj2JdoRsqE3S9fOEfjNpXK7VTvr9/1KuJ5+3QSF4gFUabnozv/zR45zoXBImJosob7E6nr6rFKLMBatWRZYcRmJpp6fibKZwGM0CWjOnnu88syrMTuP5ExUjihR2VShvuZQOlFelisTJsZ1/yJDm5gepKj+1NZZfQFaRdCXT9FR2nRnzMBa/h0+h1FAbE//BQ+qgumDgrcgNJ1WQOoQ/u91lmQ90SZgdITT4d2FyzcdaEHT07XLCv0oiw5l7onR5Za4dw5zvt7gmgH9PquE8cBeTBfj/tzaz+zfrNaAS3lRizRT/mPrH5ITgZMDzQ7IYzoU2sxV8sFdnqDru4kHOtKV9I8l7d/3z/Q1RKw0SAGlCHz5n+DYEYbcDPWpAHSKm5","status":200}
[2021-08-31 16:36:18.621] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:18.621] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:18.621] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMSend--Test Mthod Success
[2021-08-31 16:36:18.621] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:18:用例【com.pipi.invoker.CosPlayerTest.testMSend】结束======
[2021-08-31 16:36:18.621] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒241毫秒======
[2021-08-31 16:36:18.621] [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 16:36:18.622] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:18.622] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:18.622] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:18.622] [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 16:36:18.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:18.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:18.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:18.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:18.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:18.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:18.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:18.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:18.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送魅力值礼物","caseLog":"======2021-08-31 16:36:17:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36: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\":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\":\"钻27\",\"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\":27}],\"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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:19 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3Pj2JdoRsqE3S9fOEfjNpXK7VTvr9/1KuJ5+3QSF4gFUabnozv/zR45zoXBImJosob7E6nr6rFKLMBatWRZYcRmJpp6fibKZwGM0CWjOnnu88syrMTuP5ExUjihR2VShvuZQOlFelisTJsZ1/yJDm5gepKj+1NZZfQFaRdCXT9FR2nRnzMBa/h0+h1FAbE//BQ+qgumDgrcgNJ1WQOoQ/u91lmQ90SZgdITT4d2FyzcdaEHT07XLCv0oiw5l7onR5Za4dw5zvt7gmgH9PquE8cBeTBfj/tzaz+zfrNaAS3lRizRT/mPrH5ITgZMDzQ7IYzoU2sxV8sFdnqDru4kHOtKV9I8l7d/3z/Q1RKw0SAGlCHz5n+DYEYbcDPWpAHSKm5\",\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:18:用例【com.pipi.invoker.CosPlayerTest.testMSend】结束======\r\n======本次用例运行消耗时间 01秒241毫秒======\r","caseName":"testMSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒241毫秒","endTime":"2021-08-31 16:36:18","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:17","status":1}
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:19 GMT
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:18.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:18.893] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:19.397] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:19:用例【com.pipi.invoker.CosPlayerTest.testManagerList】开始======
[2021-08-31 16:36:19.397] [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 16:36:19.397] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:19.526] [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 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:19.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:20 GMT
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:19.631] [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 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:19.631] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:19.632] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testManagerList--Test Mthod Success
[2021-08-31 16:36:19.632] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:19:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======
[2021-08-31 16:36:19.632] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 235毫秒======
[2021-08-31 16:36:19.632] [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 16:36:19.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:19.633] [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 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:19.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管列表 /api/v1/rask/manager/list","caseLog":"======2021-08-31 16:36:19:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:20 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 16:36:19:用例【com.pipi.invoker.CosPlayerTest.testManagerList】结束======\r\n======本次用例运行消耗时间 235毫秒======\r","caseName":"testManagerList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"235毫秒","endTime":"2021-08-31 16:36:19","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:19","status":1}
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:20.715] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:21 GMT
[2021-08-31 16:36:20.716] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:20.716] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:20.716] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:20.716] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:20.716] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:20.716] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:21.232] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:21:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-08-31 16:36:21.232] [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 16:36:21.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:21.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:21.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:21.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:21.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:21.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:21.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:21.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:21.353] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:21.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 16:36:21.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:21.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 16:36:21.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:21.354] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:21.478] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:21.478] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:21.478] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:21.478] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:22 GMT
[2021-08-31 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:21.479] [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":20.40,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":72,"memberExp":0,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 15:52:20","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":356835,"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 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:21.479] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:21.480] [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 16:36:21.480] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:21.552] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:21.553] [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=20.40, userId=5523051, searchValue=5523051}
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:21.553] [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=20.40&userId=5523051&searchValue=5523051
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:21.553] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:22 GMT
[2021-08-31 16:36:21.672] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:21.673] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:21.673] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:21.673] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-08-31 16:36:21.673] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:21.673] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:21.673] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMoneyDetailsSave--Test Mthod Success
[2021-08-31 16:36:21.673] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:21:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-08-31 16:36:21.673] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 441毫秒======
[2021-08-31 16:36:21.673] [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 16:36:21.673] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:21.676] [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 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:21.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-08-31 16:36:21:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36: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\":20.40,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":72,\"memberExp\":0,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 15:52:20\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":356835,\"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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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\":\"20.40\",\"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=20.40&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 08:36:22 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:21:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 441毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"441毫秒","endTime":"2021-08-31 16:36:21","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:21","status":1}
[2021-08-31 16:36:21.943] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:21.943] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:21.943] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:21.943] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:22 GMT
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:21.944] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:22.456] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:22:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】开始======
[2021-08-31 16:36:22.457] [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 16:36:22.457] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:22.538] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:22.538] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:22.538] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:22.539] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:22.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:22.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:22.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:22.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:22.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:22.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:22.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:22.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:22.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:23 GMT
[2021-08-31 16:36:22.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:22.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:22.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:22.668] [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 15:47:35","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻27","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":27}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 16:36:22.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:22.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:22.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/gift-product/send-gift
[2021-08-31 16:36:22.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:22.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:22.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:22.790] [TestNG] [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 16:36:22.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:22.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:22.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:22.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:22.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:22.791] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {giftProductId=14, amount=1, dynamicId=, rewardOrderNo=, toUserId=5523052, SendGiftScene=1, timestamp=1630395325064}
[2021-08-31 16:36:22.791] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:22.791] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - giftProductId=14&amount=1&dynamicId=&rewardOrderNo=&toUserId=5523052&SendGiftScene=1×tamp=1630395325064
[2021-08-31 16:36:22.791] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:22.791] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:24 GMT
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:23.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:23.220] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:23.220] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":{"data":"rFvok+xgwQq2qzJm8kmtihTTnv1euEmQzpxNACX4WA2h2p7RcP6bPgigJMPWBuLWUIS80lJN3fb76HBfF4l6BfIlXvT2TdY0rVKXBGv5RQs="},"status":200}
[2021-08-31 16:36:23.220] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:23.220] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:23.220] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testPipibiSend--Test Mthod Success
[2021-08-31 16:36:23.220] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:23:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】结束======
[2021-08-31 16:36:23.220] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 764毫秒======
[2021-08-31 16:36:23.220] [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 16:36:23.220] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:23.221] [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 16:36:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:23.221] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:23.222] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送皮皮币礼物","caseLog":"======2021-08-31 16:36:22:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:23 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\":\"钻27\",\"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\":27}],\"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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:24 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":{\"data\":\"rFvok+xgwQq2qzJm8kmtihTTnv1euEmQzpxNACX4WA2h2p7RcP6bPgigJMPWBuLWUIS80lJN3fb76HBfF4l6BfIlXvT2TdY0rVKXBGv5RQs=\"},\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:23:用例【com.pipi.invoker.CosPlayerTest.testPipibiSend】结束======\r\n======本次用例运行消耗时间 764毫秒======\r","caseName":"testPipibiSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"764毫秒","endTime":"2021-08-31 16:36:23","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:22","status":1}
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:24 GMT
[2021-08-31 16:36:23.481] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:23.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:23.483] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:23.484] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:23.484] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:23.484] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:23.996] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:23:用例【com.pipi.invoker.CosPlayerTest.testQSend】开始======
[2021-08-31 16:36:23.997] [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 16:36:23.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:24.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:24.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:24.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:24.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:24.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:24.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:24.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:24.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:24.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 16:36:24.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:24.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 16:36:24.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:24.089] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:24.196] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:24.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:24.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:24.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:24.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:24.198] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:24.198] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:24.198] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:24.198] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:25 GMT
[2021-08-31 16:36:24.198] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:24.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:24.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:24.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":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":"钻27","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":27}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 16:36:24.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:24.199] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:24.200] [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 16:36:24.200] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:24.295] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:24.295] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:24.295] [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 16:36:24.295] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:24.295] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:24.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:24.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:24.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:24.296] [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 16:36:24.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:24.296] [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 16:36:24.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:24.296] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:25 GMT
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:24.818] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:24.819] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:24.819] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaYrULTnSJ/Gg8k3rnDgnEbrPMuX/jl6gvF4YYBEgXrJwqzKpCQ92OZ0r4f21h84Vh2+ZOZqbm1AgNgVcOaETZdEn5xlGJTXS9dbhhi0S8ort2i4Wrzi0OpwxQL1U2kChESjmqpc/r0nBzS8OgZFpNfagp7Ki18Fa8a0p9AETu3qtjr5Z4fDiAewkKCds40oP5FLCcR5vHRnaUH/Oil4mOWwMa7WdbRi9mMsRbXDTka85xvC4lqq1RJ90trsUoGOKpwXZ0hKLCqyvSdFds7rjPO1FvbmRTLQ/OvjR8SBcfI8lUHigXpMnrixiH3ov6NTwi0idSYwCPco0LgQ8sARUcaDOJfzRQkVkC6N/eQGTJ/LA3XPYn4iA+ZA1O7+DnCHcBAwIg4gyM/5xHxopoMV0NMHbvMGIAouxySszqnYarWvN+BbQ+a8MnjkN92i2pOlJiambbLcjQXHR+zWgWHO8Bnb2xGT+AmCYRqGKRBLYNo0U1/GpDYujVu8V/ZdO2wWR3QpZVcant3b4iIIk3jm3m0U=","status":200}
[2021-08-31 16:36:24.819] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:24.819] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:24.819] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testQSend--Test Mthod Success
[2021-08-31 16:36:24.819] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:24:用例【com.pipi.invoker.CosPlayerTest.testQSend】结束======
[2021-08-31 16:36:24.819] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 823毫秒======
[2021-08-31 16:36:24.819] [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 16:36:24.819] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:24.820] [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 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:24.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送全服礼物","caseLog":"======2021-08-31 16:36:23:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:25 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\":\"钻27\",\"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\":27}],\"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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:25 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaYrULTnSJ/Gg8k3rnDgnEbrPMuX/jl6gvF4YYBEgXrJwqzKpCQ92OZ0r4f21h84Vh2+ZOZqbm1AgNgVcOaETZdEn5xlGJTXS9dbhhi0S8ort2i4Wrzi0OpwxQL1U2kChESjmqpc/r0nBzS8OgZFpNfagp7Ki18Fa8a0p9AETu3qtjr5Z4fDiAewkKCds40oP5FLCcR5vHRnaUH/Oil4mOWwMa7WdbRi9mMsRbXDTka85xvC4lqq1RJ90trsUoGOKpwXZ0hKLCqyvSdFds7rjPO1FvbmRTLQ/OvjR8SBcfI8lUHigXpMnrixiH3ov6NTwi0idSYwCPco0LgQ8sARUcaDOJfzRQkVkC6N/eQGTJ/LA3XPYn4iA+ZA1O7+DnCHcBAwIg4gyM/5xHxopoMV0NMHbvMGIAouxySszqnYarWvN+BbQ+a8MnjkN92i2pOlJiambbLcjQXHR+zWgWHO8Bnb2xGT+AmCYRqGKRBLYNo0U1/GpDYujVu8V/ZdO2wWR3QpZVcant3b4iIIk3jm3m0U=\",\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:24:用例【com.pipi.invoker.CosPlayerTest.testQSend】结束======\r\n======本次用例运行消耗时间 823毫秒======\r","caseName":"testQSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"823毫秒","endTime":"2021-08-31 16:36:24","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:23","status":1}
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:25 GMT
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:25.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:25.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:25.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:25.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:25.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:25.596] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:25:用例【com.pipi.invoker.CosPlayerTest.testRSend】开始======
[2021-08-31 16:36:25.596] [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 16:36:25.596] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:25.677] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:25.677] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:25.678] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:25.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:25.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:25.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:25.812] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:26 GMT
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:25.813] [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 15:47:35","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻28","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":28}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:25.813] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:25.814] [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 16:36:25.814] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:25.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:25.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:25.909] [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 16:36:25.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:25.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:25.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:25.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:25.909] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:25.910] [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 16:36:25.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:25.910] [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 16:36:25.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:25.910] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:27 GMT
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:26.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:26.209] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPezKwxLlr0y01GgVbCZbNxMGhiDqHCDeEhQhOEYkRRbUQrr8YQVIMEi60i1G5vzwllGNrpYSMgZ9YtgKQ8AuINqKZapVbs+ZWR7a6yRRyKclWgWPBwmY7uej4J+/5G4pnX1xiOXOlK5WmCVLKvqBlckIS3un5KZiwYbBouWsEHrsaiupOwfJA64g/WTzIlvrqy64/JsOvyRPLO5CM5Nz6CtzXjcBMTr9fkr7W2KT4HMPWQvmb68/wpwcCW15/69I9+gJlTOl43ql5taT7tdIbI0k35JYDnhk/XR9E8xuN4mOxYUbKtnAXk3pf4NtE3/w4kzhxndi0PTfJZKcQh7LJjSRMDnHFzaJGfiPaZLFfPe222cPuTWzIGev1XCscCGL1y029lEEkHFVypmtE1UKRSI1GmjaMtUxnuoOQwFL90H82+/PrlpT4dYrZNPRvn3lQk=","status":200}
[2021-08-31 16:36:26.209] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:26.209] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:26.209] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRSend--Test Mthod Success
[2021-08-31 16:36:26.209] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:26:用例【com.pipi.invoker.CosPlayerTest.testRSend】结束======
[2021-08-31 16:36:26.209] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 613毫秒======
[2021-08-31 16:36:26.209] [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 16:36:26.209] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:26.210] [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 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:26.210] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送热度值礼物","caseLog":"======2021-08-31 16:36:25:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:26 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\":\"钻28\",\"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\":28}],\"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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:27 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPezKwxLlr0y01GgVbCZbNxMGhiDqHCDeEhQhOEYkRRbUQrr8YQVIMEi60i1G5vzwllGNrpYSMgZ9YtgKQ8AuINqKZapVbs+ZWR7a6yRRyKclWgWPBwmY7uej4J+/5G4pnX1xiOXOlK5WmCVLKvqBlckIS3un5KZiwYbBouWsEHrsaiupOwfJA64g/WTzIlvrqy64/JsOvyRPLO5CM5Nz6CtzXjcBMTr9fkr7W2KT4HMPWQvmb68/wpwcCW15/69I9+gJlTOl43ql5taT7tdIbI0k35JYDnhk/XR9E8xuN4mOxYUbKtnAXk3pf4NtE3/w4kzhxndi0PTfJZKcQh7LJjSRMDnHFzaJGfiPaZLFfPe222cPuTWzIGev1XCscCGL1y029lEEkHFVypmtE1UKRSI1GmjaMtUxnuoOQwFL90H82+/PrlpT4dYrZNPRvn3lQk=\",\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:26:用例【com.pipi.invoker.CosPlayerTest.testRSend】结束======\r\n======本次用例运行消耗时间 613毫秒======\r","caseName":"testRSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"613毫秒","endTime":"2021-08-31 16:36:26","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:25","status":1}
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:27 GMT
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:26.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:27.487] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:27:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======
[2021-08-31 16:36:27.488] [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 16:36:27.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:27.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:27.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:27.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:27.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:27.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:27.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:27.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:27.601] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:27.602] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-08-31 16:36:27.602] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:27.602] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-08-31 16:36:27.602] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:27.602] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:28 GMT
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:27.725] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:27.726] [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 15:47:35","ordersTakeStatus":1,"nickname":"test","popularityLevelName":"钻28","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":28}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 16:36:27.726] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:27.726] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:27.726] [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 16:36:27.726] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:27.835] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/room/list
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1, userId=5523052}
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1&userId=5523052
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:27.836] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:27.936] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:28 GMT
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:27.937] [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":2588,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":31244,"virtualPeople":1,"roomType":2,"realPeople":1,"roomNo":"882100","recommendWeight":0,"sort":999,"roomName":"我的非公会厅4131","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":true,"isHot":false,"template":1,"hostMobile":"13823774131","remark":"我的非公会厅4131","roomCode":"882100","sortWeight":0,"isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","closeTime":"2021-08-31 15:29:23","orderRoomSerial":"1","openTime":"2021-08-31 16:20:03","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 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:27.937] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:27.938] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomList--Test Mthod Success
[2021-08-31 16:36:27.938] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:27:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======
[2021-08-31 16:36:27.938] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 451毫秒======
[2021-08-31 16:36:27.938] [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 16:36:27.938] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:27.939] [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 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:27.939] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询房间","caseLog":"======2021-08-31 16:36:27:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36: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 15:47:35\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"popularityLevelName\":\"钻28\",\"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\":28}],\"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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36: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,\"endRow\":1,\"list\":[{\"hostUserId\":5523052,\"scoreWeight\":2588,\"roomInfoTagList\":[],\"roomStatus\":1,\"password\":\"123456\",\"isOpenChat\":true,\"roomCategoryName\":\"派单\",\"id\":31244,\"virtualPeople\":1,\"roomType\":2,\"realPeople\":1,\"roomNo\":\"882100\",\"recommendWeight\":0,\"sort\":999,\"roomName\":\"我的非公会厅4131\",\"roomInfoTagConfigList\":[],\"roomVipCount\":15,\"basicHotValue\":0,\"isActivate\":true,\"isHot\":false,\"template\":1,\"hostMobile\":\"13823774131\",\"remark\":\"我的非公会厅4131\",\"roomCode\":\"882100\",\"sortWeight\":0,\"isLock\":false,\"roomIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg\",\"closeTime\":\"2021-08-31 15:29:23\",\"orderRoomSerial\":\"1\",\"openTime\":\"2021-08-31 16:20:03\",\"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 16:36:27:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======\r\n======本次用例运行消耗时间 451毫秒======\r","caseName":"testRoomList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"451毫秒","endTime":"2021-08-31 16:36:27","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:27","status":1}
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:28.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:28.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:29 GMT
[2021-08-31 16:36:28.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:28.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:28.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:28.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:28.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:28.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:28.879] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:28:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】开始======
[2021-08-31 16:36:28.879] [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 16:36:28.879] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:28.980] [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 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1}
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:28.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:29.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:29.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:29.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:29.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:29.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:29.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:29.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:29.633] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:29.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:30 GMT
[2021-08-31 16:36:29.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:29.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:29.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:29.634] [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 16:36:30","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 16:36:29.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:29.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:29.634] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomRecord--Test Mthod Success
[2021-08-31 16:36:29.634] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:29:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======
[2021-08-31 16:36:29.634] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 755毫秒======
[2021-08-31 16:36:29.634] [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 16:36:29.634] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:29.646] [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 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:29.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询超管巡查记录 /api/v1/rask/manager/room/record","caseLog":"======2021-08-31 16:36:28:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:30 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 16:36:30\",\"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 16:36:29:用例【com.pipi.invoker.CosPlayerTest.testRoomRecord】结束======\r\n======本次用例运行消耗时间 755毫秒======\r","caseName":"testRoomRecord","className":"com.pipi.invoker.CosPlayerTest","durationTime":"755毫秒","endTime":"2021-08-31 16:36:29","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:28","status":1}
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:30 GMT
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:29.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:30.290] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:30:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======
[2021-08-31 16:36:30.290] [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 16:36:30.290] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:30.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:30.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:30.425] [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 16:36:30.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:30.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=882100, type=2}
[2021-08-31 16:36:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=882100&type=2
[2021-08-31 16:36:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:30.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:31 GMT
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:30.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:30.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":[],"status":200}
[2021-08-31 16:36:30.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:30.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:30.568] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpList--Test Mthod Success
[2021-08-31 16:36:30.568] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:30:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======
[2021-08-31 16:36:30.568] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 278毫秒======
[2021-08-31 16:36:30.568] [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 16:36:30.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:30.569] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:30.570] [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 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:30.570] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取上麦、试音申请列表数据","caseLog":"======2021-08-31 16:36:30:用例【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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:31 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":[],\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:30:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======\r\n======本次用例运行消耗时间 278毫秒======\r","caseName":"testUpList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"278毫秒","endTime":"2021-08-31 16:36:30","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:30","status":1}
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:31.652] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:32 GMT
[2021-08-31 16:36:31.653] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:31.653] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:31.653] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:31.653] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:31.653] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:31.653] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:32.156] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:32:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======
[2021-08-31 16:36:32.157] [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 16:36:32.157] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:32.281] [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 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {types=2, roomNo=882100}
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - types=2&roomNo=882100
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:32.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:32.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:32.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:32.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:32.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:32.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:32.425] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:33 GMT
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"2":{"alreadyInList":false,"people":0}},"status":200}
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:32.426] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpSize--Test Mthod Success
[2021-08-31 16:36:32.426] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:32:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======
[2021-08-31 16:36:32.426] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 270毫秒======
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-08-31 16:36:32.426] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:32.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:32.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:32.427] [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 16:36:32.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:32.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:32.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:32.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:32.427] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:32.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:32.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:32.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:32.428] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取聊天室内上麦试音队列、点单队列等","caseLog":"======2021-08-31 16:36:32:用例【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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:33 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 16:36:32:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======\r\n======本次用例运行消耗时间 270毫秒======\r","caseName":"testUpSize","className":"com.pipi.invoker.CosPlayerTest","durationTime":"270毫秒","endTime":"2021-08-31 16:36:32","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:32","status":1}
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:32 GMT
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:32.632] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:33.148] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:33:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======
[2021-08-31 16:36:33.148] [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 16:36:33.148] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:33.270] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:33.270] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:33.270] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:33.270] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:33.270] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:33.270] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:33.271] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:33.271] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:33.271] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 16:36:33.271] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:33.271] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 16:36:33.271] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:33.271] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:33.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:33.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:33.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:33.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:33.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:33.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:33.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:33.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:33.389] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:34 GMT
[2021-08-31 16:36:33.390] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:33.390] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:33.390] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:33.390] [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":21.30,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":72,"memberExp":0,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 15:52:20","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":304835,"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 16:36:33.390] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:33.390] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:33.390] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUserList--Test Mthod Success
[2021-08-31 16:36:33.390] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:33:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======
[2021-08-31 16:36:33.390] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 242毫秒======
[2021-08-31 16:36:33.390] [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 16:36:33.390] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:33.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:33.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:33.391] [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 16:36:33.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:33.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:33.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:33.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:33.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:33.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:33.391] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:33.392] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:33.392] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"用户信息","caseLog":"======2021-08-31 16:36:33:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36: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,\"nobleName\":\"国王Ⅱ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":21.30,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":72,\"memberExp\":0,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 15:52:20\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":304835,\"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 16:36:33:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======\r\n======本次用例运行消耗时间 242毫秒======\r","caseName":"testUserList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"242毫秒","endTime":"2021-08-31 16:36:33","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:33","status":1}
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:34 GMT
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:33.567] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:33.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:33.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:33.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:33.568] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:34.077] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:34:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-08-31 16:36:34.078] [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 16:36:34.078] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:34.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:34.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:34.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:34.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:34.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:34.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:34.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:34.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:34.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:34.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:34.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:34.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:35 GMT
[2021-08-31 16:36:34.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:34.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:34.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:34.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":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":21.30,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":72,"memberExp":0,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 15:52:20","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":304835,"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 16:36:34.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:34.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:34.286] [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 16:36:34.286] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:34.368] [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 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=52000, remark=1, type=1, userId=5523051}
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=52000&remark=1&type=1&userId=5523051
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:34.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:35 GMT
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:34.474] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:34.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-08-31 16:36:34.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:34.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:34.475] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testVirtualMoneyModify--Test Mthod Success
[2021-08-31 16:36:34.475] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:34:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-08-31 16:36:34.475] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 398毫秒======
[2021-08-31 16:36:34.475] [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 16:36:34.475] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:34.476] [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 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:34.476] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-08-31 16:36:34:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:35 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"国王Ⅱ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":21.30,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":72,\"memberExp\":0,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 15:52:20\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":304835,\"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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:35 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:34:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 398毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"398毫秒","endTime":"2021-08-31 16:36:34","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:34","status":1}
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:35 GMT
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:34.638] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:34.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:34.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:34.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:35.145] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:35:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======
[2021-08-31 16:36:35.145] [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 16:36:35.146] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:35.218] [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 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-60cf99dd715a4ac8905ac330b38cb853#5523051
[2021-08-31 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {activityId=188, times=1, roomNo=882100, timestamp=1621828487580}
[2021-08-31 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:35.218] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - activityId=188×=1&roomNo=882100×tamp=1621828487580
[2021-08-31 16:36:35.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:35.219] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:35.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:36 GMT
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"开宝箱成功!","data":"11yJhY55A58bok0m+huAzRHehyohTMatJM8YhO2hSrKlz+gj644wF8rIpBZz6FxDF0HyQEnvm3iCkAJMBANmq96elWFAI/ewVjdymE3Y+hHXxwPgDpep5vtI0mVaWY431sAW+qmuA2cIeEPdnkHZGNNIyBFkv71bdvWOdV99i+v95llITH1LgRicjTs879GxXN3kvbd+OVXvy3jpz7STFpN/z3V49gNL2NBxhV0JBMHrtCmzRC7SMTvhaGImNT22mFlbtghvC9gT/lkcnKrPW0YMJMZDyHJNhL31tXFsx9K4uwtw6ZxSNEmIWiOooomM1gkkh+y/UME3ota+c3D+GehEPwrqEo0eC6Pz/uRtvFeK1C050ifxoPJN65w4JxG6zzLl/45eoLxeGGARIF6ycM+rP+a14DPBvQZPCXpRdaJvnupRh/F8nE/jMe79Ur+sLW1RkfW+u8W6WR3UNKyktmVtki+htSMuAGGmyerRuo/hpGAVT+elVfCkPiAMpH4osAzrY2z/th8thWz6+phxjgdrcRa+tlGtvfu8eS6qKDM+fWNlFSJUXN0Bzo2OHKaK3p+kUU9v9y/VP+h7BXQEOT3pqrj2TtFeU78saE1BRXQYF3lyH5McxFm/nQU1tFFpukOl7jnTudaJPUm8kfy06Xds+SROFOR0su4kkKkfaXnU8kgrIlC69ltbJP8dob2Ut27fWU6kqx8aoSkUoHzJAA==","status":200}
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:35.997] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:35.998] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testLotteryActivity--Test Mthod Success
[2021-08-31 16:36:35.998] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:35:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======
[2021-08-31 16:36:35.998] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 853毫秒======
[2021-08-31 16:36:35.998] [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 16:36:35.998] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:35.999] [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 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:35.999] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"开宝箱","caseLog":"======2021-08-31 16:36:35:用例【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-60cf99dd715a4ac8905ac330b38cb853#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 08:36:36 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"开宝箱成功!\",\"data\":\"11yJhY55A58bok0m+huAzRHehyohTMatJM8YhO2hSrKlz+gj644wF8rIpBZz6FxDF0HyQEnvm3iCkAJMBANmq96elWFAI/ewVjdymE3Y+hHXxwPgDpep5vtI0mVaWY431sAW+qmuA2cIeEPdnkHZGNNIyBFkv71bdvWOdV99i+v95llITH1LgRicjTs879GxXN3kvbd+OVXvy3jpz7STFpN/z3V49gNL2NBxhV0JBMHrtCmzRC7SMTvhaGImNT22mFlbtghvC9gT/lkcnKrPW0YMJMZDyHJNhL31tXFsx9K4uwtw6ZxSNEmIWiOooomM1gkkh+y/UME3ota+c3D+GehEPwrqEo0eC6Pz/uRtvFeK1C050ifxoPJN65w4JxG6zzLl/45eoLxeGGARIF6ycM+rP+a14DPBvQZPCXpRdaJvnupRh/F8nE/jMe79Ur+sLW1RkfW+u8W6WR3UNKyktmVtki+htSMuAGGmyerRuo/hpGAVT+elVfCkPiAMpH4osAzrY2z/th8thWz6+phxjgdrcRa+tlGtvfu8eS6qKDM+fWNlFSJUXN0Bzo2OHKaK3p+kUU9v9y/VP+h7BXQEOT3pqrj2TtFeU78saE1BRXQYF3lyH5McxFm/nQU1tFFpukOl7jnTudaJPUm8kfy06Xds+SROFOR0su4kkKkfaXnU8kgrIlC69ltbJP8dob2Ut27fWU6kqx8aoSkUoHzJAA==\",\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:35:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======\r\n======本次用例运行消耗时间 853毫秒======\r","caseName":"testLotteryActivity","className":"com.pipi.invoker.CosPlayerTest","durationTime":"853毫秒","endTime":"2021-08-31 16:36:35","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:35","status":1}
[2021-08-31 16:36:36.196] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:37 GMT
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:36.197] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:36.708] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:36:36:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======
[2021-08-31 16:36:36.708] [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 16:36:36.708] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:36.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:36.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:36.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/user/list
[2021-08-31 16:36:36.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:36.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:36.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:d951c25af93a47d3ae8d43219d75fadf
[2021-08-31 16:36:36.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:36.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:36.804] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-08-31 16:36:36.804] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:36.804] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-08-31 16:36:36.804] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:36.804] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:37 GMT
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:36.917] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:36.918] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:36.918] [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":21.30,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":0,"nobleRankCode":72,"memberExp":0,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"guildCode":"16677017","userCode":"115032550","loginTime":"2021-08-31 15:52:20","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":356834,"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 16:36:36.918] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:36.918] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:36.918] [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 16:36:36.918] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:37.045] [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 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-c7e1e8801dea4a61883e3806ac1fc563#5523052
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {userId=5523051}
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - userId=5523051
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:37.045] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:36:37.453] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:38 GMT
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","status":200}
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:37.454] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:37.454] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRemove--Test Mthod Success
[2021-08-31 16:36:37.454] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:36:37:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======
[2021-08-31 16:36:37.455] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 746毫秒======
[2021-08-31 16:36:37.455] [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 16:36:37.455] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:37.455] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:37.455] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:37.455] [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 16:36:37.455] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:37.456] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:37.456] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:37.456] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:37.456] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:37.456] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:37.456] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:37.456] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:37.456] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"将成员从公会移除","caseLog":"======2021-08-31 16:36:36:用例【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\":\"d951c25af93a47d3ae8d43219d75fadf\",\"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 08:36:37 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":0,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"国王Ⅱ\",\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":21.30,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":72,\"memberExp\":0,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"guildCode\":\"16677017\",\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 15:52:20\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":356834,\"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-c7e1e8801dea4a61883e3806ac1fc563#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 08:36:38 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"status\":200}\r\n===================================\r\n======2021-08-31 16:36:37:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======\r\n======本次用例运行消耗时间 746毫秒======\r","caseName":"testRemove","className":"com.pipi.invoker.CosPlayerTest","durationTime":"746毫秒","endTime":"2021-08-31 16:36:37","id":0,"serviceId":1,"startTime":"2021-08-31 16:36:36","status":1}
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:38 GMT
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:37.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:37.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRSend
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomList
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple2
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetMine
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGethome
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserSimple
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testVirtualMoneyModify
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testQSend
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpSize
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGetUserBalance
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomRecord
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMSend
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testLotteryActivity
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testPipibiSend
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUserList
[2021-08-31 16:36:38.111] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRemove
[2021-08-31 16:36:38.112] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testAuditGuild
[2021-08-31 16:36:38.112] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGuildSearch
[2021-08-31 16:36:38.112] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpList
[2021-08-31 16:36:38.112] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testManagerList
[2021-08-31 16:36:38.112] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMoneyDetailsSave
[2021-08-31 16:36:38.112] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:23
[2021-08-31 16:36:38.112] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 16:36:38.112] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 16:36:38.116] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 16:36:38.117] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 16:36:38.121] [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 16:36:38.121] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:36:38.122] [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 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:36:38.122] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"40秒722毫秒","endTime":"2021-08-31 16:36:38","env":"pre-test","failed":0,"id":0,"passed":23,"serviceId":1,"skipped":0,"startTime":"2021-08-31 16:35:57","status":1,"teamId":0,"total":23}
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:36:40.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:36:40.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:36:41 GMT
[2021-08-31 16:36:40.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:36:40.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:36:40.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:36:40.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:36:40.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:36:40.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:36:40.548] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-31 16:36:38:测试集结束======
[2021-08-31 16:36:40.548] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 40秒722毫秒======
[2021-08-31 16:45:35.097] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 16:45:35.162] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 16:45:35:测试集开始======
[2021-08-31 16:45:35.185] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-08-31 16:45:35.185] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 16:45:35.185] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 16:45:35.232] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 16:45:35.234] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 16:45:35.248] [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 16:45:35.248] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:45:35.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:45:35.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:45:35.250] [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 16:45:35.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:45:35.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:45:35.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:45:35.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:45:35.251] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:45:35.251] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:45:35.251] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:45:35.252] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:45:35.252] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"024毫秒","endTime":"2021-08-31 16:45:35","env":"pre-test","failed":0,"id":0,"passed":0,"serviceId":1,"skipped":0,"startTime":"2021-08-31 16:45:35","status":1,"teamId":0,"total":0}
[2021-08-31 16:45:38.255] [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 16:45:38.256] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:45:59.967] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 16:46:00.035] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 16:46:00:测试集开始======
[2021-08-31 16:46:00.056] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-08-31 16:46:00.056] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 16:46:00.056] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 16:46:00.108] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 16:46:00.109] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 16:46:00.116] [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 16:46:00.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:46:00.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:46:00.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:46:00.118] [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 16:46:00.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:46:00.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:46:00.118] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:46:00.119] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:46:00.119] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:46:00.119] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:46:00.120] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:46:00.120] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:46:00.120] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"022毫秒","endTime":"2021-08-31 16:46:00","env":"pre-test","failed":0,"id":0,"passed":0,"serviceId":1,"skipped":0,"startTime":"2021-08-31 16:46:00","status":1,"teamId":0,"total":0}
[2021-08-31 16:46:00.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:46:00.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:46:00.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:46:00.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:46:00.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:46:01 GMT
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":false}
[2021-08-31 16:46:00.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:46:00.335] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:46:00.335] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-31 16:46:00:测试集结束======
[2021-08-31 16:46:00.335] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 022毫秒======
[2021-08-31 16:46:13.709] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 16:46:13.773] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 16:46:13:测试集开始======
[2021-08-31 16:46:14.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 16:46:14.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:46:14.413] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:46:14.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:46:14.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 16:46:14.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:46:14.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:46:14.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:46:14.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:46:14.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-08-31 16:46:14.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:46:14.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-08-31 16:46:14.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:46:14.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:46:14.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:46:14.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:46:14.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:46:14.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:46:14.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:46:14.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:46:14.811] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:46:14.811] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-08-31 16:46:14.811] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:46:15 GMT
[2021-08-31 16:46:14.811] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:46:14.811] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:46:14.811] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:46:14.811] [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":"a22158f505ed4850b4418df79d288e48","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-08-31 16:46:14.811] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:46:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:46:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:46:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:46:14.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:46:14.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:46:14.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:46:14.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:46:14.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:46:14.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:46:14.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:46:14.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-31 16:46:14.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:46:14.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-31 16:46:14.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:46:14.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:46:14.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:46:14.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:46:14.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:46:14.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:46:14.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:46:14.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:46:14.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:46:14.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 16:46:14.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:46:15 GMT
[2021-08-31 16:46:14.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:46:14.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:46:14.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:46:14.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 16:46:14.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:46:14.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:46:14.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:46:14.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:46:15.074] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:46:15.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:46:15.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:46:15.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:46:15.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:46:15.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:46:15.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:46:15.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:46:15.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:46:15.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:933
[2021-08-31 16:46:15.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:46:16 GMT
[2021-08-31 16:46:15.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:46:15.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:46:15.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:46:15.194] [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-1f88dfa2de8b46cf96903a282599771e#5523051","createTime":"2021-08-31 11:13:53","newUser":false,"status":1},"status":200}
[2021-08-31 16:46:15.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:46:15.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:46:15.195] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:46:15.195] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:46:15.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:46:15.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:46:16 GMT
[2021-08-31 16:46:15.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:46:15.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:46:15.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:46:15.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 16:46:15.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:46:15.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:46:15.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:46:15.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:46:15.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:46:15.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:46:15.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:46:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:46:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:46:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:46:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:46:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-31 16:46:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:46:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-31 16:46:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:46:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:931
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:46:16 GMT
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:46:15.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:46:15.788] [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-339cf59111114190afab01d7c00f454d#5523052","createTime":"2021-08-31 11:13:54","newUser":false,"status":1},"status":200}
[2021-08-31 16:46:15.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:46:15.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:46:15.796] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:46:15:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】开始======
[2021-08-31 16:46:15.798] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/order/product
[2021-08-31 16:46:15.798] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/order/product
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-1f88dfa2de8b46cf96903a282599771e#5523051
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {productId=317595}
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:46:15.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - productId=317595
[2021-08-31 16:46:15.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:46:15.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:46:16 GMT
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:46:16.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:46:16.089] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:46:16.089] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"serverNickname":"test","playeeId":5523052,"productName":"王者荣耀","price":9.00,"chargeOptions":[{"baseUnit":"局","unit":"局","dayConvertAmount":0,"price":9.00,"threshold":999,"maxPrice":9.00}],"productId":317595,"serverHeadUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","memberLevel":0,"serverGender":1,"displayNewPrice":0,"serviceInfos":[],"otherProductList":[{"unit":"局","productId":317595,"categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png","certUrl":"","price":9.00,"maxPrice":9.00,"chargeOptions":[{"baseUnit":"局","unit":"局","dayConvertAmount":0,"price":9.00,"threshold":999,"maxPrice":9.00}],"displayNewPrice":0,"productName":"王者荣耀","categoryId":30}],"unit":"局","categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png","certUrl":"","maxPrice":9.00,"categoryId":30},"status":200}
[2021-08-31 16:46:16.089] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:46:16.089] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:46:16.092] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testOrderProduct--Test Mthod Success
[2021-08-31 16:46:16.092] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:46:16:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】结束======
[2021-08-31 16:46:16.092] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 296毫秒======
[2021-08-31 16:46:16.102] [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 16:46:16.102] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:46:16.103] [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 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:46:16.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"下单-王者荣耀","caseLog":"======2021-08-31 16:46:15:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v1/order/product\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-1f88dfa2de8b46cf96903a282599771e#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"productId\":\"317595\"}\r\n###Http Request queryString after URLEncoder### :\r\nproductId=317595\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 08:46:16 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"serverNickname\":\"test\",\"playeeId\":5523052,\"productName\":\"王者荣耀\",\"price\":9.00,\"chargeOptions\":[{\"baseUnit\":\"局\",\"unit\":\"局\",\"dayConvertAmount\":0,\"price\":9.00,\"threshold\":999,\"maxPrice\":9.00}],\"productId\":317595,\"serverHeadUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"memberLevel\":0,\"serverGender\":1,\"displayNewPrice\":0,\"serviceInfos\":[],\"otherProductList\":[{\"unit\":\"局\",\"productId\":317595,\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png\",\"certUrl\":\"\",\"price\":9.00,\"maxPrice\":9.00,\"chargeOptions\":[{\"baseUnit\":\"局\",\"unit\":\"局\",\"dayConvertAmount\":0,\"price\":9.00,\"threshold\":999,\"maxPrice\":9.00}],\"displayNewPrice\":0,\"productName\":\"王者荣耀\",\"categoryId\":30}],\"unit\":\"局\",\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png\",\"certUrl\":\"\",\"maxPrice\":9.00,\"categoryId\":30},\"status\":200}\r\n===================================\r\n======2021-08-31 16:46:16:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】结束======\r\n======本次用例运行消耗时间 296毫秒======\r","caseName":"testOrderProduct","className":"com.pipi.invoker.CosPlayerTest","durationTime":"296毫秒","endTime":"2021-08-31 16:46:16","id":0,"serviceId":1,"startTime":"2021-08-31 16:46:15","status":1}
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:46:17 GMT
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:46:16.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:46:16.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:46:16.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:46:16.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:46:16.973] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testOrderProduct
[2021-08-31 16:46:16.974] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-08-31 16:46:16.974] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 16:46:16.974] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 16:46:16.977] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 16:46:16.978] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 16:46:16.982] [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 16:46:16.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:46:16.983] [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 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:46:16.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"03秒201毫秒","endTime":"2021-08-31 16:46:16","env":"pre-test","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-08-31 16:46:13","status":1,"teamId":0,"total":1}
[2021-08-31 16:46:17.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:46:17.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:46:17.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:46:17.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:46:17.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:46:17.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:46:17.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:46:17.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:46:17.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:46:17.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:46:17.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:46:17.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:46:18 GMT
[2021-08-31 16:46:17.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:46:17.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:46:17.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:46:17.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:46:17.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:46:17.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:46:17.624] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-31 16:46:16:测试集结束======
[2021-08-31 16:46:17.624] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 03秒201毫秒======
[2021-08-31 16:51:57.547] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 16:51:57.611] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 16:51:57:测试集开始======
[2021-08-31 16:51:57.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 16:51:57.848] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:51:57.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:51:57.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:51:57.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 16:51:57.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:51:57.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:51:57.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:51:57.940] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:51:57.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-08-31 16:51:57.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:51:57.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-08-31 16:51:57.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:51:57.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:51:58.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:51:58.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:51:58.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:51:58.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:51:58.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:51:58.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:51:58.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:51:58.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-08-31 16:51:58.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:51:58 GMT
[2021-08-31 16:51:58.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:51:58.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:51:58.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:51:58.068] [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":"bf482f71d20e4909a17d7ce04ad45d76","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-08-31 16:51:58.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:51:58.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:51:58.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:51:58.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:51:58.151] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:51:58.151] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:51:58.151] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:51:58.151] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:51:58.151] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:51:58.151] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:51:58.151] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:51:58.152] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-31 16:51:58.152] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:51:58.152] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-31 16:51:58.152] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:51:58.152] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:51:58.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:51:58.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:51:58.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:51:58.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:51:58.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:51:58.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:51:58.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:51:58.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 16:51:58.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:51:59 GMT
[2021-08-31 16:51:58.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:51:58.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:51:58.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:51:58.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 16:51:58.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:51:58.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:51:58.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:51:58.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:51:58.313] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:51:58.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:51:58.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:51:58.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:51:58.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:51:58.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:51:58.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:51:58.420] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:51:58.421] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:51:58.421] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:933
[2021-08-31 16:51:58.421] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:51:59 GMT
[2021-08-31 16:51:58.421] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:51:58.421] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:51:58.421] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:51:58.421] [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-b42ef0e058f240e8bf85687e7c05fd55#5523051","createTime":"2021-08-31 11:13:53","newUser":false,"status":1},"status":200}
[2021-08-31 16:51:58.421] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:51:58.421] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:51:58.422] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:51:58.422] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:51:58.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:51:58.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:51:58.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:51:58.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:51:58.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:51:58.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:51:58.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:51:58.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:51:58.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:51:58.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 16:51:58.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:51:59 GMT
[2021-08-31 16:51:58.602] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:51:58.602] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:51:58.602] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:51:58.602] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 16:51:58.602] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:51:58.602] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:51:58.602] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:51:58.602] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:51:58.671] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:51:58.671] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:51:58.671] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:51:58.671] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:51:58.671] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:51:58.671] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:51:58.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:51:58.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-31 16:51:58.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:51:58.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-31 16:51:58.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:51:58.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:51:58.767] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:931
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:51:59 GMT
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:51:58.768] [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-6ee1bc8869bf4e83af7f37a3c278ff06#5523052","createTime":"2021-08-31 11:13:54","newUser":false,"status":1},"status":200}
[2021-08-31 16:51:58.768] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:51:58.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:51:58.776] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:51:58:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】开始======
[2021-08-31 16:51:58.778] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/order/product
[2021-08-31 16:51:58.778] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:51:58.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:51:58.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:51:58.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/order/product
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-b42ef0e058f240e8bf85687e7c05fd55#5523051
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {productId=317595}
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - productId=317595
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:51:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:51:58.927] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:51:58.927] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:51:59 GMT
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"serverNickname":"test","playeeId":5523052,"productName":"王者荣耀","price":9.00,"chargeOptions":[{"baseUnit":"局","unit":"局","dayConvertAmount":0,"price":9.00,"threshold":999,"maxPrice":9.00}],"productId":317595,"serverHeadUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","memberLevel":0,"serverGender":1,"displayNewPrice":0,"serviceInfos":[],"otherProductList":[{"unit":"局","productId":317595,"categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png","certUrl":"","price":9.00,"maxPrice":9.00,"chargeOptions":[{"baseUnit":"局","unit":"局","dayConvertAmount":0,"price":9.00,"threshold":999,"maxPrice":9.00}],"displayNewPrice":0,"productName":"王者荣耀","categoryId":30}],"unit":"局","categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png","certUrl":"","maxPrice":9.00,"categoryId":30},"status":200}
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:51:58.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:51:58.932] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testOrderProduct--Test Mthod Success
[2021-08-31 16:51:58.932] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:51:58:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】结束======
[2021-08-31 16:51:58.932] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 156毫秒======
[2021-08-31 16:51:58.942] [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 16:51:58.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:51:58.943] [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 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:51:58.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"下单-王者荣耀","caseLog":"======2021-08-31 16:51:58:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v1/order/product\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-b42ef0e058f240e8bf85687e7c05fd55#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"productId\":\"317595\"}\r\n###Http Request queryString after URLEncoder### :\r\nproductId=317595\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 08:51:59 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"serverNickname\":\"test\",\"playeeId\":5523052,\"productName\":\"王者荣耀\",\"price\":9.00,\"chargeOptions\":[{\"baseUnit\":\"局\",\"unit\":\"局\",\"dayConvertAmount\":0,\"price\":9.00,\"threshold\":999,\"maxPrice\":9.00}],\"productId\":317595,\"serverHeadUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"memberLevel\":0,\"serverGender\":1,\"displayNewPrice\":0,\"serviceInfos\":[],\"otherProductList\":[{\"unit\":\"局\",\"productId\":317595,\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png\",\"certUrl\":\"\",\"price\":9.00,\"maxPrice\":9.00,\"chargeOptions\":[{\"baseUnit\":\"局\",\"unit\":\"局\",\"dayConvertAmount\":0,\"price\":9.00,\"threshold\":999,\"maxPrice\":9.00}],\"displayNewPrice\":0,\"productName\":\"王者荣耀\",\"categoryId\":30}],\"unit\":\"局\",\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png\",\"certUrl\":\"\",\"maxPrice\":9.00,\"categoryId\":30},\"status\":200}\r\n===================================\r\n======2021-08-31 16:51:58:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】结束======\r\n======本次用例运行消耗时间 156毫秒======\r","caseName":"testOrderProduct","className":"com.pipi.invoker.CosPlayerTest","durationTime":"156毫秒","endTime":"2021-08-31 16:51:58","id":0,"serviceId":1,"startTime":"2021-08-31 16:51:58","status":1}
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:51:59.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:52:00 GMT
[2021-08-31 16:51:59.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:51:59.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:51:59.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:51:59.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:51:59.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:51:59.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:51:59.862] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testOrderProduct
[2021-08-31 16:51:59.862] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-08-31 16:51:59.862] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 16:51:59.862] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 16:51:59.866] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 16:51:59.867] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 16:51:59.871] [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 16:51:59.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:51:59.872] [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 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:51:59.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"02秒252毫秒","endTime":"2021-08-31 16:51:59","env":"pre-test","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-08-31 16:51:57","status":1,"teamId":0,"total":1}
[2021-08-31 16:52:01.503] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:52:01.503] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:52:01.503] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:52:01.503] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:52:02 GMT
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:52:01.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:52:01.504] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-31 16:51:59:测试集结束======
[2021-08-31 16:52:01.504] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒252毫秒======
[2021-08-31 16:57:13.562] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 16:57:13.630] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 16:57:13:测试集开始======
[2021-08-31 16:57:13.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 16:57:13.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:57:13.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:57:13.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:57:13.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 16:57:13.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:57:13.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:57:13.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:57:13.954] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:57:13.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-08-31 16:57:13.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:57:13.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-08-31 16:57:13.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:57:13.955] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:57:14.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:57:14.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:57:14.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:57:14.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:57:14.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 16:57:14.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:57:14.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:57:14.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-08-31 16:57:14.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:57:15 GMT
[2021-08-31 16:57:14.345] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:57:14.345] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:57:14.345] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:57:14.345] [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":"1c51de5d0adb4b97957425dc6bff086a","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-08-31 16:57:14.345] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:57:14.345] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:57:14.346] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:57:14.346] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:57:14.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:57:14.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:57:14.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:57:14.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:57:15 GMT
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:57:14.737] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:57:14.738] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:57:14.738] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:57:14.811] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:57:14.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:57:15.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:57:15.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:57:15.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:57:15.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:57:15.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:57:15.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:57:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:57:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-31 16:57:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:57:16 GMT
[2021-08-31 16:57:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:57:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:57:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:57:15.674] [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":18,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","imId":"5523051_20210831","token":"APP-e1848b898bb3431cb3a575cc4b6f554b#5523051","createTime":"2021-08-31 11:13:53","newUser":false,"status":1},"status":200}
[2021-08-31 16:57:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:57:15.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:57:15.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:57:15.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:57:15.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:57:15.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:57:15.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 16:57:15.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:57:15.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:57:15.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:57:15.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:57:15.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-31 16:57:15.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:57:15.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-31 16:57:15.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:57:15.793] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:57:16.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:57:16.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:57:16.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:57:16.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:57:16.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:57:16.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:57:16.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:57:16.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 16:57:16.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:57:17 GMT
[2021-08-31 16:57:16.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:57:16.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:57:16.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:57:16.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 16:57:16.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:57:16.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:57:16.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:57:16.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:57:16.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:57:16.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:57:16.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 16:57:16.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:57:16.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:57:16.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:57:16.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:57:16.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-31 16:57:16.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:57:16.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-31 16:57:16.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:57:16.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:57:16.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:57:16.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:57:16.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:57:16.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:931
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:57:17 GMT
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:57:16.916] [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-47e6ab488e3645469829c6eadf0d1774#5523052","createTime":"2021-08-31 11:13:54","newUser":false,"status":1},"status":200}
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:57:16.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:57:16.923] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 16:57:16:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】开始======
[2021-08-31 16:57:16.925] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/api/v1/order/product
[2021-08-31 16:57:16.925] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:57:16.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/api/v1/order/product
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-e1848b898bb3431cb3a575cc4b6f554b#5523051
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {productId=317595}
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - productId=317595
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:57:16.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:57:18 GMT
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:57:17.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:57:17.892] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"serverNickname":"test","playeeId":5523052,"productName":"王者荣耀","price":9.00,"chargeOptions":[{"baseUnit":"局","unit":"局","dayConvertAmount":0,"price":9.00,"threshold":999,"maxPrice":9.00}],"productId":317595,"serverHeadUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","memberLevel":0,"serverGender":1,"displayNewPrice":0,"serviceInfos":[],"otherProductList":[{"unit":"局","productId":317595,"categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png","certUrl":"","price":9.00,"maxPrice":9.00,"chargeOptions":[{"baseUnit":"局","unit":"局","dayConvertAmount":0,"price":9.00,"threshold":999,"maxPrice":9.00}],"displayNewPrice":0,"productName":"王者荣耀","categoryId":30}],"unit":"局","categoryIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png","certUrl":"","maxPrice":9.00,"categoryId":30},"status":200}
[2021-08-31 16:57:17.892] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:57:17.892] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:57:17.895] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testOrderProduct--Test Mthod Success
[2021-08-31 16:57:17.895] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 16:57:17:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】结束======
[2021-08-31 16:57:17.895] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 972毫秒======
[2021-08-31 16:57:17.905] [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 16:57:17.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:57:17.906] [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 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:57:17.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"下单-王者荣耀","caseLog":"======2021-08-31 16:57:16:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-app.apeiwan.com/api/v1/order/product\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-e1848b898bb3431cb3a575cc4b6f554b#5523051\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"productId\":\"317595\"}\r\n###Http Request queryString after URLEncoder### :\r\nproductId=317595\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx/1.14.0\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 08:57:18 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"serverNickname\":\"test\",\"playeeId\":5523052,\"productName\":\"王者荣耀\",\"price\":9.00,\"chargeOptions\":[{\"baseUnit\":\"局\",\"unit\":\"局\",\"dayConvertAmount\":0,\"price\":9.00,\"threshold\":999,\"maxPrice\":9.00}],\"productId\":317595,\"serverHeadUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"memberLevel\":0,\"serverGender\":1,\"displayNewPrice\":0,\"serviceInfos\":[],\"otherProductList\":[{\"unit\":\"局\",\"productId\":317595,\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png\",\"certUrl\":\"\",\"price\":9.00,\"maxPrice\":9.00,\"chargeOptions\":[{\"baseUnit\":\"局\",\"unit\":\"局\",\"dayConvertAmount\":0,\"price\":9.00,\"threshold\":999,\"maxPrice\":9.00}],\"displayNewPrice\":0,\"productName\":\"王者荣耀\",\"categoryId\":30}],\"unit\":\"局\",\"categoryIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/2/7b519494b8a14a37bdc3af4fa54e7453.png\",\"certUrl\":\"\",\"maxPrice\":9.00,\"categoryId\":30},\"status\":200}\r\n===================================\r\n======2021-08-31 16:57:17:用例【com.pipi.invoker.CosPlayerTest.testOrderProduct】结束======\r\n======本次用例运行消耗时间 972毫秒======\r","caseName":"testOrderProduct","className":"com.pipi.invoker.CosPlayerTest","durationTime":"972毫秒","endTime":"2021-08-31 16:57:17","id":0,"serviceId":1,"startTime":"2021-08-31 16:57:16","status":1}
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:57:18.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:57:18.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:57:18 GMT
[2021-08-31 16:57:18.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:57:18.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:57:18.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:57:18.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:57:18.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:57:18.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:57:18.550] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testOrderProduct
[2021-08-31 16:57:18.550] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-08-31 16:57:18.550] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 16:57:18.550] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 16:57:18.553] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 16:57:18.553] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 16:57:18.557] [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 16:57:18.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 16:57:18.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 16:57:18.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 16:57:18.558] [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 16:57:18.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 16:57:18.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 16:57:18.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 16:57:18.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 16:57:18.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 16:57:18.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 16:57:18.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 16:57:18.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 16:57:18.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"04秒921毫秒","endTime":"2021-08-31 16:57:18","env":"pre-test","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-08-31 16:57:13","status":1,"teamId":0,"total":1}
[2021-08-31 16:57:19.126] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 16:57:19.126] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 16:57:19.126] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 16:57:19.126] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 16:57:19.126] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 16:57:19.126] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 16:57:19.126] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 16:57:19.126] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 16:57:19.126] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 16:57:19.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 16:57:19.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 16:57:19.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 08:57:19 GMT
[2021-08-31 16:57:19.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 16:57:19.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 16:57:19.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 16:57:19.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 16:57:19.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 16:57:19.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 16:57:19.127] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-08-31 16:57:18:测试集结束======
[2021-08-31 16:57:19.127] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 04秒921毫秒======
[2021-08-31 17:36:29.528] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-08-31 17:36:29.593] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-08-31 17:36:29:测试集开始======
[2021-08-31 17:36:29.819] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 17:36:29.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 17:36:29.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 17:36:29.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 17:36:29.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-08-31 17:36:29.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 17:36:29.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 17:36:29.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 17:36:29.990] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 17:36:29.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-08-31 17:36:29.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 17:36:29.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-08-31 17:36:29.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 17:36:29.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 17:36:30.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 17:36:30.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 17:36:30.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 17:36:30.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 17:36:30.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 17:36:30.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 17:36:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 17:36:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-08-31 17:36:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 09:36:30 GMT
[2021-08-31 17:36:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 17:36:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 17:36:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 17:36:30.145] [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":"93e8ba19c6b343e6a3636b2c94fe6a1e","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-08-31 17:36:30.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 17:36:30.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 17:36:30.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 17:36:30.146] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 17:36:30.264] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 17:36:30.265] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 17:36:30.265] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 17:36:30.265] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 17:36:30.265] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 17:36:30.265] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 17:36:30.265] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 17:36:30.266] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-08-31 17:36:30.266] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 17:36:30.266] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-08-31 17:36:30.266] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 17:36:30.266] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 17:36:30.330] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:403
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 09:36:31 GMT
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"[500] during [POST] to [http://game-cp-user/com.fulu.game.cp.user.CpSmsPushService/sendVerificationCode?mobile=13823774134] [CpSmsPushService#sendVerificationCode(String)]: [{\"timestamp\":\"2021-08-31 17:36:31\",\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"\",\"path\":\"/com.fulu.game.cp.user.CpSmsPushService/sendVerificationCode\"}]","data":{},"status":500}
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 17:36:30.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 17:36:30.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 17:36:30.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 17:36:30.417] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 17:36:30.417] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 17:36:30.417] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 17:36:30.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 17:36:30.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 17:36:30.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 17:36:30.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 17:36:30.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-08-31 17:36:30.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 17:36:30.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-08-31 17:36:30.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 17:36:30.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 17:36:30.529] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 17:36:30.529] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 17:36:30.529] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 17:36:30.529] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 09:36:31 GMT
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 17:36:30.530] [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":18,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","imId":"5523051_20210831","token":"APP-da2349e4b6fe420481182f6d12568467#5523051","createTime":"2021-08-31 11:13:53","newUser":false,"status":1},"status":200}
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 17:36:30.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 17:36:30.531] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 17:36:30.531] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 17:36:30.628] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/sms/verify
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 17:36:30.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 17:36:30.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 17:36:30.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 17:36:30.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 17:36:30.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 17:36:30.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 17:36:30.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 17:36:30.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 17:36:30.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-08-31 17:36:30.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 09:36:31 GMT
[2021-08-31 17:36:30.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 17:36:30.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 17:36:30.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 17:36:30.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-08-31 17:36:30.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 17:36:30.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 17:36:30.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-app.apeiwan.com/login
[2021-08-31 17:36:30.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 17:36:30.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 17:36:30.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 17:36:30.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-app.apeiwan.com/login
[2021-08-31 17:36:30.790] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 17:36:30.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 17:36:30.791] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 17:36:30.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 17:36:30.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-08-31 17:36:30.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 17:36:30.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-08-31 17:36:30.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 17:36:30.792] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 17:36:30.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 17:36:30.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 17:36:30.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 17:36:30.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 17:36:30.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx/1.14.0
[2021-08-31 17:36:30.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 17:36:30.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 17:36:30.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:931
[2021-08-31 17:36:30.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 09:36:31 GMT
[2021-08-31 17:36:30.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 17:36:30.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 17:36:30.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 17:36:30.899] [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-2ba50e774f7b41c5be7462380b0267bb#5523052","createTime":"2021-08-31 11:13:54","newUser":false,"status":1},"status":200}
[2021-08-31 17:36:30.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 17:36:30.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 17:36:30.907] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-08-31 17:36:30:用例【com.pipi.invoker.CosPlayerTest.testOrderList】开始======
[2021-08-31 17:36:30.909] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/order/list
[2021-08-31 17:36:30.909] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 17:36:30.957] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/order/list
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:93e8ba19c6b343e6a3636b2c94fe6a1e
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {chanType=0, pageSize=10, pageNum=1, status=20}
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - chanType=0&pageSize=10&pageNum=1&status=20
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 17:36:30.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-08-31 17:36:32.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 17:36:32.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 17:36:32.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-08-31 17:36:32.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 17:36:32.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 17:36:32.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-08-31 17:36:32.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 17:36:32.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-08-31 17:36:32.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 09:36:33 GMT
[2021-08-31 17:36:32.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-08-31 17:36:32.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 17:36:32.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 17:36:32.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询列表成功!","data":{"startRow":1,"lastPage":8,"navigatepageNums":[1,2,3,4,5,6,7,8],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"id DESC","endRow":10,"list":[{"payTime":"2021-08-31 17:09:00","serverUser":{"sourceId":0,"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,"userCode":"125032550","loginTime":"2021-08-31 16:51:59","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041396,"beginTime":"2021-08-31 17:30:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831670399","totalMoney":9.00,"completeTime":"2021-08-31 17:29:00","refundMoney":9.00,"typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":102,"statusStr":"已取消","isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":0.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831670399","productId":317595,"createTime":"2021-08-31 17:08:59","price":9.00,"updateTime":"2021-08-31 17:08:59","id":3040770,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","isPay":true,"refundTime":"2021-08-31 17:29:00","updateTime":"2021-08-31 17:29:00","userId":5523051,"serviceUserId":5523052,"createTime":"2021-08-31 17:08:59","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10003.30,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-08-31 16:57:16","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456834,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 17:02:23","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":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,"userCode":"125032550","loginTime":"2021-08-31 16:51:59","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041395,"beginTime":"2021-08-31 17:30:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831621739","totalMoney":9.00,"completeTime":"2021-08-31 17:06:38","refundMoney":9.00,"typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":101,"statusStr":"已取消","isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":0.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831621739","productId":317595,"createTime":"2021-08-31 17:02:21","price":9.00,"updateTime":"2021-08-31 17:02:21","id":3040769,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","cancelReason":"陪玩师正在接单","isPay":true,"refundTime":"2021-08-31 17:06:38","updateTime":"2021-08-31 17:06:38","userId":5523051,"serviceUserId":5523052,"createTime":"2021-08-31 17:02:21","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10003.30,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-08-31 16:57:16","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456834,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 17:01:08","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":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,"userCode":"125032550","loginTime":"2021-08-31 16:51:59","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041394,"beginTime":"2021-08-31 17:30:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831966647","totalMoney":9.00,"completeTime":"2021-08-31 17:01:59","refundMoney":9.00,"typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":101,"statusStr":"已取消","isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":0.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831966647","productId":317595,"createTime":"2021-08-31 17:01:07","price":9.00,"updateTime":"2021-08-31 17:01:07","id":3040768,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","cancelReason":"陪玩师正在接单","isPay":true,"refundTime":"2021-08-31 17:01:59","updateTime":"2021-08-31 17:01:59","userId":5523051,"serviceUserId":5523052,"createTime":"2021-08-31 17:01:07","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10003.30,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-08-31 16:57:16","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456834,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 16:53:32","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":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,"userCode":"125032550","loginTime":"2021-08-31 16:51:59","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041393,"beginTime":"2021-08-31 17:15:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831387246","totalMoney":9.00,"completeTime":"2021-08-31 17:00:49","refundMoney":9.00,"typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":101,"statusStr":"已取消","isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":0.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831387246","productId":317595,"createTime":"2021-08-31 16:53:31","price":9.00,"updateTime":"2021-08-31 16:53:31","id":3040767,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","cancelReason":"陪玩师正在接单","isPay":true,"refundTime":"2021-08-31 17:00:49","updateTime":"2021-08-31 17:00:49","userId":5523051,"serviceUserId":5523052,"createTime":"2021-08-31 16:53:31","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10003.30,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-08-31 16:57:16","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456834,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 16:47:00","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":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,"userCode":"125032550","loginTime":"2021-08-31 16:51:59","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041392,"beginTime":"2021-08-31 17:15:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831762241","totalMoney":9.00,"completeTime":"2021-08-31 16:52:25","serviceTime":"2021-08-31 16:49:40","typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":600,"statusStr":"已完成","commissionMoney":2.70,"isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":9.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831762241","productId":317595,"createTime":"2021-08-31 16:47:00","price":9.00,"updateTime":"2021-08-31 16:47:00","id":3040766,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","receivingTime":"2021-08-31 16:49:39","isPay":true,"updateTime":"2021-08-31 16:52:28","userId":5523051,"serviceUserId":5523052,"serverMoney":6.30,"createTime":"2021-08-31 16:47:00","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10003.30,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-08-31 16:57:16","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456834,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 16:43:01","serverUser":{"sourceId":0,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523052,"chargeBalance":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,"userCode":"125032550","loginTime":"2021-08-31 16:51:59","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":0,"isCancel":false,"mobile":"13823774131","imPsw":"50343b2c0c9f45f489c479c8a6b7238f","updateTime":"2021-08-31 11:13:53","quickServerStatus":5,"imId":"5523052_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:54","newUser":false},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041391,"beginTime":"2021-08-31 17:00:00","userNickName":"沉着的电脑","actualMoney":9.00,"orderNo":"TEST210831991992","totalMoney":9.00,"completeTime":"2021-08-31 16:52:14","serviceTime":"2021-08-31 16:49:45","typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":600,"statusStr":"已完成","commissionMoney":2.70,"isPayCallback":true,"sourceOs":0,"remark":"","platform":5,"incomeMoney":9.00,"serviceUserNickName":"test","sourcePlatform":0,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831991992","productId":317595,"createTime":"2021-08-31 16:43:01","price":9.00,"updateTime":"2021-08-31 16:43:01","id":3040765,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","receivingTime":"2021-08-31 16:49:43","isPay":true,"updateTime":"2021-08-31 16:52:23","userId":5523051,"serviceUserId":5523052,"serverMoney":6.30,"createTime":"2021-08-31 16:43:01","user":{"sourceId":0,"platformAuth":0,"type":1,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5523051,"chargeBalance":10003.30,"headPortraitsUrl":"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg","lastMemberExp":18,"memberExp":18,"activeTime":"2021-08-31 11:13:53","userInfoAuth":0,"status":1,"gender":0,"registerType":0,"userCode":"115032550","loginTime":"2021-08-31 16:57:16","nickname":"沉着的电脑","registIp":"61.183.246.70","virtualBalance":456834,"isCancel":false,"mobile":"13823774134","imPsw":"b739ce120f584a7597187eecc691bba8","updateTime":"2021-08-31 11:13:53","quickServerStatus":0,"imId":"5523051_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-31 11:13:53","newUser":false},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 15:18:32","serverUser":{"sourceId":5,"platformAuth":0,"publicOpenId":"os6HU027aaPexjqLA4ba5KCr38N8","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"113.57.244.201","id":5523039,"chargeBalance":996730.81,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c976818d5b94ef1b640103347110b7b.jpg","lastMemberExp":4233,"memberExp":4233,"activeTime":"2021-08-31 10:43:09","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"193032550","loginTime":"2021-08-31 14:05:37","ordersTakeStatus":1,"nickname":"测试1号","registIp":"61.183.246.70","virtualBalance":767182,"isCancel":false,"mobile":"13600000001","imPsw":"7ac7c6ebf474473d8e2816548847a25e","updateTime":"2021-08-31 15:06:35","quickServerStatus":3,"imId":"5523039_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-30 11:48:39","newUser":false,"registDeviceNo":"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d"},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041390,"beginTime":"2021-08-31 15:45:00","userNickName":"一路向前的小安","actualMoney":9.00,"orderNo":"TEST210831845259","totalMoney":9.00,"completeTime":"2021-08-31 15:20:55","serviceTime":"2021-08-31 15:20:34","typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":600,"statusStr":"已完成","commissionMoney":2.70,"isPayCallback":true,"sourceOs":3,"remark":"","platform":5,"incomeMoney":9.00,"serviceUserNickName":"测试1号","sourcePlatform":5,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831845259","productId":317598,"createTime":"2021-08-31 15:18:32","price":9.00,"updateTime":"2021-08-31 15:18:32","id":3040764,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","receivingTime":"2021-08-31 15:20:30","isPay":true,"updateTime":"2021-08-31 15:21:03","userId":5244881,"serviceUserId":5523039,"serverMoney":6.30,"createTime":"2021-08-31 15:18:32","user":{"sourceId":5,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5244881,"chargeBalance":998782.06,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c5ee0b735f0400883996a4b632cba7d.jpg","lastMemberExp":1212,"memberExp":1212,"activeTime":"2021-08-31 10:35:50","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"118844250","loginTime":"2021-08-31 14:41:45","ordersTakeStatus":1,"nickname":"一路向前的小安","registIp":"171.83.98.52","virtualBalance":873322,"isCancel":false,"mobile":"19972682997","imPsw":"0bc5a05ed6034cc395b71acc664001fc","updateTime":"2021-08-31 10:35:50","quickServerStatus":3,"imId":"5244881_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-05 16:39:01","newUser":false,"registDeviceNo":"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d"},"payableMoney":9.00,"categoryId":30},{"payTime":"2021-08-31 15:15:05","serverUser":{"sourceId":5,"platformAuth":0,"publicOpenId":"os6HU027aaPexjqLA4ba5KCr38N8","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"113.57.244.201","id":5523039,"chargeBalance":996730.81,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c976818d5b94ef1b640103347110b7b.jpg","lastMemberExp":4233,"memberExp":4233,"activeTime":"2021-08-31 10:43:09","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"193032550","loginTime":"2021-08-31 14:05:37","ordersTakeStatus":1,"nickname":"测试1号","registIp":"61.183.246.70","virtualBalance":767182,"isCancel":false,"mobile":"13600000001","imPsw":"7ac7c6ebf474473d8e2816548847a25e","updateTime":"2021-08-31 15:06:35","quickServerStatus":3,"imId":"5523039_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-30 11:48:39","newUser":false,"registDeviceNo":"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d"},"type":1,"orderIp":"61.183.246.70","payment":2,"id":3041389,"beginTime":"2021-08-31 15:45:00","userNickName":"一路向前的小安","actualMoney":9.00,"orderNo":"TEST210831043163","totalMoney":9.00,"completeTime":"2021-08-31 15:17:44","serviceTime":"2021-08-31 15:16:02","typeStr":"android注册来源","charges":0.3000,"name":"王者荣耀 1*局","status":600,"statusStr":"已完成","commissionMoney":2.70,"isPayCallback":true,"sourceOs":3,"remark":"","platform":5,"incomeMoney":9.00,"serviceUserNickName":"测试1号","sourcePlatform":5,"orderProduct":{"amount":1,"unit":"局","orderNo":"TEST210831043163","productId":317598,"createTime":"2021-08-31 15:15:05","price":9.00,"updateTime":"2021-08-31 15:15:05","id":3040763,"productName":"王者荣耀 1*局"},"platformName":"android注册来源","receivingTime":"2021-08-31 15:15:59","isPay":true,"updateTime":"2021-08-31 15:18:06","userId":5244881,"serviceUserId":5523039,"serverMoney":6.30,"createTime":"2021-08-31 15:15:04","user":{"sourceId":5,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5244881,"chargeBalance":998782.06,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c5ee0b735f0400883996a4b632cba7d.jpg","lastMemberExp":1212,"memberExp":1212,"activeTime":"2021-08-31 10:35:50","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"118844250","loginTime":"2021-08-31 14:41:45","ordersTakeStatus":1,"nickname":"一路向前的小安","registIp":"171.83.98.52","virtualBalance":873322,"isCancel":false,"mobile":"19972682997","imPsw":"0bc5a05ed6034cc395b71acc664001fc","updateTime":"2021-08-31 10:35:50","quickServerStatus":3,"imId":"5244881_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-05 16:39:01","newUser":false,"registDeviceNo":"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d"},"payableMoney":9.00,"categoryId":30},{"serverUser":{"sourceId":5,"platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":5244881,"chargeBalance":998782.06,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c5ee0b735f0400883996a4b632cba7d.jpg","lastMemberExp":1212,"memberExp":1212,"activeTime":"2021-08-31 10:35:50","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"118844250","loginTime":"2021-08-31 14:41:45","ordersTakeStatus":1,"nickname":"一路向前的小安","registIp":"171.83.98.52","virtualBalance":873322,"isCancel":false,"mobile":"19972682997","imPsw":"0bc5a05ed6034cc395b71acc664001fc","updateTime":"2021-08-31 10:35:50","quickServerStatus":3,"imId":"5244881_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-05 16:39:01","newUser":false,"registDeviceNo":"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d"},"type":1,"orderIp":"113.57.244.201","id":3041388,"beginTime":"2021-08-31 14:30:00","userNickName":"测试1号","actualMoney":0,"orderNo":"TEST210831373821","roomNo":"448442","totalMoney":10.00,"completeTime":"2021-08-31 14:30:03","typeStr":"android注册来源","charges":0.2000,"name":"有声陪伴 1*15分钟","status":100,"statusStr":"已取消","isPayCallback":false,"sourceOs":3,"remark":"","platform":5,"incomeMoney":10.00,"serviceUserNickName":"一路向前的小安","techServiceName":"心灵伴侣","sourcePlatform":5,"orderProduct":{"amount":1,"unit":"15分钟","orderNo":"TEST210831373821","productId":317591,"createTime":"2021-08-31 14:10:06","price":10.00,"updateTime":"2021-08-31 14:10:06","id":3040762,"userTechServiceInfoId":22465,"productName":"有声陪伴 1*15分钟","techServiceInfoId":1},"platformName":"android注册来源","isPay":false,"updateTime":"2021-08-31 14:30:03","userId":5523039,"serviceUserId":5244881,"createTime":"2021-08-31 14:10:06","user":{"sourceId":5,"platformAuth":0,"publicOpenId":"os6HU027aaPexjqLA4ba5KCr38N8","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"113.57.244.201","id":5523039,"chargeBalance":996730.81,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c976818d5b94ef1b640103347110b7b.jpg","lastMemberExp":4233,"memberExp":4233,"activeTime":"2021-08-31 10:43:09","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"193032550","loginTime":"2021-08-31 14:05:37","ordersTakeStatus":1,"nickname":"测试1号","registIp":"61.183.246.70","virtualBalance":767182,"isCancel":false,"mobile":"13600000001","imPsw":"7ac7c6ebf474473d8e2816548847a25e","updateTime":"2021-08-31 15:06:35","quickServerStatus":3,"imId":"5523039_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-08-30 11:48:39","newUser":false,"registDeviceNo":"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d"},"payableMoney":10.00,"categoryId":73},{"payTime":"2021-08-31 14:03:24","serverUser":{"sourceId":5,"platformAuth":0,"publicOpenId":"os6HU086KNhZYVSgNnjbfyqPIrVc","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3678490,"chargeBalance":3.31,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/3c916ace9dd84ae4a037e8444c74aa6e.jpg","lastMemberExp":43,"memberExp":43,"activeTime":"2021-08-31 09:48:46","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"109487630","loginTime":"2021-08-31 13:56:44","ordersTakeStatus":1,"nickname":"㣧濫䙸㩋㒧","registIp":"171.113.49.113","virtualBalance":7,"isCancel":false,"mobile":"13247120415","imPsw":"404ec75e3b074ba590499e33f9996f04","updateTime":"2021-08-31 09:48:46","quickServerStatus":2,"imId":"3678490_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-03-15 16:44:10","newUser":false,"registDeviceNo":"e66a63f4-ebf6-37c0-1cdf-fddfb5767046"},"type":1,"orderIp":"111.183.47.66","payment":2,"id":3041387,"beginTime":"2021-08-31 14:30:00","userNickName":"噔噔咚","actualMoney":6.00,"orderNo":"TEST210831253902","roomNo":"658902","totalMoney":6.00,"completeTime":"2021-08-31 14:04:48","serviceTime":"2021-08-31 14:04:31","typeStr":"android注册来源","charges":0.2000,"name":"五子棋 1*半小时","status":600,"statusStr":"已完成","commissionMoney":1.20,"isPayCallback":true,"sourceOs":3,"remark":"","platform":5,"incomeMoney":6.00,"serviceUserNickName":"㣧濫䙸㩋㒧","sourcePlatform":507,"orderProduct":{"amount":1,"unit":"半小时","orderNo":"TEST210831253902","productId":204595,"createTime":"2021-08-31 14:03:24","price":6.00,"updateTime":"2021-08-31 14:03:24","id":3040761,"productName":"五子棋 1*半小时"},"platformName":"android注册来源","receivingTime":"2021-08-31 14:04:30","isPay":true,"updateTime":"2021-08-31 14:04:51","userId":3665359,"serviceUserId":3678490,"serverMoney":4.80,"createTime":"2021-08-31 14:03:24","user":{"sourceId":507,"platformAuth":0,"publicOpenId":"os6HU0_TAlb5jzzyR_fewV9b5kfY","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":3665359,"chargeBalance":317.63,"headPortraitsUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/2/ecf9670f7edb4da88b95003a7d1734f9.jpg","lastMemberExp":342,"memberExp":342,"activeTime":"2021-08-31 09:47:17","userInfoAuth":2,"status":1,"gender":1,"city":"潜江","registerType":3,"userCode":"195356630","loginTime":"2021-08-31 13:44:22","ordersTakeStatus":3,"nickname":"噔噔咚","registIp":"171.83.6.80","virtualBalance":367411,"isCancel":false,"mobile":"18040507112","imPsw":"dffa3f574c7847d2baa02b963303b95e","updateTime":"2021-08-31 09:47:17","quickServerStatus":2,"imId":"3665359_20210831","scoreAvg":4.0,"charm":0,"createTime":"2021-03-13 18:04:30","newUser":false,"registDeviceNo":"e66a63f4-ebf6-37c0-1cdf-fddfb5767046"},"payableMoney":6.00,"categoryId":68}],"pageNum":1,"navigatePages":8,"total":3040887,"pages":304089,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-08-31 17:36:32.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 17:36:32.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 17:36:32.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testOrderList--Test Mthod Success
[2021-08-31 17:36:32.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-08-31 17:36:32:用例【com.pipi.invoker.CosPlayerTest.testOrderList】结束======
[2021-08-31 17:36:32.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒815毫秒======
[2021-08-31 17:36:32.734] [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 17:36:32.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 17:36:32.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 17:36:32.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 17:36:32.735] [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 17:36:32.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 17:36:32.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 17:36:32.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 17:36:32.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 17:36:32.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 17:36:32.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 17:36:32.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 17:36:32.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 17:36:32.736] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询订单","caseLog":"======2021-08-31 17:36:30:用例【com.pipi.invoker.CosPlayerTest.testOrderList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://pre-test-api-admin.apeiwan.com/api/v1/order/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"93e8ba19c6b343e6a3636b2c94fe6a1e\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"chanType\":\"0\",\"pageSize\":\"10\",\"pageNum\":\"1\",\"status\":\"20\"}\r\n###Http Request queryString after URLEncoder### :\r\nchanType=0&pageSize=10&pageNum=1&status=20\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Tue, 31 Aug 2021 09:36:33 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"id DESC\",\"endRow\":10,\"list\":[{\"payTime\":\"2021-08-31 17:09:00\",\"serverUser\":{\"sourceId\":0,\"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,\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 16:51:59\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041396,\"beginTime\":\"2021-08-31 17:30:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831670399\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 17:29:00\",\"refundMoney\":9.00,\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":102,\"statusStr\":\"已取消\",\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":0.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831670399\",\"productId\":317595,\"createTime\":\"2021-08-31 17:08:59\",\"price\":9.00,\"updateTime\":\"2021-08-31 17:08:59\",\"id\":3040770,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"isPay\":true,\"refundTime\":\"2021-08-31 17:29:00\",\"updateTime\":\"2021-08-31 17:29:00\",\"userId\":5523051,\"serviceUserId\":5523052,\"createTime\":\"2021-08-31 17:08:59\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10003.30,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 16:57:16\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456834,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 17:02:23\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":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,\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 16:51:59\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041395,\"beginTime\":\"2021-08-31 17:30:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831621739\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 17:06:38\",\"refundMoney\":9.00,\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":101,\"statusStr\":\"已取消\",\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":0.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831621739\",\"productId\":317595,\"createTime\":\"2021-08-31 17:02:21\",\"price\":9.00,\"updateTime\":\"2021-08-31 17:02:21\",\"id\":3040769,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"cancelReason\":\"陪玩师正在接单\",\"isPay\":true,\"refundTime\":\"2021-08-31 17:06:38\",\"updateTime\":\"2021-08-31 17:06:38\",\"userId\":5523051,\"serviceUserId\":5523052,\"createTime\":\"2021-08-31 17:02:21\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10003.30,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 16:57:16\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456834,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 17:01:08\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":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,\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 16:51:59\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041394,\"beginTime\":\"2021-08-31 17:30:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831966647\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 17:01:59\",\"refundMoney\":9.00,\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":101,\"statusStr\":\"已取消\",\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":0.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831966647\",\"productId\":317595,\"createTime\":\"2021-08-31 17:01:07\",\"price\":9.00,\"updateTime\":\"2021-08-31 17:01:07\",\"id\":3040768,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"cancelReason\":\"陪玩师正在接单\",\"isPay\":true,\"refundTime\":\"2021-08-31 17:01:59\",\"updateTime\":\"2021-08-31 17:01:59\",\"userId\":5523051,\"serviceUserId\":5523052,\"createTime\":\"2021-08-31 17:01:07\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10003.30,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 16:57:16\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456834,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 16:53:32\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":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,\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 16:51:59\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041393,\"beginTime\":\"2021-08-31 17:15:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831387246\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 17:00:49\",\"refundMoney\":9.00,\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":101,\"statusStr\":\"已取消\",\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":0.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831387246\",\"productId\":317595,\"createTime\":\"2021-08-31 16:53:31\",\"price\":9.00,\"updateTime\":\"2021-08-31 16:53:31\",\"id\":3040767,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"cancelReason\":\"陪玩师正在接单\",\"isPay\":true,\"refundTime\":\"2021-08-31 17:00:49\",\"updateTime\":\"2021-08-31 17:00:49\",\"userId\":5523051,\"serviceUserId\":5523052,\"createTime\":\"2021-08-31 16:53:31\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10003.30,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 16:57:16\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456834,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 16:47:00\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":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,\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 16:51:59\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041392,\"beginTime\":\"2021-08-31 17:15:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831762241\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 16:52:25\",\"serviceTime\":\"2021-08-31 16:49:40\",\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":2.70,\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":9.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831762241\",\"productId\":317595,\"createTime\":\"2021-08-31 16:47:00\",\"price\":9.00,\"updateTime\":\"2021-08-31 16:47:00\",\"id\":3040766,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 16:49:39\",\"isPay\":true,\"updateTime\":\"2021-08-31 16:52:28\",\"userId\":5523051,\"serviceUserId\":5523052,\"serverMoney\":6.30,\"createTime\":\"2021-08-31 16:47:00\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10003.30,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 16:57:16\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456834,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 16:43:01\",\"serverUser\":{\"sourceId\":0,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523052,\"chargeBalance\":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,\"userCode\":\"125032550\",\"loginTime\":\"2021-08-31 16:51:59\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":0,\"isCancel\":false,\"mobile\":\"13823774131\",\"imPsw\":\"50343b2c0c9f45f489c479c8a6b7238f\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":5,\"imId\":\"5523052_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:54\",\"newUser\":false},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041391,\"beginTime\":\"2021-08-31 17:00:00\",\"userNickName\":\"沉着的电脑\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831991992\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 16:52:14\",\"serviceTime\":\"2021-08-31 16:49:45\",\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":2.70,\"isPayCallback\":true,\"sourceOs\":0,\"remark\":\"\",\"platform\":5,\"incomeMoney\":9.00,\"serviceUserNickName\":\"test\",\"sourcePlatform\":0,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831991992\",\"productId\":317595,\"createTime\":\"2021-08-31 16:43:01\",\"price\":9.00,\"updateTime\":\"2021-08-31 16:43:01\",\"id\":3040765,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 16:49:43\",\"isPay\":true,\"updateTime\":\"2021-08-31 16:52:23\",\"userId\":5523051,\"serviceUserId\":5523052,\"serverMoney\":6.30,\"createTime\":\"2021-08-31 16:43:01\",\"user\":{\"sourceId\":0,\"platformAuth\":0,\"type\":1,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5523051,\"chargeBalance\":10003.30,\"headPortraitsUrl\":\"https://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/defaultusericon/userpic13.jpg\",\"lastMemberExp\":18,\"memberExp\":18,\"activeTime\":\"2021-08-31 11:13:53\",\"userInfoAuth\":0,\"status\":1,\"gender\":0,\"registerType\":0,\"userCode\":\"115032550\",\"loginTime\":\"2021-08-31 16:57:16\",\"nickname\":\"沉着的电脑\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":456834,\"isCancel\":false,\"mobile\":\"13823774134\",\"imPsw\":\"b739ce120f584a7597187eecc691bba8\",\"updateTime\":\"2021-08-31 11:13:53\",\"quickServerStatus\":0,\"imId\":\"5523051_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-31 11:13:53\",\"newUser\":false},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 15:18:32\",\"serverUser\":{\"sourceId\":5,\"platformAuth\":0,\"publicOpenId\":\"os6HU027aaPexjqLA4ba5KCr38N8\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"113.57.244.201\",\"id\":5523039,\"chargeBalance\":996730.81,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c976818d5b94ef1b640103347110b7b.jpg\",\"lastMemberExp\":4233,\"memberExp\":4233,\"activeTime\":\"2021-08-31 10:43:09\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"193032550\",\"loginTime\":\"2021-08-31 14:05:37\",\"ordersTakeStatus\":1,\"nickname\":\"测试1号\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":767182,\"isCancel\":false,\"mobile\":\"13600000001\",\"imPsw\":\"7ac7c6ebf474473d8e2816548847a25e\",\"updateTime\":\"2021-08-31 15:06:35\",\"quickServerStatus\":3,\"imId\":\"5523039_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-30 11:48:39\",\"newUser\":false,\"registDeviceNo\":\"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d\"},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041390,\"beginTime\":\"2021-08-31 15:45:00\",\"userNickName\":\"一路向前的小安\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831845259\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 15:20:55\",\"serviceTime\":\"2021-08-31 15:20:34\",\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":2.70,\"isPayCallback\":true,\"sourceOs\":3,\"remark\":\"\",\"platform\":5,\"incomeMoney\":9.00,\"serviceUserNickName\":\"测试1号\",\"sourcePlatform\":5,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831845259\",\"productId\":317598,\"createTime\":\"2021-08-31 15:18:32\",\"price\":9.00,\"updateTime\":\"2021-08-31 15:18:32\",\"id\":3040764,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 15:20:30\",\"isPay\":true,\"updateTime\":\"2021-08-31 15:21:03\",\"userId\":5244881,\"serviceUserId\":5523039,\"serverMoney\":6.30,\"createTime\":\"2021-08-31 15:18:32\",\"user\":{\"sourceId\":5,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5244881,\"chargeBalance\":998782.06,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c5ee0b735f0400883996a4b632cba7d.jpg\",\"lastMemberExp\":1212,\"memberExp\":1212,\"activeTime\":\"2021-08-31 10:35:50\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"118844250\",\"loginTime\":\"2021-08-31 14:41:45\",\"ordersTakeStatus\":1,\"nickname\":\"一路向前的小安\",\"registIp\":\"171.83.98.52\",\"virtualBalance\":873322,\"isCancel\":false,\"mobile\":\"19972682997\",\"imPsw\":\"0bc5a05ed6034cc395b71acc664001fc\",\"updateTime\":\"2021-08-31 10:35:50\",\"quickServerStatus\":3,\"imId\":\"5244881_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-05 16:39:01\",\"newUser\":false,\"registDeviceNo\":\"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d\"},\"payableMoney\":9.00,\"categoryId\":30},{\"payTime\":\"2021-08-31 15:15:05\",\"serverUser\":{\"sourceId\":5,\"platformAuth\":0,\"publicOpenId\":\"os6HU027aaPexjqLA4ba5KCr38N8\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"113.57.244.201\",\"id\":5523039,\"chargeBalance\":996730.81,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c976818d5b94ef1b640103347110b7b.jpg\",\"lastMemberExp\":4233,\"memberExp\":4233,\"activeTime\":\"2021-08-31 10:43:09\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"193032550\",\"loginTime\":\"2021-08-31 14:05:37\",\"ordersTakeStatus\":1,\"nickname\":\"测试1号\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":767182,\"isCancel\":false,\"mobile\":\"13600000001\",\"imPsw\":\"7ac7c6ebf474473d8e2816548847a25e\",\"updateTime\":\"2021-08-31 15:06:35\",\"quickServerStatus\":3,\"imId\":\"5523039_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-30 11:48:39\",\"newUser\":false,\"registDeviceNo\":\"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d\"},\"type\":1,\"orderIp\":\"61.183.246.70\",\"payment\":2,\"id\":3041389,\"beginTime\":\"2021-08-31 15:45:00\",\"userNickName\":\"一路向前的小安\",\"actualMoney\":9.00,\"orderNo\":\"TEST210831043163\",\"totalMoney\":9.00,\"completeTime\":\"2021-08-31 15:17:44\",\"serviceTime\":\"2021-08-31 15:16:02\",\"typeStr\":\"android注册来源\",\"charges\":0.3000,\"name\":\"王者荣耀 1*局\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":2.70,\"isPayCallback\":true,\"sourceOs\":3,\"remark\":\"\",\"platform\":5,\"incomeMoney\":9.00,\"serviceUserNickName\":\"测试1号\",\"sourcePlatform\":5,\"orderProduct\":{\"amount\":1,\"unit\":\"局\",\"orderNo\":\"TEST210831043163\",\"productId\":317598,\"createTime\":\"2021-08-31 15:15:05\",\"price\":9.00,\"updateTime\":\"2021-08-31 15:15:05\",\"id\":3040763,\"productName\":\"王者荣耀 1*局\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 15:15:59\",\"isPay\":true,\"updateTime\":\"2021-08-31 15:18:06\",\"userId\":5244881,\"serviceUserId\":5523039,\"serverMoney\":6.30,\"createTime\":\"2021-08-31 15:15:04\",\"user\":{\"sourceId\":5,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5244881,\"chargeBalance\":998782.06,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c5ee0b735f0400883996a4b632cba7d.jpg\",\"lastMemberExp\":1212,\"memberExp\":1212,\"activeTime\":\"2021-08-31 10:35:50\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"118844250\",\"loginTime\":\"2021-08-31 14:41:45\",\"ordersTakeStatus\":1,\"nickname\":\"一路向前的小安\",\"registIp\":\"171.83.98.52\",\"virtualBalance\":873322,\"isCancel\":false,\"mobile\":\"19972682997\",\"imPsw\":\"0bc5a05ed6034cc395b71acc664001fc\",\"updateTime\":\"2021-08-31 10:35:50\",\"quickServerStatus\":3,\"imId\":\"5244881_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-05 16:39:01\",\"newUser\":false,\"registDeviceNo\":\"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d\"},\"payableMoney\":9.00,\"categoryId\":30},{\"serverUser\":{\"sourceId\":5,\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":5244881,\"chargeBalance\":998782.06,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c5ee0b735f0400883996a4b632cba7d.jpg\",\"lastMemberExp\":1212,\"memberExp\":1212,\"activeTime\":\"2021-08-31 10:35:50\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"118844250\",\"loginTime\":\"2021-08-31 14:41:45\",\"ordersTakeStatus\":1,\"nickname\":\"一路向前的小安\",\"registIp\":\"171.83.98.52\",\"virtualBalance\":873322,\"isCancel\":false,\"mobile\":\"19972682997\",\"imPsw\":\"0bc5a05ed6034cc395b71acc664001fc\",\"updateTime\":\"2021-08-31 10:35:50\",\"quickServerStatus\":3,\"imId\":\"5244881_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-05 16:39:01\",\"newUser\":false,\"registDeviceNo\":\"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d\"},\"type\":1,\"orderIp\":\"113.57.244.201\",\"id\":3041388,\"beginTime\":\"2021-08-31 14:30:00\",\"userNickName\":\"测试1号\",\"actualMoney\":0,\"orderNo\":\"TEST210831373821\",\"roomNo\":\"448442\",\"totalMoney\":10.00,\"completeTime\":\"2021-08-31 14:30:03\",\"typeStr\":\"android注册来源\",\"charges\":0.2000,\"name\":\"有声陪伴 1*15分钟\",\"status\":100,\"statusStr\":\"已取消\",\"isPayCallback\":false,\"sourceOs\":3,\"remark\":\"\",\"platform\":5,\"incomeMoney\":10.00,\"serviceUserNickName\":\"一路向前的小安\",\"techServiceName\":\"心灵伴侣\",\"sourcePlatform\":5,\"orderProduct\":{\"amount\":1,\"unit\":\"15分钟\",\"orderNo\":\"TEST210831373821\",\"productId\":317591,\"createTime\":\"2021-08-31 14:10:06\",\"price\":10.00,\"updateTime\":\"2021-08-31 14:10:06\",\"id\":3040762,\"userTechServiceInfoId\":22465,\"productName\":\"有声陪伴 1*15分钟\",\"techServiceInfoId\":1},\"platformName\":\"android注册来源\",\"isPay\":false,\"updateTime\":\"2021-08-31 14:30:03\",\"userId\":5523039,\"serviceUserId\":5244881,\"createTime\":\"2021-08-31 14:10:06\",\"user\":{\"sourceId\":5,\"platformAuth\":0,\"publicOpenId\":\"os6HU027aaPexjqLA4ba5KCr38N8\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"113.57.244.201\",\"id\":5523039,\"chargeBalance\":996730.81,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/8/31/2c976818d5b94ef1b640103347110b7b.jpg\",\"lastMemberExp\":4233,\"memberExp\":4233,\"activeTime\":\"2021-08-31 10:43:09\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"193032550\",\"loginTime\":\"2021-08-31 14:05:37\",\"ordersTakeStatus\":1,\"nickname\":\"测试1号\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":767182,\"isCancel\":false,\"mobile\":\"13600000001\",\"imPsw\":\"7ac7c6ebf474473d8e2816548847a25e\",\"updateTime\":\"2021-08-31 15:06:35\",\"quickServerStatus\":3,\"imId\":\"5523039_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-08-30 11:48:39\",\"newUser\":false,\"registDeviceNo\":\"7fedcf5f-7bcf-ad80-dd9e-bff99ef9ad0d\"},\"payableMoney\":10.00,\"categoryId\":73},{\"payTime\":\"2021-08-31 14:03:24\",\"serverUser\":{\"sourceId\":5,\"platformAuth\":0,\"publicOpenId\":\"os6HU086KNhZYVSgNnjbfyqPIrVc\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3678490,\"chargeBalance\":3.31,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/25/3c916ace9dd84ae4a037e8444c74aa6e.jpg\",\"lastMemberExp\":43,\"memberExp\":43,\"activeTime\":\"2021-08-31 09:48:46\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"109487630\",\"loginTime\":\"2021-08-31 13:56:44\",\"ordersTakeStatus\":1,\"nickname\":\"㣧濫䙸㩋㒧\",\"registIp\":\"171.113.49.113\",\"virtualBalance\":7,\"isCancel\":false,\"mobile\":\"13247120415\",\"imPsw\":\"404ec75e3b074ba590499e33f9996f04\",\"updateTime\":\"2021-08-31 09:48:46\",\"quickServerStatus\":2,\"imId\":\"3678490_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-03-15 16:44:10\",\"newUser\":false,\"registDeviceNo\":\"e66a63f4-ebf6-37c0-1cdf-fddfb5767046\"},\"type\":1,\"orderIp\":\"111.183.47.66\",\"payment\":2,\"id\":3041387,\"beginTime\":\"2021-08-31 14:30:00\",\"userNickName\":\"噔噔咚\",\"actualMoney\":6.00,\"orderNo\":\"TEST210831253902\",\"roomNo\":\"658902\",\"totalMoney\":6.00,\"completeTime\":\"2021-08-31 14:04:48\",\"serviceTime\":\"2021-08-31 14:04:31\",\"typeStr\":\"android注册来源\",\"charges\":0.2000,\"name\":\"五子棋 1*半小时\",\"status\":600,\"statusStr\":\"已完成\",\"commissionMoney\":1.20,\"isPayCallback\":true,\"sourceOs\":3,\"remark\":\"\",\"platform\":5,\"incomeMoney\":6.00,\"serviceUserNickName\":\"㣧濫䙸㩋㒧\",\"sourcePlatform\":507,\"orderProduct\":{\"amount\":1,\"unit\":\"半小时\",\"orderNo\":\"TEST210831253902\",\"productId\":204595,\"createTime\":\"2021-08-31 14:03:24\",\"price\":6.00,\"updateTime\":\"2021-08-31 14:03:24\",\"id\":3040761,\"productName\":\"五子棋 1*半小时\"},\"platformName\":\"android注册来源\",\"receivingTime\":\"2021-08-31 14:04:30\",\"isPay\":true,\"updateTime\":\"2021-08-31 14:04:51\",\"userId\":3665359,\"serviceUserId\":3678490,\"serverMoney\":4.80,\"createTime\":\"2021-08-31 14:03:24\",\"user\":{\"sourceId\":507,\"platformAuth\":0,\"publicOpenId\":\"os6HU0_TAlb5jzzyR_fewV9b5kfY\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":3665359,\"chargeBalance\":317.63,\"headPortraitsUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/6/2/ecf9670f7edb4da88b95003a7d1734f9.jpg\",\"lastMemberExp\":342,\"memberExp\":342,\"activeTime\":\"2021-08-31 09:47:17\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"潜江\",\"registerType\":3,\"userCode\":\"195356630\",\"loginTime\":\"2021-08-31 13:44:22\",\"ordersTakeStatus\":3,\"nickname\":\"噔噔咚\",\"registIp\":\"171.83.6.80\",\"virtualBalance\":367411,\"isCancel\":false,\"mobile\":\"18040507112\",\"imPsw\":\"dffa3f574c7847d2baa02b963303b95e\",\"updateTime\":\"2021-08-31 09:47:17\",\"quickServerStatus\":2,\"imId\":\"3665359_20210831\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-03-13 18:04:30\",\"newUser\":false,\"registDeviceNo\":\"e66a63f4-ebf6-37c0-1cdf-fddfb5767046\"},\"payableMoney\":6.00,\"categoryId\":68}],\"pageNum\":1,\"navigatePages\":8,\"total\":3040887,\"pages\":304089,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-08-31 17:36:32:用例【com.pipi.invoker.CosPlayerTest.testOrderList】结束======\r\n======本次用例运行消耗时间 01秒815毫秒======\r","caseName":"testOrderList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒815毫秒","endTime":"2021-08-31 17:36:32","id":0,"serviceId":1,"startTime":"2021-08-31 17:36:30","status":1}
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Tue, 31 Aug 2021 09:36:34 GMT
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-08-31 17:36:33.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-08-31 17:36:33.549] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-08-31 17:36:34.067] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testOrderList
[2021-08-31 17:36:34.067] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-08-31 17:36:34.067] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-08-31 17:36:34.067] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-08-31 17:36:34.071] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-08-31 17:36:34.072] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-08-31 17:36:34.076] [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 17:36:34.076] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-08-31 17:36:34.077] [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 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-08-31 17:36:34.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"04秒475毫秒","endTime":"2021-08-31 17:36:34","env":"pre-test","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-08-31 17:36:29","status":1,"teamId":0,"total":1}
[2021-08-31 17:36:37.087] [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 17:36:37.089] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接