debug.log.2021-07-23
713 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
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
[2021-07-23 15:20:03.145] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-07-23 15:20:03.208] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-07-23 15:20:03:测试集开始======
[2021-07-23 15:20:03.423] [TestNG] [INFO ] - [com.fangdd.qa.framework.utils.common.PropUtil:51] - 配置项 dbConnectionURL 不存在,请检查配置!
[2021-07-23 15:20:03.436] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-23 15:20:03.552] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:03.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:03.796] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:03.796] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:04 GMT
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"fa22e1f30f8c4c35a74c366de748ed6a","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-23 15:20:03.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:03.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:03.799] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 15:20:03.799] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:03.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:03.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:03.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 15:20:03.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:03.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:03.902] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:03.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:03.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-07-23 15:20:03.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:03.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-07-23 15:20:03.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:03.903] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:03.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:03.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:03.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:03.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:03.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:03.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:03.978] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:03.978] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-07-23 15:20:03.978] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:04 GMT
[2021-07-23 15:20:03.979] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:03.979] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:03.979] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:03.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-07-23 15:20:03.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:03.981] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:03.981] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/login
[2021-07-23 15:20:03.981] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:04.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:04.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:04.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/login
[2021-07-23 15:20:04.075] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:04.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:04.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:04.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:04.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-07-23 15:20:04.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:04.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-07-23 15:20:04.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:04.076] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:04.246] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:04.246] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:04.246] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:04.246] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:04 GMT
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"137730220","nickname":"test","id":2203773,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","imId":"2203773_20210708","token":"APP-ba7d86789d7b42699bf1df823d8d100e#2203773","createTime":"2021-07-08 10:33:13","newUser":false,"status":1},"status":200}
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:04.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:04.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 15:20:04.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:04.332] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:04.333] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:04.333] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 15:20:04.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:04.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:04.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:04.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:04.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-07-23 15:20:04.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:04.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-07-23 15:20:04.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:04.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:04.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:04 GMT
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:04.405] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:04.406] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-07-23 15:20:04.406] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:04.406] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:04.406] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/login
[2021-07-23 15:20:04.406] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:04.487] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/login
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:04.488] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:05.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:05.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:05.131] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:05.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:05.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:05.132] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:05.133] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:05.133] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-07-23 15:20:05.133] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:05 GMT
[2021-07-23 15:20:05.133] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:05.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:05.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:05.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"175630220","nickname":"test","id":2203657,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","imId":"2203657_20210524","token":"APP-e627f7b8678048d7a850adc28501fe6a#2203657","createTime":"2021-05-24 14:01:01","newUser":false,"status":1},"status":200}
[2021-07-23 15:20:05.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:05.134] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:05.140] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:05:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-07-23 15:20:05.142] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-23 15:20:05.142] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:05.224] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:05.224] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:05.224] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-23 15:20:05.224] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:05.224] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:05.225] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:05.225] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:05.225] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:05.225] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-07-23 15:20:05.225] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:05.225] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-07-23 15:20:05.225] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:05.225] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:06.271] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:06.271] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:06 GMT
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:06.272] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:06.272] [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":8,"list":[{"remark":"12","openedTimes":4,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天室气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-课代表*永久\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":402}]","id":128,"operatorId":34,"rewardLotteryCount":4,"openRewardDiamonds":4,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/6e782a90d6d3456695e023958cb0fffa.svga","updateTime":"2021-07-21 14:16:51","sort":111,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png","remainLotteryDiamonds":18910,"openPayDiamonds":4,"createTime":"2020-11-20 14:12:15","name":"xcc111","remainLotteryCount":65,"activityType":1,"priceRules":"[{\"price\":1,\"times\":1},{\"price\":5,\"times\":5},{\"price\":10,\"times\":10}]","isActivate":false,"status":0},{"remark":"没后悔过控件工具库","openedTimes":2300796,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png","lotteryActivityId":63,"createTime":"2020-11-19 17:49:32","startTime":"2020-11-18 00:00:00","id":14,"endTime":"2020-11-30 23:59:59","content":"邂逅2","activityH5Url":"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1","status":2},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":123,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"礼物-小黄鸭*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":115},{\"amount\":6,\"isNotice\":0,\"name\":\"礼物-小心心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":116},{\"amount\":8,\"isNotice\":0,\"name\":\"钻石*8\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":117},{\"amount\":10,\"isNotice\":0,\"name\":\"礼物-心相印*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":118},{\"amount\":21,\"isNotice\":1,\"name\":\"礼物-甜甜圈*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":119},{\"amount\":52,\"isNotice\":1,\"name\":\"礼物-棒棒糖*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":120},{\"amount\":99,\"isNotice\":1,\"name\":\"钻石*99\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":121},{\"amount\":128,\"isNotice\":1,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":122},{\"amount\":158,\"isNotice\":1,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":123}]","startTime":"2020-11-24 00:00:00","id":63,"operatorId":34,"rewardLotteryCount":2300796,"openRewardDiamonds":23974491,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga","updateTime":"2020-11-24 16:52:31","sort":30,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif","remainLotteryDiamonds":12349,"openPayDiamonds":23007960,"createTime":"2019-10-16 18:36:18","name":"普通宝箱","remainLotteryCount":1204,"endTime":"2020-11-26 23:59:59","activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":6990255,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png","delFlag":false,"operatorName":"程杰","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":1,\"name\":\"礼物-甜甜圈\",\"isNew\":0,\"lotteryId\":181},{\"isNotice\":1,\"name\":\"礼物-棒棒糖\",\"isNew\":0,\"lotteryId\":182},{\"isNotice\":1,\"name\":\"礼物-么么哒\",\"isNew\":0,\"lotteryId\":183},{\"isNotice\":1,\"name\":\"礼物-麦克风\",\"isNew\":0,\"lotteryId\":184},{\"isNotice\":1,\"name\":\"礼物-玫瑰花\",\"isNew\":0,\"lotteryId\":185}]","id":69,"operatorId":75,"rewardLotteryCount":6990255,"openRewardDiamonds":67901769,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga","updateTime":"2020-06-29 18:33:46","sort":30,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif","remainLotteryDiamonds":12309,"openPayDiamonds":69902550,"createTime":"2020-01-11 11:37:53","name":"普通宝箱","remainLotteryCount":196,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":220141,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\",\"decorationId\":211,\"decorationName\":\"慵懒的猫个人名牌\"}","lotteryRules":"[{\"amount\":108,\"isReward\":0,\"isNotice\":0,\"name\":\"钻石*108\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":124},{\"amount\":128,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":125},{\"amount\":158,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":126},{\"amount\":188,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-怦然心动*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":127},{\"amount\":233,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-可爱小熊*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":128},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天使之心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":129},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-果果冰*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":130},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":132},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":133},{\"amount\":3344,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":134}]","id":64,"operatorId":34,"rewardLotteryCount":220141,"openRewardDiamonds":46252083,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga","updateTime":"2021-06-02 15:00:48","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif","remainLotteryDiamonds":472689,"openPayDiamonds":46229610,"createTime":"2019-10-16 18:38:39","name":"白银宝箱","remainLotteryCount":1462,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"","openedTimes":518608,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-魔力法典*1 天\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":396},{\"amount\":10,\"isNotice\":0,\"name\":\"钻石*10\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":395},{\"amount\":99,\"isNotice\":0,\"name\":\"魅力值礼物-水晶粽\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":394}]","startTime":"2020-11-16 00:00:00","id":70,"operatorId":34,"rewardLotteryCount":518608,"openRewardDiamonds":105724795,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga","updateTime":"2020-11-19 15:36:17","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif","remainLotteryDiamonds":9777,"openPayDiamonds":108906423,"createTime":"2020-01-11 11:46:04","name":"白银宝箱","remainLotteryCount":263,"endTime":"2020-11-18 23:59:59","activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"2\",\"times\":\"5\"},{\"price\":\"3\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":90508,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png","delFlag":false,"operatorName":"梁鑫宇","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":0,\"name\":\"礼物-可爱小熊*\",\"isNew\":0,\"lotteryId\":135},{\"isNotice\":0,\"name\":\"钻石*388\",\"isNew\":0,\"lotteryId\":136},{\"isNotice\":0,\"name\":\"礼物-天使之心*\",\"isNew\":0,\"lotteryId\":137},{\"isNotice\":0,\"name\":\"礼物-果果冰*\",\"isNew\":0,\"lotteryId\":138},{\"isNotice\":1,\"name\":\"钻石*788\",\"isNew\":0,\"lotteryId\":139},{\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"isNew\":0,\"lotteryId\":140},{\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"isNew\":0,\"lotteryId\":141},{\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"isNew\":0,\"lotteryId\":142},{\"isNotice\":1,\"name\":\"礼物-爱神之箭*\",\"isNew\":0,\"lotteryId\":143},{\"isNotice\":1,\"name\":\"礼物-心愿灯*\",\"isNew\":0,\"lotteryId\":144},{\"isNotice\":1,\"name\":\"座位框-花蝴蝶*1 天\",\"isNew\":0,\"lotteryId\":145},{\"isNotice\":1,\"name\":\"座位框-精灵梦*1 天\",\"isNew\":0,\"lotteryId\":146}]","id":65,"operatorId":55,"rewardLotteryCount":90508,"openRewardDiamonds":54735115,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga","updateTime":"2020-01-11 12:06:41","sort":10,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif","remainLotteryDiamonds":917525,"openPayDiamonds":60278328,"createTime":"2019-10-16 18:42:34","name":"黄金宝箱","remainLotteryCount":1492,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":503800,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png","delFlag":false,"operatorName":"周雄军","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天室气泡\"}","lotteryRules":"[{\"amount\":222,\"isNotice\":0,\"name\":\"礼物-玫瑰花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":196},{\"amount\":233,\"isNotice\":0,\"name\":\"礼物-可爱小熊\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":197},{\"amount\":266,\"isNotice\":0,\"name\":\"礼物-天使之心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":198},{\"amount\":520,\"isNotice\":0,\"name\":\"礼物-果果冰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":199},{\"amount\":999,\"isNotice\":1,\"name\":\"礼物-樱花雨\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":200},{\"amount\":1314,\"isNotice\":1,\"name\":\"礼物-爱的告白\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":201},{\"amount\":3344,\"isNotice\":1,\"name\":\"礼物-永恒印记\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":202},{\"amount\":7777,\"isNotice\":1,\"name\":\"礼物-爱神之箭\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":203},{\"amount\":26666,\"isNotice\":1,\"name\":\"礼物-心愿灯\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":204},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-镜花*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":205},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-水月*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":206},{\"amount\":300,\"isNotice\":0,\"name\":\"礼物-粉色情书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":271}]","id":71,"operatorId":43,"rewardLotteryCount":503800,"openRewardDiamonds":330353108,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga","updateTime":"2021-07-21 16:45:28","sort":10,"labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif","remainLotteryDiamonds":154510768,"openPayDiamonds":335530800,"createTime":"2020-01-11 12:01:31","name":"黄金宝箱","remainLotteryCount":111123023,"activityType":1,"priceRules":"[{\"price\":666,\"times\":1},{\"price\":3330,\"times\":5},{\"price\":6660,\"times\":10}]","isActivate":true,"status":1},{"remark":"2","openedTimes":23,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":9,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\",\"decorationId\":204,\"decorationName\":\"主页特效主页特效\"}","lotteryRules":"[{\"amount\":50,\"isReward\":0,\"probability\":0,\"isNotice\":0,\"name\":\"礼物-森林之星*\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":392},{\"amount\":10,\"isReward\":0,\"probability\":100,\"isNotice\":0,\"name\":\"座位框-萌爪爪*5 天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":326}]","id":97,"operatorId":34,"rewardLotteryCount":23,"openRewardDiamonds":980,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga","updateTime":"2021-04-08 18:15:18","sort":2,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif","remainLotteryDiamonds":7870,"openPayDiamonds":230,"createTime":"2020-06-29 18:51:02","name":"普通的","remainLotteryCount":175,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"}]","isActivate":true,"status":1}],"pageNum":1,"navigatePages":8,"total":8,"pages":1,"size":8,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 15:20:06.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:06.273] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:06.276] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-07-23 15:20:06.276] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 15:20:06:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-07-23 15:20:06.276] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒136毫秒======
[2021-07-23 15:20:06.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:06.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:06.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-07-23 15:20:05:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"activityType\":\"1\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&activityType=1&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:06 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":8,\"list\":[{\"remark\":\"12\",\"openedTimes\":4,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天室气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-课代表*永久\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":402}]\",\"id\":128,\"operatorId\":34,\"rewardLotteryCount\":4,\"openRewardDiamonds\":4,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/6e782a90d6d3456695e023958cb0fffa.svga\",\"updateTime\":\"2021-07-21 14:16:51\",\"sort\":111,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png\",\"remainLotteryDiamonds\":18910,\"openPayDiamonds\":4,\"createTime\":\"2020-11-20 14:12:15\",\"name\":\"xcc111\",\"remainLotteryCount\":65,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":1,\\\"times\\\":1},{\\\"price\\\":5,\\\"times\\\":5},{\\\"price\\\":10,\\\"times\\\":10}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"没后悔过控件工具库\",\"openedTimes\":2300796,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png\",\"lotteryActivityId\":63,\"createTime\":\"2020-11-19 17:49:32\",\"startTime\":\"2020-11-18 00:00:00\",\"id\":14,\"endTime\":\"2020-11-30 23:59:59\",\"content\":\"邂逅2\",\"activityH5Url\":\"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1\",\"status\":2},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":123,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小黄鸭*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":115},{\\\"amount\\\":6,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小心心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":116},{\\\"amount\\\":8,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*8\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":117},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-心相印*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":118},{\\\"amount\\\":21,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":119},{\\\"amount\\\":52,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":120},{\\\"amount\\\":99,\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*99\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":121},{\\\"amount\\\":128,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":122},{\\\"amount\\\":158,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":123}]\",\"startTime\":\"2020-11-24 00:00:00\",\"id\":63,\"operatorId\":34,\"rewardLotteryCount\":2300796,\"openRewardDiamonds\":23974491,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga\",\"updateTime\":\"2020-11-24 16:52:31\",\"sort\":30,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif\",\"remainLotteryDiamonds\":12349,\"openPayDiamonds\":23007960,\"createTime\":\"2019-10-16 18:36:18\",\"name\":\"普通宝箱\",\"remainLotteryCount\":1204,\"endTime\":\"2020-11-26 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":6990255,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png\",\"delFlag\":false,\"operatorName\":\"程杰\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":181},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":182},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":183},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":184},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":185}]\",\"id\":69,\"operatorId\":75,\"rewardLotteryCount\":6990255,\"openRewardDiamonds\":67901769,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga\",\"updateTime\":\"2020-06-29 18:33:46\",\"sort\":30,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif\",\"remainLotteryDiamonds\":12309,\"openPayDiamonds\":69902550,\"createTime\":\"2020-01-11 11:37:53\",\"name\":\"普通宝箱\",\"remainLotteryCount\":196,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":220141,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\\\",\\\"decorationId\\\":211,\\\"decorationName\\\":\\\"慵懒的猫个人名牌\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":108,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*108\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":124},{\\\"amount\\\":128,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":125},{\\\"amount\\\":158,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":126},{\\\"amount\\\":188,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-怦然心动*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":127},{\\\"amount\\\":233,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":128},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":129},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":130},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":132},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":133},{\\\"amount\\\":3344,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":134}]\",\"id\":64,\"operatorId\":34,\"rewardLotteryCount\":220141,\"openRewardDiamonds\":46252083,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga\",\"updateTime\":\"2021-06-02 15:00:48\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif\",\"remainLotteryDiamonds\":472689,\"openPayDiamonds\":46229610,\"createTime\":\"2019-10-16 18:38:39\",\"name\":\"白银宝箱\",\"remainLotteryCount\":1462,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"\",\"openedTimes\":518608,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-魔力法典*1 天\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":396},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*10\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":395},{\\\"amount\\\":99,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-水晶粽\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":394}]\",\"startTime\":\"2020-11-16 00:00:00\",\"id\":70,\"operatorId\":34,\"rewardLotteryCount\":518608,\"openRewardDiamonds\":105724795,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga\",\"updateTime\":\"2020-11-19 15:36:17\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif\",\"remainLotteryDiamonds\":9777,\"openPayDiamonds\":108906423,\"createTime\":\"2020-01-11 11:46:04\",\"name\":\"白银宝箱\",\"remainLotteryCount\":263,\"endTime\":\"2020-11-18 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"2\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"3\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":90508,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png\",\"delFlag\":false,\"operatorName\":\"梁鑫宇\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":135},{\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*388\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":136},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":137},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":138},{\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*788\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":139},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":140},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":141},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":142},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":143},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":144},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-花蝴蝶*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":145},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-精灵梦*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":146}]\",\"id\":65,\"operatorId\":55,\"rewardLotteryCount\":90508,\"openRewardDiamonds\":54735115,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga\",\"updateTime\":\"2020-01-11 12:06:41\",\"sort\":10,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif\",\"remainLotteryDiamonds\":917525,\"openPayDiamonds\":60278328,\"createTime\":\"2019-10-16 18:42:34\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":1492,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":503800,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png\",\"delFlag\":false,\"operatorName\":\"周雄军\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天室气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":222,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":196},{\\\"amount\\\":233,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":197},{\\\"amount\\\":266,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":198},{\\\"amount\\\":520,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":199},{\\\"amount\\\":999,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":200},{\\\"amount\\\":1314,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":201},{\\\"amount\\\":3344,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":202},{\\\"amount\\\":7777,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":203},{\\\"amount\\\":26666,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":204},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-镜花*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":205},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-水月*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":206},{\\\"amount\\\":300,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-粉色情书\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":271}]\",\"id\":71,\"operatorId\":43,\"rewardLotteryCount\":503800,\"openRewardDiamonds\":330353108,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga\",\"updateTime\":\"2021-07-21 16:45:28\",\"sort\":10,\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif\",\"remainLotteryDiamonds\":154510768,\"openPayDiamonds\":335530800,\"createTime\":\"2020-01-11 12:01:31\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":111123023,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":666,\\\"times\\\":1},{\\\"price\\\":3330,\\\"times\\\":5},{\\\"price\\\":6660,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"2\",\"openedTimes\":23,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":9,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\\\",\\\"decorationId\\\":204,\\\"decorationName\\\":\\\"主页特效主页特效\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":50,\\\"isReward\\\":0,\\\"probability\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-森林之星*\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":392},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"probability\\\":100,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-萌爪爪*5 天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":326}]\",\"id\":97,\"operatorId\":34,\"rewardLotteryCount\":23,\"openRewardDiamonds\":980,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga\",\"updateTime\":\"2021-04-08 18:15:18\",\"sort\":2,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif\",\"remainLotteryDiamonds\":7870,\"openPayDiamonds\":230,\"createTime\":\"2020-06-29 18:51:02\",\"name\":\"普通的\",\"remainLotteryCount\":175,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":true,\"status\":1}],\"pageNum\":1,\"navigatePages\":8,\"total\":8,\"pages\":1,\"size\":8,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-23 15:20:06:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 01秒136毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒136毫秒","endTime":"2021-07-23 15:20:06","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:05","status":1}
[2021-07-23 15:20:06.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:06.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:06.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:06.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:06.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:06.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:06.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:06.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:06 GMT
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:06.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:07.170] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:07:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-07-23 15:20:07.170] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 15:20:07.170] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:18.237] [TestNG] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.UnknownHostException: t3-guild-api.apeiwan.com
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.guildSearch(CosPlyaPlayerServiceImpl.java:639)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.guildCenter(CosPlyaPlayerServiceImpl.java:610)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.auditGuild(CosPlyaPlayerServiceImpl.java:710)
at com.pipi.invoker.CosPlayerTest.testAuditGuild(CosPlayerTest.java:143)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.access$000(SuiteRunner.java:39)
at org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)
at org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[2021-07-23 15:20:18.261] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:18.262] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testAuditGuild--Test Mthod Failure
[2021-07-23 15:20:18.262] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 15:20:18:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-07-23 15:20:18.262] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 11秒092毫秒======
[2021-07-23 15:20:18.263] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:18.263] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:18.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-07-23 15:20:07:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n======2021-07-23 15:20:18:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 11秒092毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search,异常信息:t3-guild-api.apeiwan.com\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:340)\r\n\tat com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.guildSearch(CosPlyaPlayerServiceImpl.java:639)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.guildCenter(CosPlyaPlayerServiceImpl.java:610)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.auditGuild(CosPlyaPlayerServiceImpl.java:710)\r\n\tat com.pipi.invoker.CosPlayerTest.testAuditGuild(CosPlayerTest.java:143)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.access$000(SuiteRunner.java:39)\r\n\tat org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)\r\n\tat org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)\r\n\tat java.util.concurrent.FutureTask.run(FutureTask.java:266)\r\n\tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)\r\n\tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)\r\n\tat java.lang.Thread.run(Thread.java:748)\r\nCaused by: java.net.UnknownHostException: t3-guild-api.apeiwan.com\r\n\tat java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)\r\n\tat java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)\r\n\tat java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\r\n\tat java.net.Socket.connect(Socket.java:589)\r\n\tat sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)\r\n\tat sun.net.NetworkClient.doConnect(NetworkClient.java:175)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:463)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:558)\r\n\tat sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)\r\n\tat sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)\r\n\t... 28 more\r\n","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"11秒092毫秒","endTime":"2021-07-23 15:20:18","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:07","status":2}
[2021-07-23 15:20:18.619] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:18 GMT
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:18.620] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:23.636] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:23:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-07-23 15:20:23.636] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-23 15:20:23.636] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:23.710] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:23.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:23.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-23 15:20:23.711] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:23.712] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:23.712] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:23.712] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:23.712] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:23.712] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-07-23 15:20:23.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:23.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-07-23 15:20:23.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:23.713] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:23.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:24 GMT
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:23.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":5,"navigatepageNums":[1,2,3,4,5],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":98,"virtualProductId":382,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/14ac61ab60bf4971a8b1db08cf6c7c96.png","createTime":"2021-05-13 16:50:30","refType":1,"id":10,"virtualProductId":382,"content":"使用表白卡让麦上的小哥哥对你表白","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/153fff74da82423ca8d46d16f8a9b8a7.png","type":1,"hotValue":50,"singleShow":true,"playDesc":"","giftVersion":4,"price":0,"remarkUrl":"","id":382,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/15665ead5c5448ecb73a85a9488a8d4d.svga","giftType":2,"sort":5010,"charmValue":0,"limitUpdateTime":"2021-05-13 16:50:30","useStatus":1,"name":"表白卡","isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":4,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 17:02:07","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-13 16:50:30"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":3,"createTime":"2020-11-18 18:19:32","playMethod":"[{\"roomBannerId\":2,\"listBannerId\":1,\"chainNum\":\"1\"},{\"roomBannerId\":2,\"listBannerId\":1,\"chainNum\":\"2\"}]","id":87,"virtualProductId":328},{"playType":1,"createTime":"2020-11-20 18:12:46","playMethod":"[{\"chainNum\":\"3\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4ce4c59d9f945cba7ce5ba743164386.svga\",\"remark\":\"三生三世\"}]","id":92,"virtualProductId":328}],"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/a0af3ab1caa84456b271c297fb0ac5be.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/9a45246eab5249619eafa6f93f0330fa.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"","giftVersion":88,"price":0,"remarkUrl":"","id":328,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/5fa8325c4bea47fb9c2ad12193517d62.svga","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":false,"permissionDesc":"","remark":"","delFlag":false,"obtainType":3,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":106,"virtualProductId":390,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":3,"createTime":"2021-07-07 11:50:04","playMethod":"[{\"roomBannerId\":21,\"listBannerId\":22,\"chainNum\":\"1\"}]","id":95,"virtualProductId":390}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/138fa52d528a4c409aa3d65d19b79d9f.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":100,"remarkUrl":"","id":390,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/0780aca1e7704884ab6450d6d5b5958c.svga","giftType":1,"sort":4999,"charmValue":100,"limitUpdateTime":"2021-07-07 11:50:04","useStatus":1,"name":"冲天火箭","isWall":true,"permissionDesc":"","remark":"火箭玩法","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":2,"updateTime":"2021-07-07 11:50:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-07 11:50:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":88,"virtualProductId":331,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/b0307222fcb646d0b95110656c037124.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":128,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1062960891aa4a99b197e8be5307da07.png","id":331,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c149f8f843604204b146160d92a38346.svga","giftType":1,"sort":4900,"charmValue":128,"limitUpdateTime":"2020-11-24 19:48:45","useStatus":1,"name":"星缤乐","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-11-24 19:48:45"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":108,"virtualProductId":391,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/0bbe351d0d1745c1980e4090cb27903f.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":3555,"remarkUrl":"","id":391,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/7b6454a98bab4c368ee4689c44f242fe.svga","giftType":1,"sort":4386,"charmValue":3555,"limitUpdateTime":"2021-07-21 16:35:54","useStatus":1,"name":"小龙虾","isWall":true,"permissionDesc":"","remark":"五一活动限定聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":3,"updateTime":"2021-07-21 16:35:54","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-21 16:35:54"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":109,"virtualProductId":392,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-07-21 16:40:07","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/21/e233abc98f504bdab8b8397b74ede5b2.svga\",\"vapUrl\":\"\",\"remark\":\"1\"}]","id":96,"virtualProductId":392}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/560811f7b27241be9b2711ff8ff993c4.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":52000,"remarkUrl":"","id":392,"giftType":1,"sort":4313,"charmValue":52000,"limitUpdateTime":"2021-07-21 16:40:07","useStatus":1,"name":"月下美人","isWall":true,"permissionDesc":"","remark":"礼盒活动礼物·即将在返场活动中回归","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":4,"updateTime":"2021-07-21 16:40:07","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-21 16:40:07"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":12,"price":1,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/d927d02a752f41eab8590cd0bfa4ba56.png","id":327,"objectGifUrl":"","giftType":1,"sort":1130,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":89,"virtualProductId":332,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c649a40efa174ef9b3ddcba6c28b6a98.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":1314,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/ecb52148aef347f29a37e6e53fb8e0bb.png","id":332,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/28e07534d6654d1e973eef38f9dbb819.svga","giftType":1,"sort":1121,"charmValue":1314,"limitUpdateTime":"2020-11-24 19:51:10","useStatus":1,"name":"环游星河","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":2,"updateTime":"2021-06-02 11:03:41","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2020-11-24 19:51:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":24,"virtualProductId":326,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:06:05","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/22/e07679f822684aabba34140d5a894cb5.svga\",\"remark\":\"一心一意\"},{\"chainNum\":\"3\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/590d7c47f5414a189f5247be6f0d6b02.svga\",\"remark\":\"三生三世\"}]","id":23,"virtualProductId":326},{"playType":3,"createTime":"2020-11-19 15:14:25","playMethod":"[{\"roomBannerId\":2,\"listBannerId\":1,\"chainNum\":\"3\"}]","id":91,"virtualProductId":326}],"virtualProductActivity":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/688f3a03e80c443aa4aefd240fa5bf00.png","createTime":"2020-06-23 18:57:20","refType":1,"startTime":"2020-11-21 00:00:00","id":1,"endTime":"2020-11-21 23:59:59","virtualProductId":326,"content":"百度2","activityH5Url":"http://www.baidu.com","status":1},"virtualProduct":{"isUse":true,"previewUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/d86d5b1ad31c448697311b2b0f2c1d50.webp","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png","type":1,"hotValue":50,"singleShow":true,"playDesc":"","giftVersion":44,"price":0,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/2e721e9dc9754686b677c2ad616d1b4e.png","id":326,"objectGifUrl":"","giftType":2,"sort":1120,"charmValue":0,"limitUpdateTime":"2020-06-22 17:06:06","useStatus":1,"name":"森林之星","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":4,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-22 17:06:06"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":22,"virtualProductId":324,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:01:51","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/015d9ca65cf7438db1e465761c5a876b.svga\",\"remark\":\"一生一世\"}]","id":21,"virtualProductId":324}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/de1adcc582c449f1bf32722ab9a766ca.png","type":1,"hotValue":200,"singleShow":true,"playDesc":"","giftVersion":11,"price":0,"remarkUrl":"","id":324,"objectGifUrl":"","giftType":2,"sort":1100,"charmValue":0,"limitUpdateTime":"2020-06-22 17:01:52","useStatus":1,"name":"永恒之冠","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":4,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-22 17:01:52"}}],"pageNum":1,"navigatePages":8,"total":46,"pages":5,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 15:20:23.924] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:23.924] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:23.925] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-07-23 15:20:23.925] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 15:20:23:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-07-23 15:20:23.925] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 289毫秒======
[2021-07-23 15:20:23.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:23.926] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:23.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:23.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:23.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:23.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:23.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:23.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:23.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:23.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:23.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:23.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:23.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:23.928] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-07-23 15:20:23:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&type=1&pageNum=1&useStatus=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:24 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":5,\"navigatepageNums\":[1,2,3,4,5],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":98,\"virtualProductId\":382,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/14ac61ab60bf4971a8b1db08cf6c7c96.png\",\"createTime\":\"2021-05-13 16:50:30\",\"refType\":1,\"id\":10,\"virtualProductId\":382,\"content\":\"使用表白卡让麦上的小哥哥对你表白\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/153fff74da82423ca8d46d16f8a9b8a7.png\",\"type\":1,\"hotValue\":50,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":4,\"price\":0,\"remarkUrl\":\"\",\"id\":382,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/15665ead5c5448ecb73a85a9488a8d4d.svga\",\"giftType\":2,\"sort\":5010,\"charmValue\":0,\"limitUpdateTime\":\"2021-05-13 16:50:30\",\"useStatus\":1,\"name\":\"表白卡\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 17:02:07\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-13 16:50:30\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":3,\"createTime\":\"2020-11-18 18:19:32\",\"playMethod\":\"[{\\\"roomBannerId\\\":2,\\\"listBannerId\\\":1,\\\"chainNum\\\":\\\"1\\\"},{\\\"roomBannerId\\\":2,\\\"listBannerId\\\":1,\\\"chainNum\\\":\\\"2\\\"}]\",\"id\":87,\"virtualProductId\":328},{\"playType\":1,\"createTime\":\"2020-11-20 18:12:46\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"3\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4ce4c59d9f945cba7ce5ba743164386.svga\\\",\\\"remark\\\":\\\"三生三世\\\"}]\",\"id\":92,\"virtualProductId\":328}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/a0af3ab1caa84456b271c297fb0ac5be.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/9a45246eab5249619eafa6f93f0330fa.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":88,\"price\":0,\"remarkUrl\":\"\",\"id\":328,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/5fa8325c4bea47fb9c2ad12193517d62.svga\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":false,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":106,\"virtualProductId\":390,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":3,\"createTime\":\"2021-07-07 11:50:04\",\"playMethod\":\"[{\\\"roomBannerId\\\":21,\\\"listBannerId\\\":22,\\\"chainNum\\\":\\\"1\\\"}]\",\"id\":95,\"virtualProductId\":390}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/138fa52d528a4c409aa3d65d19b79d9f.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":100,\"remarkUrl\":\"\",\"id\":390,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/0780aca1e7704884ab6450d6d5b5958c.svga\",\"giftType\":1,\"sort\":4999,\"charmValue\":100,\"limitUpdateTime\":\"2021-07-07 11:50:04\",\"useStatus\":1,\"name\":\"冲天火箭\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"火箭玩法\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-07-07 11:50:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-07 11:50:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":88,\"virtualProductId\":331,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/b0307222fcb646d0b95110656c037124.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":128,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1062960891aa4a99b197e8be5307da07.png\",\"id\":331,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c149f8f843604204b146160d92a38346.svga\",\"giftType\":1,\"sort\":4900,\"charmValue\":128,\"limitUpdateTime\":\"2020-11-24 19:48:45\",\"useStatus\":1,\"name\":\"星缤乐\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-11-24 19:48:45\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":108,\"virtualProductId\":391,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/0bbe351d0d1745c1980e4090cb27903f.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":3555,\"remarkUrl\":\"\",\"id\":391,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/7b6454a98bab4c368ee4689c44f242fe.svga\",\"giftType\":1,\"sort\":4386,\"charmValue\":3555,\"limitUpdateTime\":\"2021-07-21 16:35:54\",\"useStatus\":1,\"name\":\"小龙虾\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"五一活动限定聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":3,\"updateTime\":\"2021-07-21 16:35:54\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-21 16:35:54\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":109,\"virtualProductId\":392,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-07-21 16:40:07\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/21/e233abc98f504bdab8b8397b74ede5b2.svga\\\",\\\"vapUrl\\\":\\\"\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":96,\"virtualProductId\":392}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/560811f7b27241be9b2711ff8ff993c4.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":52000,\"remarkUrl\":\"\",\"id\":392,\"giftType\":1,\"sort\":4313,\"charmValue\":52000,\"limitUpdateTime\":\"2021-07-21 16:40:07\",\"useStatus\":1,\"name\":\"月下美人\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"礼盒活动礼物·即将在返场活动中回归\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":4,\"updateTime\":\"2021-07-21 16:40:07\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-21 16:40:07\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":12,\"price\":1,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/d927d02a752f41eab8590cd0bfa4ba56.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1130,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":89,\"virtualProductId\":332,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c649a40efa174ef9b3ddcba6c28b6a98.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":1314,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/ecb52148aef347f29a37e6e53fb8e0bb.png\",\"id\":332,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/28e07534d6654d1e973eef38f9dbb819.svga\",\"giftType\":1,\"sort\":1121,\"charmValue\":1314,\"limitUpdateTime\":\"2020-11-24 19:51:10\",\"useStatus\":1,\"name\":\"环游星河\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-06-02 11:03:41\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2020-11-24 19:51:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":24,\"virtualProductId\":326,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:06:05\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/22/e07679f822684aabba34140d5a894cb5.svga\\\",\\\"remark\\\":\\\"一心一意\\\"},{\\\"chainNum\\\":\\\"3\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/590d7c47f5414a189f5247be6f0d6b02.svga\\\",\\\"remark\\\":\\\"三生三世\\\"}]\",\"id\":23,\"virtualProductId\":326},{\"playType\":3,\"createTime\":\"2020-11-19 15:14:25\",\"playMethod\":\"[{\\\"roomBannerId\\\":2,\\\"listBannerId\\\":1,\\\"chainNum\\\":\\\"3\\\"}]\",\"id\":91,\"virtualProductId\":326}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/688f3a03e80c443aa4aefd240fa5bf00.png\",\"createTime\":\"2020-06-23 18:57:20\",\"refType\":1,\"startTime\":\"2020-11-21 00:00:00\",\"id\":1,\"endTime\":\"2020-11-21 23:59:59\",\"virtualProductId\":326,\"content\":\"百度2\",\"activityH5Url\":\"http://www.baidu.com\",\"status\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/d86d5b1ad31c448697311b2b0f2c1d50.webp\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\",\"type\":1,\"hotValue\":50,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":44,\"price\":0,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/2e721e9dc9754686b677c2ad616d1b4e.png\",\"id\":326,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":1120,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-22 17:06:06\",\"useStatus\":1,\"name\":\"森林之星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:06:06\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":22,\"virtualProductId\":324,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:01:51\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/015d9ca65cf7438db1e465761c5a876b.svga\\\",\\\"remark\\\":\\\"一生一世\\\"}]\",\"id\":21,\"virtualProductId\":324}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/de1adcc582c449f1bf32722ab9a766ca.png\",\"type\":1,\"hotValue\":200,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":11,\"price\":0,\"remarkUrl\":\"\",\"id\":324,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":1100,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-22 17:01:52\",\"useStatus\":1,\"name\":\"永恒之冠\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:01:52\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":46,\"pages\":5,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-23 15:20:23:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 289毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"289毫秒","endTime":"2021-07-23 15:20:23","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:23","status":1}
[2021-07-23 15:20:24.201] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:24.201] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:24.201] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:24.201] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:24.201] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:24.201] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:24.201] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:24.201] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:24 GMT
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:24.202] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:24.717] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:24:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======
[2021-07-23 15:20:24.717] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 15:20:24.717] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:24.717] [TestNG] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.UnknownHostException: t3-guild-api.apeiwan.com
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.guildSearchList(CosPlyaPlayerServiceImpl.java:665)
at com.pipi.invoker.CosPlayerTest.testGuildSearch(CosPlayerTest.java:156)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.access$000(SuiteRunner.java:39)
at org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)
at org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[2021-07-23 15:20:24.717] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:24.718] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testGuildSearch--Test Mthod Failure
[2021-07-23 15:20:24.718] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 15:20:24:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======
[2021-07-23 15:20:24.718] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 001毫秒======
[2021-07-23 15:20:24.718] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:24.718] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:24.719] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"搜索公会","caseLog":"======2021-07-23 15:20:24:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======\r\n======2021-07-23 15:20:24:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======\r\n======本次用例运行消耗时间 001毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search,异常信息:t3-guild-api.apeiwan.com\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:340)\r\n\tat com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.guildSearchList(CosPlyaPlayerServiceImpl.java:665)\r\n\tat com.pipi.invoker.CosPlayerTest.testGuildSearch(CosPlayerTest.java:156)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.access$000(SuiteRunner.java:39)\r\n\tat org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)\r\n\tat org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)\r\n\tat java.util.concurrent.FutureTask.run(FutureTask.java:266)\r\n\tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)\r\n\tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)\r\n\tat java.lang.Thread.run(Thread.java:748)\r\nCaused by: java.net.UnknownHostException: t3-guild-api.apeiwan.com\r\n\tat java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)\r\n\tat java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)\r\n\tat java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\r\n\tat java.net.Socket.connect(Socket.java:589)\r\n\tat sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)\r\n\tat sun.net.NetworkClient.doConnect(NetworkClient.java:175)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:463)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:558)\r\n\tat sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)\r\n\tat sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)\r\n\t... 26 more\r\n","caseName":"testGuildSearch","className":"com.pipi.invoker.CosPlayerTest","durationTime":"001毫秒","endTime":"2021-07-23 15:20:24","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:24","status":2}
[2021-07-23 15:20:24.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:24.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:24.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:24.993] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:24.994] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:24.994] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:24.994] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:24.994] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:24.994] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:24.995] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:24.995] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:24.995] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:24 GMT
[2021-07-23 15:20:24.995] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:24.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:24.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:24.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:24.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:24.996] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:30.012] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:30:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-07-23 15:20:30.012] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:30.012] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:30.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:30.101] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:30.102] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:30.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:30.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:30.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:30.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:30.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:30.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:30.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:30.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:30.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:30 GMT
[2021-07-23 15:20:30.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:30.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:30.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:30.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":63.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-23 09:40:20","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-07-23 14:56:10","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":44826,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 15:20:30.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:30.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:30.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-23 15:20:30.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-23 15:20:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:30.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:30.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774134, nickname=test, remark=1, chargeBalance=63.00, userId=2203773, searchValue=2203773}
[2021-07-23 15:20:30.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:30.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=test&remark=1&chargeBalance=63.00&userId=2203773&searchValue=2203773
[2021-07-23 15:20:30.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:30.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:30 GMT
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:30.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-23 15:20:30.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:30.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:30.577] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMoneyDetailsSave--Test Mthod Success
[2021-07-23 15:20:30.577] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 15:20:30:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-07-23 15:20:30.577] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 565毫秒======
[2021-07-23 15:20:30.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:30.577] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:30.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:30.579] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-07-23 15:20:30:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:30 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":63.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-23 09:40:20\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-07-23 14:56:10\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":44826,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"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\":\"test\",\"remark\":\"1\",\"chargeBalance\":\"63.00\",\"userId\":\"2203773\",\"searchValue\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=test&remark=1&chargeBalance=63.00&userId=2203773&searchValue=2203773\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:30 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-23 15:20:30:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 565毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"565毫秒","endTime":"2021-07-23 15:20:30","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:30","status":1}
[2021-07-23 15:20:30.911] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:30.912] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:30.912] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:30.912] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:30.912] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:30.913] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:30.913] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:30.913] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:30.913] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:30.913] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:30.913] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:30.914] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:31 GMT
[2021-07-23 15:20:30.914] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:30.914] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:30.914] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:30.914] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:30.914] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:30.914] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:31.422] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:31:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======
[2021-07-23 15:20:31.422] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:31.423] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:31.496] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:31.496] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:31.496] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:31.496] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:31.496] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:31.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:31.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:31.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:31.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-23 15:20:31.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:31.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-23 15:20:31.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:31.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:31.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:31.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:31.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:31 GMT
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-23 09:40:23","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-23 14:56:10","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/room/list
[2021-07-23 15:20:31.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:31.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:31.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:31.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/room/list
[2021-07-23 15:20:31.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:31.657] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:31.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:31.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:31.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:31.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1, userId=2203657}
[2021-07-23 15:20:31.658] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:31.659] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1&userId=2203657
[2021-07-23 15:20:31.659] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:31.659] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:31.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:31.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:31.797] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:32 GMT
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:31.798] [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":2203657,"scoreWeight":2,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":3085,"virtualPeople":1,"roomType":1,"realPeople":0,"roomNo":"TEST833760","recommendWeight":0,"sort":999,"guildId":232,"roomName":"我的厅1","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":true,"isHot":false,"template":1,"hostMobile":"13823774131","remark":"我的厅1","roomCode":"TEST833760","guildCode":"18306720","sortWeight":0,"guildName":"心玄的公会","isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","orderRoomSerial":"1","openTime":"2021-07-06 17:32:09","roomCategoryId":2,"collectCount":0,"micDuration":900,"isShow":true,"hostUserName":"test","createTime":"2021-07-06 17:32:09"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:31.798] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:31.798] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomList--Test Mthod Success
[2021-07-23 15:20:31.798] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 15:20:31:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======
[2021-07-23 15:20:31.799] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 376毫秒======
[2021-07-23 15:20:31.799] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:31.799] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:31.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询房间","caseLog":"======2021-07-23 15:20:31:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:31 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-23 09:40:23\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-23 14:56:10\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/room/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":10,\"pageNum\":1,\"userId\":\"2203657\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1&userId=2203657\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:32 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"endRow\":1,\"list\":[{\"hostUserId\":2203657,\"scoreWeight\":2,\"roomInfoTagList\":[],\"roomStatus\":1,\"password\":\"123456\",\"isOpenChat\":true,\"roomCategoryName\":\"派单\",\"id\":3085,\"virtualPeople\":1,\"roomType\":1,\"realPeople\":0,\"roomNo\":\"TEST833760\",\"recommendWeight\":0,\"sort\":999,\"guildId\":232,\"roomName\":\"我的厅1\",\"roomInfoTagConfigList\":[],\"roomVipCount\":15,\"basicHotValue\":0,\"isActivate\":true,\"isHot\":false,\"template\":1,\"hostMobile\":\"13823774131\",\"remark\":\"我的厅1\",\"roomCode\":\"TEST833760\",\"guildCode\":\"18306720\",\"sortWeight\":0,\"guildName\":\"心玄的公会\",\"isLock\":false,\"roomIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg\",\"orderRoomSerial\":\"1\",\"openTime\":\"2021-07-06 17:32:09\",\"roomCategoryId\":2,\"collectCount\":0,\"micDuration\":900,\"isShow\":true,\"hostUserName\":\"test\",\"createTime\":\"2021-07-06 17:32:09\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-23 15:20:31:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======\r\n======本次用例运行消耗时间 376毫秒======\r","caseName":"testRoomList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"376毫秒","endTime":"2021-07-23 15:20:31","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:31","status":1}
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:32 GMT
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:31.991] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:32.497] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:32:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======
[2021-07-23 15:20:32.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:32.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:32.579] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:32.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:32.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:32.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:32.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:32.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:32.581] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:32.581] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:32.581] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-23 15:20:32.581] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:32.581] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-23 15:20:32.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:32.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:32 GMT
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:32.669] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:32.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-23 09:40:23","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-23 14:56:10","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 15:20:32.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:32.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:32.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/api/v4/room/gift/send
[2021-07-23 15:20:32.670] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:32.755] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:32.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:32.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/api/v4/room/gift/send
[2021-07-23 15:20:32.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:32.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:32.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-ba7d86789d7b42699bf1df823d8d100e#2203773
[2021-07-23 15:20:32.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:32.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:32.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=TEST833760, productId=331, userIds=2203657, timestamp=1621828487580}
[2021-07-23 15:20:32.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:32.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=TEST833760&productId=331&userIds=2203657×tamp=1621828487580
[2021-07-23 15:20:32.758] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:32.758] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:33 GMT
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:33.169] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:33.170] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:33.170] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaXRZ9hYkLN/8PcSh0ZEBCE5OjCrf4dwupqUmBsYFFuyPpRvNbGzKIf6ld1huPz3Qw/u4s1kN5duTtoJyJOsAuHcWgfMZYS8jE5Ry3Rp8kV/VWNATirqs/qkpngKeJ+LLhC3xjf4wm5gVbGmw9gEc5ZjsorZxhf2LuJOmAaJgnnz8F2HTfmGjCNjJA7l9ekaPEs4l/NFCRWQLo395AZMn8sCr+UaPITSIpiJxOJ9cMEI2qyCqrfW5mFDnvcrKeOVmbSJNrus1DdhOi+J2QE5TnANwa0XrQI0wkmZWbBm9hO5QUcduSW7eHGyVrDclvnam+FMjpsAxaNXwKJec83F3GeY=","status":200}
[2021-07-23 15:20:33.170] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:33.170] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:33.170] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testSend--Test Mthod Success
[2021-07-23 15:20:33.170] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 15:20:33:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======
[2021-07-23 15:20:33.170] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 673毫秒======
[2021-07-23 15:20:33.170] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:33.170] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:33.171] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:33.171] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:33.171] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:33.171] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:33.171] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:33.171] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:33.171] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:33.171] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:33.171] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:33.172] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:33.172] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:33.172] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送礼物","caseLog":"======2021-07-23 15:20:32:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:32 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-23 09:40:23\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-23 14:56:10\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-ba7d86789d7b42699bf1df823d8d100e#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"TEST833760\",\"productId\":\"331\",\"userIds\":\"2203657\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=TEST833760&productId=331&userIds=2203657×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\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:33 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaXRZ9hYkLN/8PcSh0ZEBCE5OjCrf4dwupqUmBsYFFuyPpRvNbGzKIf6ld1huPz3Qw/u4s1kN5duTtoJyJOsAuHcWgfMZYS8jE5Ry3Rp8kV/VWNATirqs/qkpngKeJ+LLhC3xjf4wm5gVbGmw9gEc5ZjsorZxhf2LuJOmAaJgnnz8F2HTfmGjCNjJA7l9ekaPEs4l/NFCRWQLo395AZMn8sCr+UaPITSIpiJxOJ9cMEI2qyCqrfW5mFDnvcrKeOVmbSJNrus1DdhOi+J2QE5TnANwa0XrQI0wkmZWbBm9hO5QUcduSW7eHGyVrDclvnam+FMjpsAxaNXwKJec83F3GeY=\",\"status\":200}\r\n===================================\r\n======2021-07-23 15:20:33:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======\r\n======本次用例运行消耗时间 673毫秒======\r","caseName":"testSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"673毫秒","endTime":"2021-07-23 15:20:33","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:32","status":1}
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:33 GMT
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:33.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:33.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:33.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:34.023] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:34:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======
[2021-07-23 15:20:34.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-07-23 15:20:34.024] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:45.086] [TestNG] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.UnknownHostException: t3-guild-api.apeiwan.com
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.upList(CosPlyaPlayerServiceImpl.java:763)
at com.pipi.invoker.CosPlayerTest.testUpList(CosPlayerTest.java:184)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.access$000(SuiteRunner.java:39)
at org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)
at org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[2021-07-23 15:20:45.086] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:45.087] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testUpList--Test Mthod Failure
[2021-07-23 15:20:45.087] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 15:20:45:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======
[2021-07-23 15:20:45.087] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 11秒064毫秒======
[2021-07-23 15:20:45.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:45.087] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:45.088] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取上麦、试音申请列表数据","caseLog":"======2021-07-23 15:20:34:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======\r\n======2021-07-23 15:20:45:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======\r\n======本次用例运行消耗时间 11秒064毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/list,异常信息:t3-guild-api.apeiwan.com\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:340)\r\n\tat com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.upList(CosPlyaPlayerServiceImpl.java:763)\r\n\tat com.pipi.invoker.CosPlayerTest.testUpList(CosPlayerTest.java:184)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.access$000(SuiteRunner.java:39)\r\n\tat org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)\r\n\tat org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)\r\n\tat java.util.concurrent.FutureTask.run(FutureTask.java:266)\r\n\tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)\r\n\tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)\r\n\tat java.lang.Thread.run(Thread.java:748)\r\nCaused by: java.net.UnknownHostException: t3-guild-api.apeiwan.com\r\n\tat java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)\r\n\tat java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)\r\n\tat java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\r\n\tat java.net.Socket.connect(Socket.java:589)\r\n\tat sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)\r\n\tat sun.net.NetworkClient.doConnect(NetworkClient.java:175)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:463)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:558)\r\n\tat sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)\r\n\tat sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)\r\n\t... 26 more\r\n","caseName":"testUpList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"11秒064毫秒","endTime":"2021-07-23 15:20:45","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:34","status":2}
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:45.167] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:45.168] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:45.168] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:45 GMT
[2021-07-23 15:20:45.168] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:45.168] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:45.168] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:45.168] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:45.168] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:45.168] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:50.177] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:50:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======
[2021-07-23 15:20:50.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-07-23 15:20:50.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:50.179] [TestNG] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.UnknownHostException: t3-guild-api.apeiwan.com
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.upSize(CosPlyaPlayerServiceImpl.java:774)
at com.pipi.invoker.CosPlayerTest.testUpSize(CosPlayerTest.java:198)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.access$000(SuiteRunner.java:39)
at org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)
at org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[2021-07-23 15:20:50.180] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:50.180] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testUpSize--Test Mthod Failure
[2021-07-23 15:20:50.180] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 15:20:50:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======
[2021-07-23 15:20:50.180] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 003毫秒======
[2021-07-23 15:20:50.180] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:50.181] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:50.181] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:50.181] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:50.181] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:50.181] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:50.181] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:50.181] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:50.181] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:50.182] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:50.182] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:50.182] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:50.182] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:50.182] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取聊天室内上麦试音队列、点单队列等","caseLog":"======2021-07-23 15:20:50:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======\r\n======2021-07-23 15:20:50:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======\r\n======本次用例运行消耗时间 003毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/size,异常信息:t3-guild-api.apeiwan.com\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:340)\r\n\tat com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.upSize(CosPlyaPlayerServiceImpl.java:774)\r\n\tat com.pipi.invoker.CosPlayerTest.testUpSize(CosPlayerTest.java:198)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.access$000(SuiteRunner.java:39)\r\n\tat org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)\r\n\tat org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)\r\n\tat java.util.concurrent.FutureTask.run(FutureTask.java:266)\r\n\tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)\r\n\tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)\r\n\tat java.lang.Thread.run(Thread.java:748)\r\nCaused by: java.net.UnknownHostException: t3-guild-api.apeiwan.com\r\n\tat java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)\r\n\tat java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)\r\n\tat java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\r\n\tat java.net.Socket.connect(Socket.java:589)\r\n\tat sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)\r\n\tat sun.net.NetworkClient.doConnect(NetworkClient.java:175)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:463)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:558)\r\n\tat sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)\r\n\tat sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)\r\n\t... 26 more\r\n","caseName":"testUpSize","className":"com.pipi.invoker.CosPlayerTest","durationTime":"003毫秒","endTime":"2021-07-23 15:20:50","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:50","status":2}
[2021-07-23 15:20:50.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:50.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:50.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:50.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:50.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:50.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:50.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:51 GMT
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:50.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:55.958] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:55:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======
[2021-07-23 15:20:55.958] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:55.959] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:56.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:56.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:56.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:56.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:56.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:56.049] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:56.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:56.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:56.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-07-23 15:20:56.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:56.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-07-23 15:20:56.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:56.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:56 GMT
[2021-07-23 15:20:56.153] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:56.154] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:56.154] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:56.154] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":64.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-23 09:40:20","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-07-23 14:56:10","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":44698,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 15:20:56.154] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:56.154] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:56.154] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUserList--Test Mthod Success
[2021-07-23 15:20:56.154] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 15:20:56:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======
[2021-07-23 15:20:56.154] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 196毫秒======
[2021-07-23 15:20:56.154] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:56.154] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:56.155] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"用户信息","caseLog":"======2021-07-23 15:20:55:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:56 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":64.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-23 09:40:20\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-07-23 14:56:10\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":44698,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-23 15:20:56:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======\r\n======本次用例运行消耗时间 196毫秒======\r","caseName":"testUserList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"196毫秒","endTime":"2021-07-23 15:20:56","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:55","status":1}
[2021-07-23 15:20:57.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:57.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:57.236] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:57.236] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:57.236] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:57.236] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:57.236] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:57.237] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:57.237] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:57.237] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:57.237] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:57.237] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:57 GMT
[2021-07-23 15:20:57.237] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:57.238] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:57.238] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:57.238] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:57.238] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:57.238] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:57.745] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:57:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-07-23 15:20:57.745] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:57.745] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:57.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:57.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:57.820] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:57.821] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:58 GMT
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:57.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:57.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":64.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-23 09:40:20","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-07-23 14:56:10","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":44698,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 15:20:57.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:57.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:57.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-23 15:20:57.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:58.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:58.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:58.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-23 15:20:58.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:20:58.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:58.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:20:58.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:20:58.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:58.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1000, remark=1, type=1, userId=2203773}
[2021-07-23 15:20:58.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:58.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1000&remark=1&type=1&userId=2203773
[2021-07-23 15:20:58.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:58.055] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:20:58.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:58.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:58.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:20:58.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:58.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:58.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:20:58.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:58.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:20:58.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:58 GMT
[2021-07-23 15:20:58.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:20:58.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:58.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:58.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-23 15:20:58.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:58.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:58.279] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testVirtualMoneyModify--Test Mthod Success
[2021-07-23 15:20:58.279] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 15:20:58:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-07-23 15:20:58.279] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 534毫秒======
[2021-07-23 15:20:58.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:58.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:20:58.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:20:58.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:20:58.281] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-07-23 15:20:57:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:58 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":64.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-23 09:40:20\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-07-23 14:56:10\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":44698,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":1000,\"remark\":\"1\",\"type\":1,\"userId\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1000&remark=1&type=1&userId=2203773\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:20:58 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-23 15:20:58:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 534毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"534毫秒","endTime":"2021-07-23 15:20:58","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:57","status":1}
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:20:58 GMT
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:20:58.556] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:20:58.557] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:20:58.557] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:20:58.557] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:20:59.067] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:20:59:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======
[2021-07-23 15:20:59.067] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-07-23 15:20:59.067] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:21:10.124] [TestNG] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.UnknownHostException: t3-api-app.apeiwan.com
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:463)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:558)
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.lotteryActivity(CosPlyaPlayerServiceImpl.java:389)
at com.pipi.invoker.CosPlayerTest.testLotteryActivity(CosPlayerTest.java:129)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.access$000(SuiteRunner.java:39)
at org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)
at org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[2021-07-23 15:21:10.126] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:21:10.126] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testLotteryActivity--Test Mthod Failure
[2021-07-23 15:21:10.127] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 15:21:10:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======
[2021-07-23 15:21:10.127] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 11秒060毫秒======
[2021-07-23 15:21:10.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:21:10.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:21:10.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:21:10.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:21:10.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:21:10.128] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:21:10.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:21:10.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:21:10.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:21:10.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:21:10.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:21:10.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:21:10.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:21:10.129] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"开宝箱","caseLog":"======2021-07-23 15:20:59:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======\r\n======2021-07-23 15:21:10:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======\r\n======本次用例运行消耗时间 11秒060毫秒======\r","caseMessage":"com.fangdd.qa.framework.exception.BusinessException: 请求URL:https://t3-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity,异常信息:t3-api-app.apeiwan.com\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:340)\r\n\tat com.fangdd.qa.framework.tools.HttpToolKit.invokePost(HttpToolKit.java:146)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.lotteryActivity(CosPlyaPlayerServiceImpl.java:389)\r\n\tat com.pipi.invoker.CosPlayerTest.testLotteryActivity(CosPlayerTest.java:129)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.access$000(SuiteRunner.java:39)\r\n\tat org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)\r\n\tat org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)\r\n\tat java.util.concurrent.FutureTask.run(FutureTask.java:266)\r\n\tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)\r\n\tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)\r\n\tat java.lang.Thread.run(Thread.java:748)\r\nCaused by: java.net.UnknownHostException: t3-api-app.apeiwan.com\r\n\tat java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)\r\n\tat java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)\r\n\tat java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)\r\n\tat java.net.Socket.connect(Socket.java:589)\r\n\tat sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:666)\r\n\tat sun.net.NetworkClient.doConnect(NetworkClient.java:175)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:463)\r\n\tat sun.net.www.http.HttpClient.openServer(HttpClient.java:558)\r\n\tat sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)\r\n\tat sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156)\r\n\tat sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1050)\r\n\tat sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)\r\n\tat sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:162)\r\n\tat com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)\r\n\t... 26 more\r\n","caseName":"testLotteryActivity","className":"com.pipi.invoker.CosPlayerTest","durationTime":"11秒060毫秒","endTime":"2021-07-23 15:21:10","id":0,"serviceId":1,"startTime":"2021-07-23 15:20:59","status":2}
[2021-07-23 15:21:10.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:21:10.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:21:10.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:21:10.364] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:21:10.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:21:10.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:21:10.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:21:10.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:21:10.365] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:21:10.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:21:10.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:21:10.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:21:10 GMT
[2021-07-23 15:21:10.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:21:10.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:21:10.366] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:21:10.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:21:10.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:21:10.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:21:15.371] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 15:21:15:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======
[2021-07-23 15:21:15.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:21:15.371] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:21:15.444] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fa22e1f30f8c4c35a74c366de748ed6a
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:21:15.445] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:21:15 GMT
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":64.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-23 09:40:20","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"userCode":"137730220","loginTime":"2021-07-23 14:56:10","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":45698,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:21:15.525] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:21:15.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-07-23 15:21:15.526] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:21:15.612] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:21:15.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:21:15.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-07-23 15:21:15.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 15:21:15.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:21:15.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-e627f7b8678048d7a850adc28501fe6a#2203657
[2021-07-23 15:21:15.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 15:21:15.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:21:15.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {userId=2203773}
[2021-07-23 15:21:15.613] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:21:15.614] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - userId=2203773
[2021-07-23 15:21:15.614] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:21:15.614] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 15:21:15.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:21:15.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:21:15.961] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 15:21:15.962] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:21:15.962] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:21:15.962] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 15:21:15.962] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:21:15.962] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 15:21:15.963] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:21:16 GMT
[2021-07-23 15:21:15.963] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 15:21:15.963] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:21:15.963] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:21:15.963] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"该用户不在您的公会中","status":500}
[2021-07-23 15:21:15.964] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:21:15.964] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:21:15.964] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testRemove--Test Mthod Failure
[2021-07-23 15:21:15.965] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 15:21:15:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======
[2021-07-23 15:21:15.965] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 593毫秒======
[2021-07-23 15:21:15.965] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:21:15.965] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:21:15.966] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"将成员从公会移除","caseLog":"======2021-07-23 15:21:15:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"fa22e1f30f8c4c35a74c366de748ed6a\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:21:15 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":64.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-23 09:40:20\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"userCode\":\"137730220\",\"loginTime\":\"2021-07-23 14:56:10\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":45698,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v2/guild-member/remove\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-e627f7b8678048d7a850adc28501fe6a#2203657\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"userId\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\nuserId=2203773\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 07:21:16 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"该用户不在您的公会中\",\"status\":500}\r\n===================================\r\n======2021-07-23 15:21:15:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======\r\n======本次用例运行消耗时间 593毫秒======\r","caseMessage":"java.lang.AssertionError: expected [200] but found [500]\r\n\tat org.testng.Assert.fail(Assert.java:94)\r\n\tat org.testng.Assert.failNotEquals(Assert.java:513)\r\n\tat org.testng.Assert.assertEqualsImpl(Assert.java:135)\r\n\tat org.testng.Assert.assertEquals(Assert.java:116)\r\n\tat org.testng.Assert.assertEquals(Assert.java:389)\r\n\tat org.testng.Assert.assertEquals(Assert.java:399)\r\n\tat com.pipi.invoker.CosPlayerTest.testRemove(CosPlayerTest.java:171)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.access$000(SuiteRunner.java:39)\r\n\tat org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:421)\r\n\tat org.testng.internal.thread.ThreadUtil$2.call(ThreadUtil.java:64)\r\n\tat java.util.concurrent.FutureTask.run(FutureTask.java:266)\r\n\tat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)\r\n\tat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)\r\n\tat java.lang.Thread.run(Thread.java:748)\r\n","caseName":"testRemove","className":"com.pipi.invoker.CosPlayerTest","durationTime":"593毫秒","endTime":"2021-07-23 15:21:15","id":0,"serviceId":1,"startTime":"2021-07-23 15:21:15","status":2}
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:21:16 GMT
[2021-07-23 15:21:16.207] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:21:16.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:21:16.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:21:16.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:21:16.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:21:16.208] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:21:21.239] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUserList
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomList
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testSend
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMoneyDetailsSave
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testVirtualMoneyModify
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testGuildSearch
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testUpSize
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testAuditGuild
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testUpList
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testLotteryActivity
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testRemove
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:7
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:6
[2021-07-23 15:21:21.240] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-07-23 15:21:21.244] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-07-23 15:21:21.245] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-07-23 15:21:21.249] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-23 15:21:21.249] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 15:21:21.249] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 15:21:21.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"01分18秒033毫秒","endTime":"2021-07-23 15:21:21","env":"t3","failed":6,"id":0,"passed":7,"serviceId":1,"skipped":0,"startTime":"2021-07-23 15:20:03","status":2,"teamId":0,"total":13}
[2021-07-23 15:21:21.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 15:21:21.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 15:21:21.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 15:21:21.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 15:21:21.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 07:21:21 GMT
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 15:21:21.695] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 15:21:21.695] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-07-23 15:21:21:测试集结束======
[2021-07-23 15:21:21.695] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 01分18秒033毫秒======
[2021-07-23 16:45:27.187] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-07-23 16:45:27.246] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-07-23 16:45:27:测试集开始======
[2021-07-23 16:45:27.456] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.PropUtil:51] - 配置项 dbConnectionURL 不存在,请检查配置!
[2021-07-23 16:45:27.467] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-23 16:45:27.468] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:27.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:27.717] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:27.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:27.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:27.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:27.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:27.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:27.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:27.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-23 16:45:27.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:27 GMT
[2021-07-23 16:45:27.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:27.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:27.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:27.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"e5d1b21f13694780945c02e49bea4305","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-23 16:45:27.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:27.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:27.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:45:27.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:27.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:27.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:27.891] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:27.892] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:27.892] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:28 GMT
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:27.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:27.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/login
[2021-07-23 16:45:27.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:28.026] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:28.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:28.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/login
[2021-07-23 16:45:28.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:28.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:28.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:28.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:28.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-07-23 16:45:28.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:28.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-07-23 16:45:28.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:28.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:28.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:28.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:28.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:28.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:28.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:28.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:28.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:28.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-07-23 16:45:28.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:28 GMT
[2021-07-23 16:45:28.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:28.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:28.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:28.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"137730220","nickname":"test","id":2203773,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","imId":"2203773_20210708","token":"APP-bed63a5fcb8a47c7b101f2a72b581473#2203773","createTime":"2021-07-08 10:33:13","newUser":false,"status":1},"status":200}
[2021-07-23 16:45:28.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:28.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:28.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:45:28.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:28.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:28.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:28.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:45:28.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:28.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:28.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:28.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:28.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-07-23 16:45:28.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:28.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-07-23 16:45:28.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:28.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:28.280] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:28.280] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:28.280] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:28.280] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:28 GMT
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:28.281] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/login
[2021-07-23 16:45:28.282] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:28.382] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:28.383] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:28.383] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/login
[2021-07-23 16:45:28.383] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:28.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:28.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:28.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:28.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-07-23 16:45:28.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:28.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-07-23 16:45:28.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:28.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:28.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:28.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:28.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:28.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:28.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:28.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-07-23 16:45:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:28 GMT
[2021-07-23 16:45:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"175630220","nickname":"test","id":2203657,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","imId":"2203657_20210524","token":"APP-73298e76a3304ecfa9053cade77fad7d#2203657","createTime":"2021-05-24 14:01:01","newUser":false,"status":1},"status":200}
[2021-07-23 16:45:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:28.492] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:28:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-07-23 16:45:28.494] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-23 16:45:28.494] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:28.569] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:28.754] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:28 GMT
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:28.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"sort desc","endRow":8,"list":[{"remark":"12","openedTimes":4,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"0","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天室气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-课代表*永久\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":402}]","id":128,"operatorId":34,"rewardLotteryCount":4,"openRewardDiamonds":4,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/6e782a90d6d3456695e023958cb0fffa.svga","updateTime":"2021-07-21 14:16:51","sort":111,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png","remainLotteryDiamonds":18910,"openPayDiamonds":4,"createTime":"2020-11-20 14:12:15","name":"xcc111","remainLotteryCount":65,"activityType":1,"priceRules":"[{\"price\":1,\"times\":1},{\"price\":5,\"times\":5},{\"price\":10,\"times\":10}]","isActivate":false,"status":0},{"remark":"没后悔过控件工具库","openedTimes":2300796,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png","lotteryActivityId":63,"createTime":"2020-11-19 17:49:32","startTime":"2020-11-18 00:00:00","id":14,"endTime":"2020-11-30 23:59:59","content":"邂逅2","activityH5Url":"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1","status":2},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":123,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"礼物-小黄鸭*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":115},{\"amount\":6,\"isNotice\":0,\"name\":\"礼物-小心心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":116},{\"amount\":8,\"isNotice\":0,\"name\":\"钻石*8\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":117},{\"amount\":10,\"isNotice\":0,\"name\":\"礼物-心相印*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":118},{\"amount\":21,\"isNotice\":1,\"name\":\"礼物-甜甜圈*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":119},{\"amount\":52,\"isNotice\":1,\"name\":\"礼物-棒棒糖*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":120},{\"amount\":99,\"isNotice\":1,\"name\":\"钻石*99\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":121},{\"amount\":128,\"isNotice\":1,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":122},{\"amount\":158,\"isNotice\":1,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":123}]","startTime":"2020-11-24 00:00:00","id":63,"operatorId":34,"rewardLotteryCount":2300796,"openRewardDiamonds":23974491,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga","updateTime":"2020-11-24 16:52:31","sort":30,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif","remainLotteryDiamonds":12349,"openPayDiamonds":23007960,"createTime":"2019-10-16 18:36:18","name":"普通宝箱","remainLotteryCount":1204,"endTime":"2020-11-26 23:59:59","activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":6990255,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png","delFlag":false,"operatorName":"程杰","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":1,\"name\":\"礼物-甜甜圈\",\"isNew\":0,\"lotteryId\":181},{\"isNotice\":1,\"name\":\"礼物-棒棒糖\",\"isNew\":0,\"lotteryId\":182},{\"isNotice\":1,\"name\":\"礼物-么么哒\",\"isNew\":0,\"lotteryId\":183},{\"isNotice\":1,\"name\":\"礼物-麦克风\",\"isNew\":0,\"lotteryId\":184},{\"isNotice\":1,\"name\":\"礼物-玫瑰花\",\"isNew\":0,\"lotteryId\":185}]","id":69,"operatorId":75,"rewardLotteryCount":6990255,"openRewardDiamonds":67901769,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga","updateTime":"2020-06-29 18:33:46","sort":30,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif","remainLotteryDiamonds":12309,"openPayDiamonds":69902550,"createTime":"2020-01-11 11:37:53","name":"普通宝箱","remainLotteryCount":196,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":220141,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\",\"decorationId\":211,\"decorationName\":\"慵懒的猫个人名牌\"}","lotteryRules":"[{\"amount\":108,\"isReward\":0,\"isNotice\":0,\"name\":\"钻石*108\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":124},{\"amount\":128,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-么么哒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":125},{\"amount\":158,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-麦克风*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":126},{\"amount\":188,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-怦然心动*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":127},{\"amount\":233,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-可爱小熊*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":128},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天使之心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":129},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-果果冰*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":130},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":132},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":133},{\"amount\":3344,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":134}]","id":64,"operatorId":34,"rewardLotteryCount":220141,"openRewardDiamonds":46252083,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga","updateTime":"2021-06-02 15:00:48","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif","remainLotteryDiamonds":472689,"openPayDiamonds":46229610,"createTime":"2019-10-16 18:38:39","name":"白银宝箱","remainLotteryCount":1462,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"","openedTimes":518608,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\",\"decorationId\":198,\"decorationName\":\"荧光棒聊天气泡\"}","lotteryRules":"[{\"amount\":1,\"isNotice\":0,\"name\":\"座位框-魔力法典*1 天\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":396},{\"amount\":10,\"isNotice\":0,\"name\":\"钻石*10\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":395},{\"amount\":99,\"isNotice\":0,\"name\":\"魅力值礼物-水晶粽\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":394}]","startTime":"2020-11-16 00:00:00","id":70,"operatorId":34,"rewardLotteryCount":518608,"openRewardDiamonds":105724795,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga","updateTime":"2020-11-19 15:36:17","sort":20,"labelUrl":"null","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif","remainLotteryDiamonds":9777,"openPayDiamonds":108906423,"createTime":"2020-01-11 11:46:04","name":"白银宝箱","remainLotteryCount":263,"endTime":"2020-11-18 23:59:59","activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"2\",\"times\":\"5\"},{\"price\":\"3\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":90508,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png","delFlag":false,"operatorName":"梁鑫宇","coverThreshold":0,"openType":2,"lotteryRules":"[{\"isNotice\":0,\"name\":\"礼物-可爱小熊*\",\"isNew\":0,\"lotteryId\":135},{\"isNotice\":0,\"name\":\"钻石*388\",\"isNew\":0,\"lotteryId\":136},{\"isNotice\":0,\"name\":\"礼物-天使之心*\",\"isNew\":0,\"lotteryId\":137},{\"isNotice\":0,\"name\":\"礼物-果果冰*\",\"isNew\":0,\"lotteryId\":138},{\"isNotice\":1,\"name\":\"钻石*788\",\"isNew\":0,\"lotteryId\":139},{\"isNotice\":1,\"name\":\"礼物-樱花雨*\",\"isNew\":0,\"lotteryId\":140},{\"isNotice\":1,\"name\":\"礼物-爱的告白*\",\"isNew\":0,\"lotteryId\":141},{\"isNotice\":1,\"name\":\"礼物-永恒印记*\",\"isNew\":0,\"lotteryId\":142},{\"isNotice\":1,\"name\":\"礼物-爱神之箭*\",\"isNew\":0,\"lotteryId\":143},{\"isNotice\":1,\"name\":\"礼物-心愿灯*\",\"isNew\":0,\"lotteryId\":144},{\"isNotice\":1,\"name\":\"座位框-花蝴蝶*1 天\",\"isNew\":0,\"lotteryId\":145},{\"isNotice\":1,\"name\":\"座位框-精灵梦*1 天\",\"isNew\":0,\"lotteryId\":146}]","id":65,"operatorId":55,"rewardLotteryCount":90508,"openRewardDiamonds":54735115,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga","updateTime":"2020-01-11 12:06:41","sort":10,"gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif","remainLotteryDiamonds":917525,"openPayDiamonds":60278328,"createTime":"2019-10-16 18:42:34","name":"黄金宝箱","remainLotteryCount":1492,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":503800,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png","delFlag":false,"operatorName":"周雄军","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\",\"decorationId\":195,\"decorationName\":\"金光闪闪聊天室气泡\"}","lotteryRules":"[{\"amount\":222,\"isNotice\":0,\"name\":\"礼物-玫瑰花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":196},{\"amount\":233,\"isNotice\":0,\"name\":\"礼物-可爱小熊\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":197},{\"amount\":266,\"isNotice\":0,\"name\":\"礼物-天使之心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":198},{\"amount\":520,\"isNotice\":0,\"name\":\"礼物-果果冰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":199},{\"amount\":999,\"isNotice\":1,\"name\":\"礼物-樱花雨\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":200},{\"amount\":1314,\"isNotice\":1,\"name\":\"礼物-爱的告白\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":201},{\"amount\":3344,\"isNotice\":1,\"name\":\"礼物-永恒印记\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":202},{\"amount\":7777,\"isNotice\":1,\"name\":\"礼物-爱神之箭\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":203},{\"amount\":26666,\"isNotice\":1,\"name\":\"礼物-心愿灯\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":204},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-镜花*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":205},{\"amount\":555,\"isNotice\":1,\"name\":\"座位框-水月*1天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":206},{\"amount\":300,\"isNotice\":0,\"name\":\"礼物-粉色情书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":271}]","id":71,"operatorId":43,"rewardLotteryCount":503800,"openRewardDiamonds":330353108,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga","updateTime":"2021-07-21 16:45:28","sort":10,"labelUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif","remainLotteryDiamonds":154510768,"openPayDiamonds":335530800,"createTime":"2020-01-11 12:01:31","name":"黄金宝箱","remainLotteryCount":111123023,"activityType":1,"priceRules":"[{\"price\":666,\"times\":1},{\"price\":3330,\"times\":5},{\"price\":6660,\"times\":10}]","isActivate":true,"status":1},{"remark":"2","openedTimes":23,"staticUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"null","decorationRules":"{\"usefulDays\":9,\"decorationUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\",\"decorationId\":204,\"decorationName\":\"主页特效主页特效\"}","lotteryRules":"[{\"amount\":50,\"isReward\":0,\"probability\":0,\"isNotice\":0,\"name\":\"礼物-森林之星*\",\"preUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":392},{\"amount\":10,\"isReward\":0,\"probability\":100,\"isNotice\":0,\"name\":\"座位框-萌爪爪*5 天\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":326}]","id":97,"operatorId":34,"rewardLotteryCount":23,"openRewardDiamonds":980,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga","updateTime":"2021-04-08 18:15:18","sort":2,"labelUrl":"null","gifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif","remainLotteryDiamonds":7870,"openPayDiamonds":230,"createTime":"2020-06-29 18:51:02","name":"普通的","remainLotteryCount":175,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"}]","isActivate":true,"status":1}],"pageNum":1,"navigatePages":8,"total":8,"pages":1,"size":8,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:28.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:28.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:28.759] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-07-23 16:45:28.760] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:28:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-07-23 16:45:28.760] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 268毫秒======
[2021-07-23 16:45:28.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:28.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:28.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-07-23 16:45:28:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/lottery/activity/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"activityType\":\"1\",\"pageNum\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&activityType=1&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45: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\":\"sort desc\",\"endRow\":8,\"list\":[{\"remark\":\"12\",\"openedTimes\":4,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/a5b799ecef3140eda9f78125c65219b3.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"0\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天室气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-课代表*永久\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":402}]\",\"id\":128,\"operatorId\":34,\"rewardLotteryCount\":4,\"openRewardDiamonds\":4,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/6e782a90d6d3456695e023958cb0fffa.svga\",\"updateTime\":\"2021-07-21 14:16:51\",\"sort\":111,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/43bd844022bd40f3a82962710d84d735.png\",\"remainLotteryDiamonds\":18910,\"openPayDiamonds\":4,\"createTime\":\"2020-11-20 14:12:15\",\"name\":\"xcc111\",\"remainLotteryCount\":65,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":1,\\\"times\\\":1},{\\\"price\\\":5,\\\"times\\\":5},{\\\"price\\\":10,\\\"times\\\":10}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"没后悔过控件工具库\",\"openedTimes\":2300796,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/0f81fb65b4d94b33bbad9dcc5a335fd2.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/18/1d92a963e4b2465cb7f80c39e9b94130.png\",\"lotteryActivityId\":63,\"createTime\":\"2020-11-19 17:49:32\",\"startTime\":\"2020-11-18 00:00:00\",\"id\":14,\"endTime\":\"2020-11-30 23:59:59\",\"content\":\"邂逅2\",\"activityH5Url\":\"https://html-public.apeiwan.com/20200728/index.html?hideNavi=1\",\"status\":2},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":123,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小黄鸭*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/16/cd35693adc0a4ccfaad0fbdf0109f3cb.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":115},{\\\"amount\\\":6,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小心心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/15eddc0d555844b19d4c11b2fcccdea0.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":116},{\\\"amount\\\":8,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*8\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":117},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-心相印*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/13/3e2b34b8cf1d4ffc852c510447b5ec37.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":118},{\\\"amount\\\":21,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/564793f709544362b38bb93ed437ba03.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":119},{\\\"amount\\\":52,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/f2d981ceddad4d9ea31afcd49e926ee8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":120},{\\\"amount\\\":99,\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*99\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":121},{\\\"amount\\\":128,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":122},{\\\"amount\\\":158,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":123}]\",\"startTime\":\"2020-11-24 00:00:00\",\"id\":63,\"operatorId\":34,\"rewardLotteryCount\":2300796,\"openRewardDiamonds\":23974491,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/4762b010716f4297a1698a01a683aee9.svga\",\"updateTime\":\"2020-11-24 16:52:31\",\"sort\":30,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/45d7a7ef02324a66adaa13dd99e47921.gif\",\"remainLotteryDiamonds\":12349,\"openPayDiamonds\":23007960,\"createTime\":\"2019-10-16 18:36:18\",\"name\":\"普通宝箱\",\"remainLotteryCount\":1204,\"endTime\":\"2020-11-26 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":6990255,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/033724b845c24ba5ad71154fde272394.png\",\"delFlag\":false,\"operatorName\":\"程杰\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜圈\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":181},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-棒棒糖\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":182},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-么么哒\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":183},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-麦克风\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":184},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":185}]\",\"id\":69,\"operatorId\":75,\"rewardLotteryCount\":6990255,\"openRewardDiamonds\":67901769,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/07439930edfe438d91ae3225e4f7b55f.svga\",\"updateTime\":\"2020-06-29 18:33:46\",\"sort\":30,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/0372061d810541408ce861ef4b25f0cd.gif\",\"remainLotteryDiamonds\":12309,\"openPayDiamonds\":69902550,\"createTime\":\"2020-01-11 11:37:53\",\"name\":\"普通宝箱\",\"remainLotteryCount\":196,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":220141,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/2511c04dc722455d97ac5b2b0918624e.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/27/a5100c6fd1a8472f816782f30dcf8728.png\\\",\\\"decorationId\\\":211,\\\"decorationName\\\":\\\"慵懒的猫个人名牌\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":108,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*108\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":124},{\\\"amount\\\":128,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-么么哒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/b1862c0433af400bb279be26c7b54296.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":125},{\\\"amount\\\":158,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-麦克风*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/df66ca7743924bc19884b21f0850f6f2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":126},{\\\"amount\\\":188,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-怦然心动*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/c698791267914296a3143042cec562aa.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":127},{\\\"amount\\\":233,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":128},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":129},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":130},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":132},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":133},{\\\"amount\\\":3344,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":134}]\",\"id\":64,\"operatorId\":34,\"rewardLotteryCount\":220141,\"openRewardDiamonds\":46252083,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/69aca8cdb1334982b8bbebc8b933edb2.svga\",\"updateTime\":\"2021-06-02 15:00:48\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/40fcd04e304f43cb99a4a6179cf5c7fe.gif\",\"remainLotteryDiamonds\":472689,\"openPayDiamonds\":46229610,\"createTime\":\"2019-10-16 18:38:39\",\"name\":\"白银宝箱\",\"remainLotteryCount\":1462,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"\",\"openedTimes\":518608,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/6a9ab16d9e3b4f4abb9a4ab941c68603.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/30a3ad49fb3f4f6e861d88d9b4a0b5b1.png\\\",\\\"decorationId\\\":198,\\\"decorationName\\\":\\\"荧光棒聊天气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":1,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-魔力法典*1 天\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/8/cd1aa153172c4d01be78b517f747273e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":396},{\\\"amount\\\":10,\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*10\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/8/20/c039afd10fde4130a59f4456e6042b1b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":395},{\\\"amount\\\":99,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-水晶粽\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/19/7632797d0a5b474ea75dbfd42af5b5ca.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":394}]\",\"startTime\":\"2020-11-16 00:00:00\",\"id\":70,\"operatorId\":34,\"rewardLotteryCount\":518608,\"openRewardDiamonds\":105724795,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/94e9405737184047b889bf1dfa34a82f.svga\",\"updateTime\":\"2020-11-19 15:36:17\",\"sort\":20,\"labelUrl\":\"null\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/b9594572f4b14fbb8959250a6bc95348.gif\",\"remainLotteryDiamonds\":9777,\"openPayDiamonds\":108906423,\"createTime\":\"2020-01-11 11:46:04\",\"name\":\"白银宝箱\",\"remainLotteryCount\":263,\"endTime\":\"2020-11-18 23:59:59\",\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"2\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"3\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":90508,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/6b6c614fc95745f39ec314b2e9f3b178.png\",\"delFlag\":false,\"operatorName\":\"梁鑫宇\",\"coverThreshold\":0,\"openType\":2,\"lotteryRules\":\"[{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":135},{\\\"isNotice\\\":0,\\\"name\\\":\\\"钻石*388\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":136},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":137},{\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":138},{\\\"isNotice\\\":1,\\\"name\\\":\\\"钻石*788\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":139},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":140},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":141},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":142},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":143},{\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯*\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":144},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-花蝴蝶*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":145},{\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-精灵梦*1 天\\\",\\\"isNew\\\":0,\\\"lotteryId\\\":146}]\",\"id\":65,\"operatorId\":55,\"rewardLotteryCount\":90508,\"openRewardDiamonds\":54735115,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/7b15cd29764944248a0c0414c3049d8f.svga\",\"updateTime\":\"2020-01-11 12:06:41\",\"sort\":10,\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2019/10/16/3184f5dda96540798785f5083be68a37.gif\",\"remainLotteryDiamonds\":917525,\"openPayDiamonds\":60278328,\"createTime\":\"2019-10-16 18:42:34\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":1492,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":503800,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/758741d4cb064df29b1307700b3dff3b.png\",\"delFlag\":false,\"operatorName\":\"周雄军\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/516116c635e94a1fb1209949ed5f7d5d.png\\\",\\\"decorationId\\\":195,\\\"decorationName\\\":\\\"金光闪闪聊天室气泡\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":222,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-玫瑰花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/1590cfd67d094941b0da7873817a118d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":196},{\\\"amount\\\":233,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-可爱小熊\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/15/ca7c4bb6a7ab48568700a9c7054ff595.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":197},{\\\"amount\\\":266,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-天使之心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/eeb7149dab284628b3cb25bd24badbd9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":198},{\\\"amount\\\":520,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-果果冰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/6ff7a980c79c4ae9966a9563ffc2bfd6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":199},{\\\"amount\\\":999,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-樱花雨\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/7/538fef96eb5b4e049ec598c460d6f1d6.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":200},{\\\"amount\\\":1314,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱的告白\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/68590b3f78ae4dff856740a50ff69314.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":201},{\\\"amount\\\":3344,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-永恒印记\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/3e222c46777a4eec8d4358f972ac2012.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":202},{\\\"amount\\\":7777,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-爱神之箭\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/9/5/6dc3b818f3a24bad8d134c2c5fcb2275.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":203},{\\\"amount\\\":26666,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-心愿灯\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/8/8/0cb0ee2e30474882ac51c8eaf388568b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":204},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-镜花*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":205},{\\\"amount\\\":555,\\\"isNotice\\\":1,\\\"name\\\":\\\"座位框-水月*1天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":206},{\\\"amount\\\":300,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-粉色情书\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/6/ba800a3a0c1a464e9c7ffc23b78ca267.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":271}]\",\"id\":71,\"operatorId\":43,\"rewardLotteryCount\":503800,\"openRewardDiamonds\":330353108,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/44d1e4141c1b466d91e3b71b55433fa4.svga\",\"updateTime\":\"2021-07-21 16:45:28\",\"sort\":10,\"labelUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/da78ee4e4ddb4f1da9b7790da0dac395.png\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/1/11/f2a457bb826840ceb8c31cc0c60057bd.gif\",\"remainLotteryDiamonds\":154510768,\"openPayDiamonds\":335530800,\"createTime\":\"2020-01-11 12:01:31\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":111123023,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":666,\\\"times\\\":1},{\\\"price\\\":3330,\\\"times\\\":5},{\\\"price\\\":6660,\\\"times\\\":10}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"2\",\"openedTimes\":23,\"staticUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/c01e079cf99e48158ee118ba8a005596.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"null\",\"decorationRules\":\"{\\\"usefulDays\\\":9,\\\"decorationUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/8/18a295337581459f858d563307be3b7f.svga\\\",\\\"decorationId\\\":204,\\\"decorationName\\\":\\\"主页特效主页特效\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":50,\\\"isReward\\\":0,\\\"probability\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-森林之星*\\\",\\\"preUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":392},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"probability\\\":100,\\\"isNotice\\\":0,\\\"name\\\":\\\"座位框-萌爪爪*5 天\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":326}]\",\"id\":97,\"operatorId\":34,\"rewardLotteryCount\":23,\"openRewardDiamonds\":980,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/6dae768a45d64da5b0524699a45eff33.svga\",\"updateTime\":\"2021-04-08 18:15:18\",\"sort\":2,\"labelUrl\":\"null\",\"gifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/29/84863253a9c945268c8dd88bc15941a1.gif\",\"remainLotteryDiamonds\":7870,\"openPayDiamonds\":230,\"createTime\":\"2020-06-29 18:51:02\",\"name\":\"普通的\",\"remainLotteryCount\":175,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"}]\",\"isActivate\":true,\"status\":1}],\"pageNum\":1,\"navigatePages\":8,\"total\":8,\"pages\":1,\"size\":8,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-23 16:45:28:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\r\n======本次用例运行消耗时间 268毫秒======\r","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"268毫秒","endTime":"2021-07-23 16:45:28","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:28","status":1}
[2021-07-23 16:45:29.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:29.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:29.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:29.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:29.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:29.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:29.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:29.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:29.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:29.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:29.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:29.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:30 GMT
[2021-07-23 16:45:29.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:29.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:29.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:29.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:29.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:29.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:30.478] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:30:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-07-23 16:45:30.478] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:45:30.478] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:30.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:30.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:30.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:45:30.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:30.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:30.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-bed63a5fcb8a47c7b101f2a72b581473#2203773
[2021-07-23 16:45:30.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:30.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:30.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18306720}
[2021-07-23 16:45:30.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:30.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18306720
[2021-07-23 16:45:30.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:30.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:30.705] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:30.706] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:30.706] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:30.706] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:30.707] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:30.707] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:30.707] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:30.707] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:30.707] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:30 GMT
[2021-07-23 16:45:30.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:30.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:30.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:30.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-23 15:12:41","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:30.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:30.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:30.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-07-23 16:45:30.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:30.794] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-bed63a5fcb8a47c7b101f2a72b581473#2203773
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyRemark=我是test,想加入公会, guildId=232}
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyRemark=%E6%88%91%E6%98%AFtest%EF%BC%8C%E6%83%B3%E5%8A%A0%E5%85%A5%E5%85%AC%E4%BC%9A&guildId=232
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:30.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:30.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:30.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:30.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:31 GMT
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"你的入会申请提交成功","status":200}
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:30.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:30.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-07-23 16:45:30.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:31.062] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=999999, guildCode=18306720, pageNum=1}
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=999999&guildCode=18306720&pageNum=1
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:31.063] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:31.156] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:31.156] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:31.156] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:31.156] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:31.156] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:31 GMT
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":999999,"endRow":1,"list":[{"roomNums":1,"guildStatus":2,"mobile":"13823774131","description":"欢迎来到我的公会","updateTime":"2021-07-23 15:12:41","leaderNickName":"test","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"guildMaxNumDesc":"50人以下","curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:31.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:31.158] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:31.158] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:31.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:31.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:31.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:31.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:31.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:31.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:31.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:31.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:31.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-23 16:45:31.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:31.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-23 16:45:31.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:31.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:31.366] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:31 GMT
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:31.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:31.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-23 09:40:23","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-23 16:45:29","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:31.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:31.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:31.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:45:31.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:31.455] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:31.455] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:31.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:45:31.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:31.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:31.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-bed63a5fcb8a47c7b101f2a72b581473#2203773
[2021-07-23 16:45:31.456] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:31.457] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:31.457] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18306720}
[2021-07-23 16:45:31.457] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:31.457] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18306720
[2021-07-23 16:45:31.457] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:31.458] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:31 GMT
[2021-07-23 16:45:31.564] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:31.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:31.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:31.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-23 15:12:41","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:31.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:31.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:31.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-07-23 16:45:31.565] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:31.648] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:31.649] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:31.649] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-07-23 16:45:31.649] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:31.649] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:31.649] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-bed63a5fcb8a47c7b101f2a72b581473#2203773
[2021-07-23 16:45:31.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:31.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:31.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyType=1, pageSize=20, pageNum=1, guildId=232}
[2021-07-23 16:45:31.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:31.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyType=1&pageSize=20&pageNum=1&guildId=232
[2021-07-23 16:45:31.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:31.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:31.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:31.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:31.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:31.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:31.971] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:31.971] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:31.971] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:31.971] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:31.971] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:32 GMT
[2021-07-23 16:45:31.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:31.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:31.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:31.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"无权限操作,请联系公会管理员","status":500}
[2021-07-23 16:45:31.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:31.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:31.974] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testAuditGuild--Test Mthod Failure
[2021-07-23 16:45:31.974] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 16:45:31:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-07-23 16:45:31.974] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 01秒496毫秒======
[2021-07-23 16:45:31.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:31.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:31.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-07-23 16:45:30:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-bed63a5fcb8a47c7b101f2a72b581473#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:30 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 15:12:41\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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://t3-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-bed63a5fcb8a47c7b101f2a72b581473#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyRemark\":\"我是test,想加入公会\",\"guildId\":232}\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=232\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:31 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://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":999999,\"guildCode\":\"18306720\",\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=999999&guildCode=18306720&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:31 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":999999,\"endRow\":1,\"list\":[{\"roomNums\":1,\"guildStatus\":2,\"mobile\":\"13823774131\",\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 15:12:41\",\"leaderNickName\":\"test\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"guildMaxNumDesc\":\"50人以下\",\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:31 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-23 09:40:23\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-23 16:45:29\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-bed63a5fcb8a47c7b101f2a72b581473#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:31 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 15:12:41\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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://t3-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-bed63a5fcb8a47c7b101f2a72b581473#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyType\":\"1\",\"pageSize\":\"20\",\"pageNum\":\"1\",\"guildId\":232}\r\n###Http Request queryString after URLEncoder### :\r\napplyType=1&pageSize=20&pageNum=1&guildId=232\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:32 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"无权限操作,请联系公会管理员\",\"status\":500}\r\n===================================\r\n======2021-07-23 16:45:31:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 01秒496毫秒======\r","caseMessage":"java.lang.NullPointerException\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.applyList(CosPlyaPlayerServiceImpl.java:693)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.auditGuild(CosPlyaPlayerServiceImpl.java:716)\r\n\tat com.pipi.invoker.CosPlayerTest.testAuditGuild(CosPlayerTest.java:143)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\n","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒496毫秒","endTime":"2021-07-23 16:45:31","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:30","status":2}
[2021-07-23 16:45:33.107] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:33.107] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:33.107] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:33.107] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:33.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:33.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:33.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:33.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:33.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:33.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:33.109] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:33.109] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:33 GMT
[2021-07-23 16:45:33.109] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:33.109] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:33.109] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:33.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:33.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:33.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:38.117] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:38:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-07-23 16:45:38.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-23 16:45:38.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:38.195] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:38.196] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:38.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:38.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:38.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:38.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:38.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:38.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:38.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:38.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:38.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:38 GMT
[2021-07-23 16:45:38.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:38.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:38.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:38.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":5,"navigatepageNums":[1,2,3,4,5],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":98,"virtualProductId":382,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/14ac61ab60bf4971a8b1db08cf6c7c96.png","createTime":"2021-05-13 16:50:30","refType":1,"id":10,"virtualProductId":382,"content":"使用表白卡让麦上的小哥哥对你表白","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/153fff74da82423ca8d46d16f8a9b8a7.png","type":1,"hotValue":50,"singleShow":true,"playDesc":"","giftVersion":4,"price":0,"remarkUrl":"","id":382,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/15665ead5c5448ecb73a85a9488a8d4d.svga","giftType":2,"sort":5010,"charmValue":0,"limitUpdateTime":"2021-05-13 16:50:30","useStatus":1,"name":"表白卡","isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":4,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 17:02:07","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-13 16:50:30"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":3,"createTime":"2020-11-18 18:19:32","playMethod":"[{\"roomBannerId\":2,\"listBannerId\":1,\"chainNum\":\"1\"},{\"roomBannerId\":2,\"listBannerId\":1,\"chainNum\":\"2\"}]","id":87,"virtualProductId":328},{"playType":1,"createTime":"2020-11-20 18:12:46","playMethod":"[{\"chainNum\":\"3\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4ce4c59d9f945cba7ce5ba743164386.svga\",\"remark\":\"三生三世\"}]","id":92,"virtualProductId":328}],"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/a0af3ab1caa84456b271c297fb0ac5be.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/9a45246eab5249619eafa6f93f0330fa.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"","giftVersion":88,"price":0,"remarkUrl":"","id":328,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/5fa8325c4bea47fb9c2ad12193517d62.svga","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":false,"permissionDesc":"","remark":"","delFlag":false,"obtainType":3,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":106,"virtualProductId":390,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":3,"createTime":"2021-07-07 11:50:04","playMethod":"[{\"roomBannerId\":21,\"listBannerId\":22,\"chainNum\":\"1\"}]","id":95,"virtualProductId":390}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/138fa52d528a4c409aa3d65d19b79d9f.png","objectVapUrl":"","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":100,"remarkUrl":"","id":390,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/0780aca1e7704884ab6450d6d5b5958c.svga","giftType":1,"sort":4999,"charmValue":100,"limitUpdateTime":"2021-07-07 11:50:04","useStatus":1,"name":"冲天火箭","isWall":true,"permissionDesc":"","remark":"火箭玩法","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":2,"updateTime":"2021-07-07 11:50:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-07 11:50:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":88,"virtualProductId":331,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/b0307222fcb646d0b95110656c037124.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":128,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1062960891aa4a99b197e8be5307da07.png","id":331,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c149f8f843604204b146160d92a38346.svga","giftType":1,"sort":4900,"charmValue":128,"limitUpdateTime":"2020-11-24 19:48:45","useStatus":1,"name":"星缤乐","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-11-24 19:48:45"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":108,"virtualProductId":391,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/0bbe351d0d1745c1980e4090cb27903f.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":3555,"remarkUrl":"","id":391,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/7b6454a98bab4c368ee4689c44f242fe.svga","giftType":1,"sort":4386,"charmValue":3555,"limitUpdateTime":"2021-07-21 16:35:54","useStatus":1,"name":"小龙虾","isWall":true,"permissionDesc":"","remark":"五一活动限定聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":3,"updateTime":"2021-07-21 16:35:54","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-21 16:35:54"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":109,"virtualProductId":392,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-07-21 16:40:07","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/21/e233abc98f504bdab8b8397b74ede5b2.svga\",\"vapUrl\":\"\",\"remark\":\"1\"}]","id":96,"virtualProductId":392}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/560811f7b27241be9b2711ff8ff993c4.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":1,"price":52000,"remarkUrl":"","id":392,"giftType":1,"sort":4313,"charmValue":52000,"limitUpdateTime":"2021-07-21 16:40:07","useStatus":1,"name":"月下美人","isWall":true,"permissionDesc":"","remark":"礼盒活动礼物·即将在返场活动中回归","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":4,"updateTime":"2021-07-21 16:40:07","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-07-21 16:40:07"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":12,"price":1,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/d927d02a752f41eab8590cd0bfa4ba56.png","id":327,"objectGifUrl":"","giftType":1,"sort":1130,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":89,"virtualProductId":332,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c649a40efa174ef9b3ddcba6c28b6a98.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":1314,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/ecb52148aef347f29a37e6e53fb8e0bb.png","id":332,"objectGifUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/28e07534d6654d1e973eef38f9dbb819.svga","giftType":1,"sort":1121,"charmValue":1314,"limitUpdateTime":"2020-11-24 19:51:10","useStatus":1,"name":"环游星河","isWall":true,"permissionDesc":"","remark":"111","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":2,"updateTime":"2021-06-02 11:03:41","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2020-11-24 19:51:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":24,"virtualProductId":326,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:06:05","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/22/e07679f822684aabba34140d5a894cb5.svga\",\"remark\":\"一心一意\"},{\"chainNum\":\"3\",\"showUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/590d7c47f5414a189f5247be6f0d6b02.svga\",\"remark\":\"三生三世\"}]","id":23,"virtualProductId":326},{"playType":3,"createTime":"2020-11-19 15:14:25","playMethod":"[{\"roomBannerId\":2,\"listBannerId\":1,\"chainNum\":\"3\"}]","id":91,"virtualProductId":326}],"virtualProductActivity":{"backgroundUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/688f3a03e80c443aa4aefd240fa5bf00.png","createTime":"2020-06-23 18:57:20","refType":1,"startTime":"2020-11-21 00:00:00","id":1,"endTime":"2020-11-21 23:59:59","virtualProductId":326,"content":"百度2","activityH5Url":"http://www.baidu.com","status":1},"virtualProduct":{"isUse":true,"previewUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/d86d5b1ad31c448697311b2b0f2c1d50.webp","objectUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png","type":1,"hotValue":50,"singleShow":true,"playDesc":"","giftVersion":44,"price":0,"remarkUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/2e721e9dc9754686b677c2ad616d1b4e.png","id":326,"objectGifUrl":"","giftType":2,"sort":1120,"charmValue":0,"limitUpdateTime":"2020-06-22 17:06:06","useStatus":1,"name":"森林之星","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":4,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-22 17:06:06"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":22,"virtualProductId":324,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:01:51","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/015d9ca65cf7438db1e465761c5a876b.svga\",\"remark\":\"一生一世\"}]","id":21,"virtualProductId":324}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/de1adcc582c449f1bf32722ab9a766ca.png","type":1,"hotValue":200,"singleShow":true,"playDesc":"","giftVersion":11,"price":0,"remarkUrl":"","id":324,"objectGifUrl":"","giftType":2,"sort":1100,"charmValue":0,"limitUpdateTime":"2020-06-22 17:01:52","useStatus":1,"name":"永恒之冠","isWall":true,"permissionDesc":"","remark":"","delFlag":false,"obtainType":4,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-29 23:04:28","labelUrl":"","createTime":"2020-06-22 17:01:52"}}],"pageNum":1,"navigatePages":8,"total":46,"pages":5,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:38.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:38.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:38.314] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-07-23 16:45:38.314] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:38:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-07-23 16:45:38.314] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 197毫秒======
[2021-07-23 16:45:38.314] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:38.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:38.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:38.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:38.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-07-23 16:45:38:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&type=1&pageNum=1&useStatus=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:38 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":5,\"navigatepageNums\":[1,2,3,4,5],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":98,\"virtualProductId\":382,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/14ac61ab60bf4971a8b1db08cf6c7c96.png\",\"createTime\":\"2021-05-13 16:50:30\",\"refType\":1,\"id\":10,\"virtualProductId\":382,\"content\":\"使用表白卡让麦上的小哥哥对你表白\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/153fff74da82423ca8d46d16f8a9b8a7.png\",\"type\":1,\"hotValue\":50,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":4,\"price\":0,\"remarkUrl\":\"\",\"id\":382,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/13/15665ead5c5448ecb73a85a9488a8d4d.svga\",\"giftType\":2,\"sort\":5010,\"charmValue\":0,\"limitUpdateTime\":\"2021-05-13 16:50:30\",\"useStatus\":1,\"name\":\"表白卡\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 17:02:07\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-13 16:50:30\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":3,\"createTime\":\"2020-11-18 18:19:32\",\"playMethod\":\"[{\\\"roomBannerId\\\":2,\\\"listBannerId\\\":1,\\\"chainNum\\\":\\\"1\\\"},{\\\"roomBannerId\\\":2,\\\"listBannerId\\\":1,\\\"chainNum\\\":\\\"2\\\"}]\",\"id\":87,\"virtualProductId\":328},{\"playType\":1,\"createTime\":\"2020-11-20 18:12:46\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"3\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/20/b4ce4c59d9f945cba7ce5ba743164386.svga\\\",\\\"remark\\\":\\\"三生三世\\\"}]\",\"id\":92,\"virtualProductId\":328}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/a0af3ab1caa84456b271c297fb0ac5be.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/9a45246eab5249619eafa6f93f0330fa.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":88,\"price\":0,\"remarkUrl\":\"\",\"id\":328,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/5fa8325c4bea47fb9c2ad12193517d62.svga\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":false,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":106,\"virtualProductId\":390,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":3,\"createTime\":\"2021-07-07 11:50:04\",\"playMethod\":\"[{\\\"roomBannerId\\\":21,\\\"listBannerId\\\":22,\\\"chainNum\\\":\\\"1\\\"}]\",\"id\":95,\"virtualProductId\":390}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/138fa52d528a4c409aa3d65d19b79d9f.png\",\"objectVapUrl\":\"\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":100,\"remarkUrl\":\"\",\"id\":390,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/7/0780aca1e7704884ab6450d6d5b5958c.svga\",\"giftType\":1,\"sort\":4999,\"charmValue\":100,\"limitUpdateTime\":\"2021-07-07 11:50:04\",\"useStatus\":1,\"name\":\"冲天火箭\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"火箭玩法\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-07-07 11:50:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-07 11:50:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":88,\"virtualProductId\":331,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/b0307222fcb646d0b95110656c037124.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":128,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/1062960891aa4a99b197e8be5307da07.png\",\"id\":331,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c149f8f843604204b146160d92a38346.svga\",\"giftType\":1,\"sort\":4900,\"charmValue\":128,\"limitUpdateTime\":\"2020-11-24 19:48:45\",\"useStatus\":1,\"name\":\"星缤乐\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-11-24 19:48:45\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":108,\"virtualProductId\":391,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/0bbe351d0d1745c1980e4090cb27903f.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":3555,\"remarkUrl\":\"\",\"id\":391,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/7b6454a98bab4c368ee4689c44f242fe.svga\",\"giftType\":1,\"sort\":4386,\"charmValue\":3555,\"limitUpdateTime\":\"2021-07-21 16:35:54\",\"useStatus\":1,\"name\":\"小龙虾\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"五一活动限定聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":3,\"updateTime\":\"2021-07-21 16:35:54\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-21 16:35:54\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":109,\"virtualProductId\":392,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-07-21 16:40:07\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/7/21/e233abc98f504bdab8b8397b74ede5b2.svga\\\",\\\"vapUrl\\\":\\\"\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":96,\"virtualProductId\":392}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2021/7/21/560811f7b27241be9b2711ff8ff993c4.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":1,\"price\":52000,\"remarkUrl\":\"\",\"id\":392,\"giftType\":1,\"sort\":4313,\"charmValue\":52000,\"limitUpdateTime\":\"2021-07-21 16:40:07\",\"useStatus\":1,\"name\":\"月下美人\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"礼盒活动礼物·即将在返场活动中回归\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":4,\"updateTime\":\"2021-07-21 16:40:07\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-07-21 16:40:07\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/22/492eb25bc6ca4261bcd892313f2c42ba.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":12,\"price\":1,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/d927d02a752f41eab8590cd0bfa4ba56.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1130,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":89,\"virtualProductId\":332,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/c649a40efa174ef9b3ddcba6c28b6a98.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":1314,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/24/ecb52148aef347f29a37e6e53fb8e0bb.png\",\"id\":332,\"objectGifUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/28e07534d6654d1e973eef38f9dbb819.svga\",\"giftType\":1,\"sort\":1121,\"charmValue\":1314,\"limitUpdateTime\":\"2020-11-24 19:51:10\",\"useStatus\":1,\"name\":\"环游星河\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"111\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":2,\"updateTime\":\"2021-06-02 11:03:41\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2020-11-24 19:51:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":24,\"virtualProductId\":326,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:06:05\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/22/e07679f822684aabba34140d5a894cb5.svga\\\",\\\"remark\\\":\\\"一心一意\\\"},{\\\"chainNum\\\":\\\"3\\\",\\\"showUrl\\\":\\\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/590d7c47f5414a189f5247be6f0d6b02.svga\\\",\\\"remark\\\":\\\"三生三世\\\"}]\",\"id\":23,\"virtualProductId\":326},{\"playType\":3,\"createTime\":\"2020-11-19 15:14:25\",\"playMethod\":\"[{\\\"roomBannerId\\\":2,\\\"listBannerId\\\":1,\\\"chainNum\\\":\\\"3\\\"}]\",\"id\":91,\"virtualProductId\":326}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/688f3a03e80c443aa4aefd240fa5bf00.png\",\"createTime\":\"2020-06-23 18:57:20\",\"refType\":1,\"startTime\":\"2020-11-21 00:00:00\",\"id\":1,\"endTime\":\"2020-11-21 23:59:59\",\"virtualProductId\":326,\"content\":\"百度2\",\"activityH5Url\":\"http://www.baidu.com\",\"status\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/d86d5b1ad31c448697311b2b0f2c1d50.webp\",\"objectUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/19/33cbab10ae9a46e995cdb624b738934d.png\",\"type\":1,\"hotValue\":50,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":44,\"price\":0,\"remarkUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/11/19/2e721e9dc9754686b677c2ad616d1b4e.png\",\"id\":326,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":1120,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-22 17:06:06\",\"useStatus\":1,\"name\":\"森林之星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:06:06\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":22,\"virtualProductId\":324,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:01:51\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/6/23/015d9ca65cf7438db1e465761c5a876b.svga\\\",\\\"remark\\\":\\\"一生一世\\\"}]\",\"id\":21,\"virtualProductId\":324}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/6/23/de1adcc582c449f1bf32722ab9a766ca.png\",\"type\":1,\"hotValue\":200,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":11,\"price\":0,\"remarkUrl\":\"\",\"id\":324,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":1100,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-22 17:01:52\",\"useStatus\":1,\"name\":\"永恒之冠\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"\",\"delFlag\":false,\"obtainType\":4,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-29 23:04:28\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:01:52\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":46,\"pages\":5,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-23 16:45:38:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\r\n======本次用例运行消耗时间 197毫秒======\r","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"197毫秒","endTime":"2021-07-23 16:45:38","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:38","status":1}
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:38.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:38.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:38 GMT
[2021-07-23 16:45:38.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:38.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:38.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:38.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:38.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:38.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:39.128] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:39:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======
[2021-07-23 16:45:39.128] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:45:39.128] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:39.205] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:39.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:39.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:45:39.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:39.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:39.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-bed63a5fcb8a47c7b101f2a72b581473#2203773
[2021-07-23 16:45:39.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:39.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:39.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18306720}
[2021-07-23 16:45:39.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:39.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18306720
[2021-07-23 16:45:39.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:39.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:39 GMT
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-23 15:12:41","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:39.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:39.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:39.310] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGuildSearch--Test Mthod Success
[2021-07-23 16:45:39.310] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:39:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======
[2021-07-23 16:45:39.311] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 182毫秒======
[2021-07-23 16:45:39.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:39.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:39.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:39.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:39.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"搜索公会","caseLog":"======2021-07-23 16:45:39:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-bed63a5fcb8a47c7b101f2a72b581473#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:39 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 15:12:41\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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-07-23 16:45:39:用例【com.pipi.invoker.CosPlayerTest.testGuildSearch】结束======\r\n======本次用例运行消耗时间 182毫秒======\r","caseName":"testGuildSearch","className":"com.pipi.invoker.CosPlayerTest","durationTime":"182毫秒","endTime":"2021-07-23 16:45:39","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:39","status":1}
[2021-07-23 16:45:39.622] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:39.622] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:39.622] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:39.622] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:39.622] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:39.622] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:39.622] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:39.622] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:39.622] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:39.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:39.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:39.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:38 GMT
[2021-07-23 16:45:39.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:39.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:39.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:39.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:39.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:39.623] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:40.127] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:40:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======
[2021-07-23 16:45:40.127] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:40.128] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:40.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:40.349] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:40.349] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:40.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:40.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:40.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:40.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:40.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:40.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:40.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:40 GMT
[2021-07-23 16:45:40.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:40.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:40.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:40.352] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":64.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-23 09:40:20","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"137730220","loginTime":"2021-07-23 16:45:28","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":45698,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:40.352] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:40.352] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:40.352] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-23 16:45:40.353] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1, balance=0.00, isSearch=true, moneyType=1, mobile=13823774134, nickname=test, remark=1, chargeBalance=64.00, userId=2203773, searchValue=2203773}
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=test&remark=1&chargeBalance=64.00&userId=2203773&searchValue=2203773
[2021-07-23 16:45:40.442] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:40.443] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:40.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:40.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:40.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:40.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:40.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:40.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:40.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:40.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:40.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:40 GMT
[2021-07-23 16:45:40.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:40.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:40.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:40.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-23 16:45:40.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:40.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:40.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testMoneyDetailsSave--Test Mthod Success
[2021-07-23 16:45:40.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:40:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======
[2021-07-23 16:45:40.722] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 595毫秒======
[2021-07-23 16:45:40.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:40.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:40.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充皮皮币","caseLog":"======2021-07-23 16:45:40:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:40 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":64.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-23 09:40:20\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"137730220\",\"loginTime\":\"2021-07-23 16:45:28\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":45698,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/save\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"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\":\"test\",\"remark\":\"1\",\"chargeBalance\":\"64.00\",\"userId\":\"2203773\",\"searchValue\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1&balance=0.00&isSearch=true&moneyType=1&mobile=13823774134&nickname=test&remark=1&chargeBalance=64.00&userId=2203773&searchValue=2203773\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:40 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-23 16:45:40:用例【com.pipi.invoker.CosPlayerTest.testMoneyDetailsSave】结束======\r\n======本次用例运行消耗时间 595毫秒======\r","caseName":"testMoneyDetailsSave","className":"com.pipi.invoker.CosPlayerTest","durationTime":"595毫秒","endTime":"2021-07-23 16:45:40","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:40","status":1}
[2021-07-23 16:45:40.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:40.993] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:40.993] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:40.993] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:40.993] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:41 GMT
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:40.994] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:41.496] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:41:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======
[2021-07-23 16:45:41.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:41.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:41.576] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:41.577] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:41.577] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:41.577] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:41.577] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:41.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:41.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:41.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:41.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-23 16:45:41.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:41.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-23 16:45:41.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:41.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:41.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:41.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:41.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:41.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:41.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:41 GMT
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-23 09:40:23","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-23 16:45:29","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:41.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:41.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/room/list
[2021-07-23 16:45:41.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:41.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/room/list
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, pageNum=1, userId=2203657}
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&pageNum=1&userId=2203657
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:41.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:41.808] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:42 GMT
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"endRow":1,"list":[{"hostUserId":2203657,"scoreWeight":2,"roomInfoTagList":[],"roomStatus":1,"password":"123456","isOpenChat":true,"roomCategoryName":"派单","id":3085,"virtualPeople":1,"roomType":1,"realPeople":0,"roomNo":"TEST833760","recommendWeight":0,"sort":999,"guildId":232,"roomName":"我的厅1","roomInfoTagConfigList":[],"roomVipCount":15,"basicHotValue":0,"isActivate":true,"isHot":false,"template":1,"hostMobile":"13823774131","remark":"我的厅1","roomCode":"TEST833760","guildCode":"18306720","sortWeight":0,"guildName":"心玄的公会","isLock":false,"roomIcon":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg","orderRoomSerial":"1","openTime":"2021-07-06 17:32:09","roomCategoryId":2,"collectCount":0,"micDuration":900,"isShow":true,"hostUserName":"test","createTime":"2021-07-06 17:32:09"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:41.809] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:41.810] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testRoomList--Test Mthod Success
[2021-07-23 16:45:41.810] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:41:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======
[2021-07-23 16:45:41.810] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 314毫秒======
[2021-07-23 16:45:41.810] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:41.811] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:41.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"查询房间","caseLog":"======2021-07-23 16:45:41:用例【com.pipi.invoker.CosPlayerTest.testRoomList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:41 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-23 09:40:23\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-23 16:45:29\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/room/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":10,\"pageNum\":1,\"userId\":\"2203657\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=10&pageNum=1&userId=2203657\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:42 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"endRow\":1,\"list\":[{\"hostUserId\":2203657,\"scoreWeight\":2,\"roomInfoTagList\":[],\"roomStatus\":1,\"password\":\"123456\",\"isOpenChat\":true,\"roomCategoryName\":\"派单\",\"id\":3085,\"virtualPeople\":1,\"roomType\":1,\"realPeople\":0,\"roomNo\":\"TEST833760\",\"recommendWeight\":0,\"sort\":999,\"guildId\":232,\"roomName\":\"我的厅1\",\"roomInfoTagConfigList\":[],\"roomVipCount\":15,\"basicHotValue\":0,\"isActivate\":true,\"isHot\":false,\"template\":1,\"hostMobile\":\"13823774131\",\"remark\":\"我的厅1\",\"roomCode\":\"TEST833760\",\"guildCode\":\"18306720\",\"sortWeight\":0,\"guildName\":\"心玄的公会\",\"isLock\":false,\"roomIcon\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/16/9729215f7fad47a1a5d511b9a710620e.jpg\",\"orderRoomSerial\":\"1\",\"openTime\":\"2021-07-06 17:32:09\",\"roomCategoryId\":2,\"collectCount\":0,\"micDuration\":900,\"isShow\":true,\"hostUserName\":\"test\",\"createTime\":\"2021-07-06 17:32:09\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-23 16:45:41:用例【com.pipi.invoker.CosPlayerTest.testRoomList】结束======\r\n======本次用例运行消耗时间 314毫秒======\r","caseName":"testRoomList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"314毫秒","endTime":"2021-07-23 16:45:41","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:41","status":1}
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:42 GMT
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:41.998] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:42.511] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:42:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======
[2021-07-23 16:45:42.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:42.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:42.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:42.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:42.666] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:42.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:42.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:42.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:42.667] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:42.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:42.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:42.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:42.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:42 GMT
[2021-07-23 16:45:42.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:42.668] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:42.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:42.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-23 09:40:23","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-23 16:45:29","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:42.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:42.669] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:42.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/api/v4/room/gift/send
[2021-07-23 16:45:42.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:42.746] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/api/v4/room/gift/send
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-bed63a5fcb8a47c7b101f2a72b581473#2203773
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {actionType=1, amount=1, roomNo=TEST833760, productId=331, userIds=2203657, timestamp=1621828487580}
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - actionType=1&amount=1&roomNo=TEST833760&productId=331&userIds=2203657×tamp=1621828487580
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:42.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:43.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:43.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:43.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:43.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:43.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:43.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:43.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:43.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:43.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:43 GMT
[2021-07-23 16:45:43.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:43.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:43.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:43.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"赠送成功","data":"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaXRZ9hYkLN/8PcSh0ZEBCE5OjCrf4dwupqUmBsYFFuyPpRvNbGzKIf6ld1huPz3Qw/u4s1kN5duTtoJyJOsAuHcWgfMZYS8jE5Ry3Rp8kV/VWNATirqs/qkpngKeJ+LLhC3xjf4wm5gVbGmw9gEc5ZgpM7D6JPa1wLDO9KtWi3WTgNIvJmhRDW3jvRqV5wbuO84l/NFCRWQLo395AZMn8sCr+UaPITSIpiJxOJ9cMEI2ro2LVe68xuVJIbRtDjOIPSJNrus1DdhOi+J2QE5TnANwa0XrQI0wkmZWbBm9hO5QsvtqodeVZJbpfVg5FlnArvFOtoS88LLKKQqmprYMd2Q=","status":200}
[2021-07-23 16:45:43.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:43.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:43.494] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testSend--Test Mthod Success
[2021-07-23 16:45:43.494] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:43:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======
[2021-07-23 16:45:43.494] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 983毫秒======
[2021-07-23 16:45:43.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:43.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:43.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:43.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:43.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:43.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:43.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:43.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:43.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:43.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:43.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:43.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:43.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:43.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"送礼物","caseLog":"======2021-07-23 16:45:42:用例【com.pipi.invoker.CosPlayerTest.testSend】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:42 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-23 09:40:23\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-23 16:45:29\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-app.apeiwan.com/api/v4/room/gift/send\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-bed63a5fcb8a47c7b101f2a72b581473#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"actionType\":\"1\",\"amount\":\"1\",\"roomNo\":\"TEST833760\",\"productId\":\"331\",\"userIds\":\"2203657\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactionType=1&amount=1&roomNo=TEST833760&productId=331&userIds=2203657×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\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:43 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"赠送成功\",\"data\":\"Dk0+G0M/Z6Am18+qWFmMjyGwB7cupKGXWxdWH6vgxPdjflyFXyGRoi4uT81l9N3PKFIoQ3y7K7Xg6/YNL2ctaXRZ9hYkLN/8PcSh0ZEBCE5OjCrf4dwupqUmBsYFFuyPpRvNbGzKIf6ld1huPz3Qw/u4s1kN5duTtoJyJOsAuHcWgfMZYS8jE5Ry3Rp8kV/VWNATirqs/qkpngKeJ+LLhC3xjf4wm5gVbGmw9gEc5ZgpM7D6JPa1wLDO9KtWi3WTgNIvJmhRDW3jvRqV5wbuO84l/NFCRWQLo395AZMn8sCr+UaPITSIpiJxOJ9cMEI2ro2LVe68xuVJIbRtDjOIPSJNrus1DdhOi+J2QE5TnANwa0XrQI0wkmZWbBm9hO5QsvtqodeVZJbpfVg5FlnArvFOtoS88LLKKQqmprYMd2Q=\",\"status\":200}\r\n===================================\r\n======2021-07-23 16:45:43:用例【com.pipi.invoker.CosPlayerTest.testSend】结束======\r\n======本次用例运行消耗时间 983毫秒======\r","caseName":"testSend","className":"com.pipi.invoker.CosPlayerTest","durationTime":"983毫秒","endTime":"2021-07-23 16:45:43","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:42","status":1}
[2021-07-23 16:45:43.910] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:43.911] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:43.911] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:43.911] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:43.911] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:43.911] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:43.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:43.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:43.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:43.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:43.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:43.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:44 GMT
[2021-07-23 16:45:43.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:43.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:43.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:43.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:43.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:43.913] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:44.424] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:44:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======
[2021-07-23 16:45:44.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-07-23 16:45:44.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:44.499] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:44.499] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:44.499] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/list
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-bed63a5fcb8a47c7b101f2a72b581473#2203773
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {roomNo=TEST833760, type=2}
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - roomNo=TEST833760&type=2
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:44.500] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:44 GMT
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:44.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":[],"status":200}
[2021-07-23 16:45:44.614] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:44.614] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:44.614] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpList--Test Mthod Success
[2021-07-23 16:45:44.614] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:44:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======
[2021-07-23 16:45:44.614] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 190毫秒======
[2021-07-23 16:45:44.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:44.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:44.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取上麦、试音申请列表数据","caseLog":"======2021-07-23 16:45:44:用例【com.pipi.invoker.CosPlayerTest.testUpList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-bed63a5fcb8a47c7b101f2a72b581473#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"roomNo\":\"TEST833760\",\"type\":\"2\"}\r\n###Http Request queryString after URLEncoder### :\r\nroomNo=TEST833760&type=2\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:44 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":[],\"status\":200}\r\n===================================\r\n======2021-07-23 16:45:44:用例【com.pipi.invoker.CosPlayerTest.testUpList】结束======\r\n======本次用例运行消耗时间 190毫秒======\r","caseName":"testUpList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"190毫秒","endTime":"2021-07-23 16:45:44","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:44","status":1}
[2021-07-23 16:45:44.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:44.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:44.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:44.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:44.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:44.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:44.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:44.962] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:44.962] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:44.962] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:44.962] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:44.962] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:45 GMT
[2021-07-23 16:45:44.962] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:44.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:44.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:44.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:44.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:44.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:45.480] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:45:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======
[2021-07-23 16:45:45.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-07-23 16:45:45.480] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:45.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/room/mic/up/size
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-bed63a5fcb8a47c7b101f2a72b581473#2203773
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {types=2, roomNo=TEST833760}
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - types=2&roomNo=TEST833760
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:45.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:45.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:45.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:45.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:45.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:45.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:45.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:45.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:45.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:45.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:45 GMT
[2021-07-23 16:45:45.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:45.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:45.658] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:45.658] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"2":{"alreadyInList":false,"people":0}},"status":200}
[2021-07-23 16:45:45.658] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:45.658] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:45.659] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUpSize--Test Mthod Success
[2021-07-23 16:45:45.659] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:45:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======
[2021-07-23 16:45:45.659] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 179毫秒======
[2021-07-23 16:45:45.660] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:45.660] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:45.661] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"获取聊天室内上麦试音队列、点单队列等","caseLog":"======2021-07-23 16:45:45:用例【com.pipi.invoker.CosPlayerTest.testUpSize】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-bed63a5fcb8a47c7b101f2a72b581473#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"types\":\"2\",\"roomNo\":\"TEST833760\"}\r\n###Http Request queryString after URLEncoder### :\r\ntypes=2&roomNo=TEST833760\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:45 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-07-23 16:45:45:用例【com.pipi.invoker.CosPlayerTest.testUpSize】结束======\r\n======本次用例运行消耗时间 179毫秒======\r","caseName":"testUpSize","className":"com.pipi.invoker.CosPlayerTest","durationTime":"179毫秒","endTime":"2021-07-23 16:45:45","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:45","status":1}
[2021-07-23 16:45:45.941] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:45.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:45.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:45.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:45.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:45.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:45.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:45.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:45.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:45.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:45.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:45.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:45 GMT
[2021-07-23 16:45:45.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:45.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:45.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:45.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:45.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:45.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:46.463] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:46:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======
[2021-07-23 16:45:46.463] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:46.463] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:46.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:46.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:46 GMT
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":65.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-23 09:40:20","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"137730220","loginTime":"2021-07-23 16:45:28","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":45570,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:46.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:46.617] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testUserList--Test Mthod Success
[2021-07-23 16:45:46.617] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:46:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======
[2021-07-23 16:45:46.617] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 154毫秒======
[2021-07-23 16:45:46.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:46.617] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:46.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"用户信息","caseLog":"======2021-07-23 16:45:46:用例【com.pipi.invoker.CosPlayerTest.testUserList】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:46 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":65.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-23 09:40:20\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"137730220\",\"loginTime\":\"2021-07-23 16:45:28\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":45570,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n======2021-07-23 16:45:46:用例【com.pipi.invoker.CosPlayerTest.testUserList】结束======\r\n======本次用例运行消耗时间 154毫秒======\r","caseName":"testUserList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"154毫秒","endTime":"2021-07-23 16:45:46","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:46","status":1}
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:47 GMT
[2021-07-23 16:45:46.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:46.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:46.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:46.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:46.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:46.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:47.472] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:47:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======
[2021-07-23 16:45:47.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:47.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:47.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:47.548] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:47.624] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:47.625] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:47.625] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:47.625] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:47.625] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:47.625] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:47 GMT
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":65.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-23 09:40:20","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"137730220","loginTime":"2021-07-23 16:45:28","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":45570,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-23 16:45:47.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:47.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:47.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:47.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify
[2021-07-23 16:45:47.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:47.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:47.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:47.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:47.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:47.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {ext=1, money=1000, remark=1, type=1, userId=2203773}
[2021-07-23 16:45:47.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:47.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - ext=1&money=1000&remark=1&type=1&userId=2203773
[2021-07-23 16:45:47.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:47.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:47.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:47.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:48 GMT
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"操作成功!","status":200}
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:47.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:47.842] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testVirtualMoneyModify--Test Mthod Success
[2021-07-23 16:45:47.842] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:47:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======
[2021-07-23 16:45:47.842] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 370毫秒======
[2021-07-23 16:45:47.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:47.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:47.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"充钻石","caseLog":"======2021-07-23 16:45:47:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:47 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":65.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-23 09:40:20\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"137730220\",\"loginTime\":\"2021-07-23 16:45:28\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":45570,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/moneyDetails/virtual-money/modify\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"ext\":\"1\",\"money\":1000,\"remark\":\"1\",\"type\":1,\"userId\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\next=1&money=1000&remark=1&type=1&userId=2203773\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:48 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"操作成功!\",\"status\":200}\r\n===================================\r\n======2021-07-23 16:45:47:用例【com.pipi.invoker.CosPlayerTest.testVirtualMoneyModify】结束======\r\n======本次用例运行消耗时间 370毫秒======\r","caseName":"testVirtualMoneyModify","className":"com.pipi.invoker.CosPlayerTest","durationTime":"370毫秒","endTime":"2021-07-23 16:45:47","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:47","status":1}
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:48 GMT
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:48.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:48.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:48.526] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:48:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======
[2021-07-23 16:45:48.526] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-07-23 16:45:48.526] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:48.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/api/v3/virtual-product/lottery-activity
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-bed63a5fcb8a47c7b101f2a72b581473#2203773
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {activityId=64, times=1, roomNo=TEST833760, timestamp=1621828487580}
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - activityId=64×=1&roomNo=TEST833760×tamp=1621828487580
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:48.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:49.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:49.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:49.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:49.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:49.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:49.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:49.206] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:49.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:49.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:49 GMT
[2021-07-23 16:45:49.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:49.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:49.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:49.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"开宝箱成功!","data":"yTOUKWkjuXYWyuS8GD7YNsAfSjgmQCQ1ZSmvK0If8JZ3vXra0BMY9wpUrb9secuIS7QO4N0vgbwEq7tHZbd7Z1db29JkFY2JNfiAJADWWUo/eHoWRcC2e3Q9rowmZDA0fjnlHWU2QkrUeGY/xLb4gmNjXFODslO79I+yxEVgr+Ugf8o68qL81ArhtWmzTgEaWgkR7srIcL9Y1JVTAy73Ssj7tXIZohDwWaW4DiE52LvSK4x+pOI0W4kkQR0DnwW2KXypr1V7MMAojIA1Psd/PjWZQoJxuPVcdzvAc4U9Bf1FoEeEdRIJcZciUG6S+riHCbiYYtj91vvAmS1xdpgM6F1AiaC2heys5ssuz9NTpmOOvlnh8OIB7CQoJ2zjSg/kUsJxHm8dGdpQf86KXiY5bEQ2Fk96zvBWz8rIyTFLyoYcEzAXN3lLB7WnhUr4/Iu10PFzmgSo7KZkJlysoxIUOQNP4wS0kEChLa+Ftg25qPW6kxFAhCAE+b2GkoiyYu6ditQtOdIn8aDyTeucOCcRus8y5f+OXqC8XhhgESBesnCrMqkJD3Y5nSvh/bWHzhWHAi9rK04OG2wYCan5DjcaH4mywSmcwdqewrQs5jiS7I+i4yM0+77q7Z4wEvDk1z6lhySmB4Qw9Ixhi7rG1idaR5lAiAR3g60PEE0i4iEndJT/8x55ecdaqmvApYtFlFZK5Sn+MFV92GWOnI/pNrzvKJ7rGju7j1jkQt65zC+UrjUpiLq/KrDHKuApv+3zCoHBHljQkBhOWH5Xkc6ik8NJIcX410OR9G5BaiO2QQ5kghlPMXjqWv6vESUdQxGqbV9/iDIrxBt1XUwlGxdz8HxtUsnRcTouGHxdIANn0Ed15AedRBa+lJpnYJi+U762FFL9VJuTC9K7JU0SibZqqIlRh0Bg83U64dzUkG4qlQeo7rK0Bs2WqypTGRoV1JPwRlsbk5ggAFpmoIvjHObGotY/R7i7C3DpnFI0SYhaI6iiiYxAClSDK4+kcWRVbmfyDXqz5KoX/1nSzaXBX4I4tMj1qXiin9rYUcmsH0WXHqYbKJsy4tr39cLEUuXuwywJMsSEBrpNh6oFaMP9x1iYziEjn7bFv4DwcClc0Xo3/LEClKsnrLjoAPU86HHhMrxo5MTnmWt0khnDJP40glPRc9WHbNnNjB94lG86BQ/hQbtrE44e+cv6xhkRhYEVRPFxXU1b+D6p7j7Qi8wukiUzUc+YG+af99rwD0CCLcWR5pgxqwl01LDiQ00jTL79kK0GWpiHGjcFiXxQovWLYkCHCTS6bpJqC6GmpCGYUZBNsZLCHWGHZTeH4LQvSxDRXc2VScukR/BLAGjHNnMyIXGkb0iTJ6cdE0PR/72MdKw9NgWrDsrscFjOukU+CxVMr3x8iUvW","status":200}
[2021-07-23 16:45:49.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:49.207] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:49.208] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testLotteryActivity--Test Mthod Success
[2021-07-23 16:45:49.208] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-07-23 16:45:49:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======
[2021-07-23 16:45:49.208] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 682毫秒======
[2021-07-23 16:45:49.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:49.208] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:49.209] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"开宝箱","caseLog":"======2021-07-23 16:45:48:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-bed63a5fcb8a47c7b101f2a72b581473#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"activityId\":\"64\",\"times\":\"1\",\"roomNo\":\"TEST833760\",\"timestamp\":\"1621828487580\"}\r\n###Http Request queryString after URLEncoder### :\r\nactivityId=64×=1&roomNo=TEST833760×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\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:49 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"开宝箱成功!\",\"data\":\"yTOUKWkjuXYWyuS8GD7YNsAfSjgmQCQ1ZSmvK0If8JZ3vXra0BMY9wpUrb9secuIS7QO4N0vgbwEq7tHZbd7Z1db29JkFY2JNfiAJADWWUo/eHoWRcC2e3Q9rowmZDA0fjnlHWU2QkrUeGY/xLb4gmNjXFODslO79I+yxEVgr+Ugf8o68qL81ArhtWmzTgEaWgkR7srIcL9Y1JVTAy73Ssj7tXIZohDwWaW4DiE52LvSK4x+pOI0W4kkQR0DnwW2KXypr1V7MMAojIA1Psd/PjWZQoJxuPVcdzvAc4U9Bf1FoEeEdRIJcZciUG6S+riHCbiYYtj91vvAmS1xdpgM6F1AiaC2heys5ssuz9NTpmOOvlnh8OIB7CQoJ2zjSg/kUsJxHm8dGdpQf86KXiY5bEQ2Fk96zvBWz8rIyTFLyoYcEzAXN3lLB7WnhUr4/Iu10PFzmgSo7KZkJlysoxIUOQNP4wS0kEChLa+Ftg25qPW6kxFAhCAE+b2GkoiyYu6ditQtOdIn8aDyTeucOCcRus8y5f+OXqC8XhhgESBesnCrMqkJD3Y5nSvh/bWHzhWHAi9rK04OG2wYCan5DjcaH4mywSmcwdqewrQs5jiS7I+i4yM0+77q7Z4wEvDk1z6lhySmB4Qw9Ixhi7rG1idaR5lAiAR3g60PEE0i4iEndJT/8x55ecdaqmvApYtFlFZK5Sn+MFV92GWOnI/pNrzvKJ7rGju7j1jkQt65zC+UrjUpiLq/KrDHKuApv+3zCoHBHljQkBhOWH5Xkc6ik8NJIcX410OR9G5BaiO2QQ5kghlPMXjqWv6vESUdQxGqbV9/iDIrxBt1XUwlGxdz8HxtUsnRcTouGHxdIANn0Ed15AedRBa+lJpnYJi+U762FFL9VJuTC9K7JU0SibZqqIlRh0Bg83U64dzUkG4qlQeo7rK0Bs2WqypTGRoV1JPwRlsbk5ggAFpmoIvjHObGotY/R7i7C3DpnFI0SYhaI6iiiYxAClSDK4+kcWRVbmfyDXqz5KoX/1nSzaXBX4I4tMj1qXiin9rYUcmsH0WXHqYbKJsy4tr39cLEUuXuwywJMsSEBrpNh6oFaMP9x1iYziEjn7bFv4DwcClc0Xo3/LEClKsnrLjoAPU86HHhMrxo5MTnmWt0khnDJP40glPRc9WHbNnNjB94lG86BQ/hQbtrE44e+cv6xhkRhYEVRPFxXU1b+D6p7j7Qi8wukiUzUc+YG+af99rwD0CCLcWR5pgxqwl01LDiQ00jTL79kK0GWpiHGjcFiXxQovWLYkCHCTS6bpJqC6GmpCGYUZBNsZLCHWGHZTeH4LQvSxDRXc2VScukR/BLAGjHNnMyIXGkb0iTJ6cdE0PR/72MdKw9NgWrDsrscFjOukU+CxVMr3x8iUvW\",\"status\":200}\r\n===================================\r\n======2021-07-23 16:45:49:用例【com.pipi.invoker.CosPlayerTest.testLotteryActivity】结束======\r\n======本次用例运行消耗时间 682毫秒======\r","caseName":"testLotteryActivity","className":"com.pipi.invoker.CosPlayerTest","durationTime":"682毫秒","endTime":"2021-07-23 16:45:49","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:48","status":1}
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:49 GMT
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:49.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:49.358] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:49.358] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:49.868] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:45:49:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======
[2021-07-23 16:45:49.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:49.868] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e5d1b21f13694780945c02e49bea4305
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134, pageSize=10, pageNum=1}
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134&pageSize=10&pageNum=1
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:49.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:50 GMT
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:50.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:50.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:50.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"nobleName":"子爵Ⅰ","type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203773,"chargeBalance":65.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"nobleRankCode":31,"activeTime":"2021-07-23 09:40:20","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"137730220","loginTime":"2021-07-23 16:45:28","ordersTakeStatus":1,"nickname":"test","registIp":"223.104.20.18","virtualBalance":46360,"isCancel":false,"memberLevel":0,"mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","quickServerStatus":0,"imId":"2203773_20210708","scoreAvg":4.0,"charm":0,"createTime":"2021-07-08 10:33:13","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:45:50.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:50.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:50.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-07-23 16:45:50.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:50.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v2/guild-member/remove
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-73298e76a3304ecfa9053cade77fad7d#2203657
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {userId=2203773}
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - userId=2203773
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:50.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:45:50.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:50.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:50.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:45:50.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:50.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:50.319] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:45:50.319] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:50.319] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:45:50.319] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:50 GMT
[2021-07-23 16:45:50.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:45:50.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:50.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:50.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"该用户不在您的公会中","status":500}
[2021-07-23 16:45:50.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:50.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:50.322] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testRemove--Test Mthod Failure
[2021-07-23 16:45:50.322] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 16:45:50:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======
[2021-07-23 16:45:50.322] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 454毫秒======
[2021-07-23 16:45:50.322] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:50.322] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:50.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"将成员从公会移除","caseLog":"======2021-07-23 16:45:49:用例【com.pipi.invoker.CosPlayerTest.testRemove】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"e5d1b21f13694780945c02e49bea4305\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774134\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774134&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:50 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"nobleName\":\"子爵Ⅰ\",\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203773,\"chargeBalance\":65.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"nobleRankCode\":31,\"activeTime\":\"2021-07-23 09:40:20\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"137730220\",\"loginTime\":\"2021-07-23 16:45:28\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"223.104.20.18\",\"virtualBalance\":46360,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774134\",\"imPsw\":\"8a7b72eb07284f0a91faaf3d8b7eb791\",\"updateTime\":\"2021-07-08 10:33:14\",\"quickServerStatus\":0,\"imId\":\"2203773_20210708\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-07-08 10:33:13\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-guild-api.apeiwan.com/api/v2/guild-member/remove\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"APP-73298e76a3304ecfa9053cade77fad7d#2203657\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"userId\":\"2203773\"}\r\n###Http Request queryString after URLEncoder### :\r\nuserId=2203773\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:45:50 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"该用户不在您的公会中\",\"status\":500}\r\n===================================\r\n======2021-07-23 16:45:50:用例【com.pipi.invoker.CosPlayerTest.testRemove】结束======\r\n======本次用例运行消耗时间 454毫秒======\r","caseMessage":"java.lang.AssertionError: expected [200] but found [500]\r\n\tat org.testng.Assert.fail(Assert.java:94)\r\n\tat org.testng.Assert.failNotEquals(Assert.java:513)\r\n\tat org.testng.Assert.assertEqualsImpl(Assert.java:135)\r\n\tat org.testng.Assert.assertEquals(Assert.java:116)\r\n\tat org.testng.Assert.assertEquals(Assert.java:389)\r\n\tat org.testng.Assert.assertEquals(Assert.java:399)\r\n\tat com.pipi.invoker.CosPlayerTest.testRemove(CosPlayerTest.java:171)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\n","caseName":"testRemove","className":"com.pipi.invoker.CosPlayerTest","durationTime":"454毫秒","endTime":"2021-07-23 16:45:50","id":0,"serviceId":1,"startTime":"2021-07-23 16:45:49","status":2}
[2021-07-23 16:45:50.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:50 GMT
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:50.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpList
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testSend
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGuildSearch
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testMoneyDetailsSave
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testVirtualMoneyModify
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUpSize
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testRoomList
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testUserList
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testLotteryActivity
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testAuditGuild
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testRemove
[2021-07-23 16:45:55.522] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:11
[2021-07-23 16:45:55.523] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:2
[2021-07-23 16:45:55.523] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-07-23 16:45:55.527] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-07-23 16:45:55.528] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-07-23 16:45:55.532] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-23 16:45:55.532] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:45:55.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"28秒277毫秒","endTime":"2021-07-23 16:45:55","env":"t3","failed":2,"id":0,"passed":11,"serviceId":1,"skipped":0,"startTime":"2021-07-23 16:45:27","status":2,"teamId":0,"total":13}
[2021-07-23 16:45:58.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:45:58.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:45:58.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:45:58.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:45:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:45:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:45:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:45:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:45:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:45:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:45:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:45:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:45:59 GMT
[2021-07-23 16:45:58.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:45:58.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:45:58.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:45:58.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:45:58.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:45:58.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:45:58.847] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-07-23 16:45:55:测试集结束======
[2021-07-23 16:45:58.847] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 28秒277毫秒======
[2021-07-23 16:47:06.312] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-07-23 16:47:06.368] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-07-23 16:47:06:测试集开始======
[2021-07-23 16:47:06.579] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.PropUtil:51] - 配置项 dbConnectionURL 不存在,请检查配置!
[2021-07-23 16:47:06.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-23 16:47:06.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:06.697] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:06.697] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:06.697] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-23 16:47:06.697] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:06.697] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:06.698] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:06.698] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:06.698] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-23 16:47:06.698] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:06.698] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-23 16:47:06.698] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:06.698] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:06.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:06.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:06.814] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:06.814] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:06.814] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:06.815] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:06.815] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:06.815] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-23 16:47:06.815] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:07 GMT
[2021-07-23 16:47:06.815] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:06.815] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:06.815] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:06.815] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"2feb7722f9824e66b5c1cce88993dcca","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-23 16:47:06.815] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:06.816] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:06.816] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:47:06.817] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:06.917] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:06.918] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:06.918] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:47:06.919] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:06.919] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:06.919] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:06.919] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:06.919] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-07-23 16:47:06.919] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:06.919] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-07-23 16:47:06.920] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:06.920] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:06.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:06.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:06.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:06.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:06.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:06.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:06.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:06.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-07-23 16:47:06.991] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:07 GMT
[2021-07-23 16:47:06.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:06.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:06.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:06.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-07-23 16:47:06.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:06.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:06.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/login
[2021-07-23 16:47:06.992] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/login
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:07.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:07.166] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:07 GMT
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"137730220","nickname":"test","id":2203773,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","imId":"2203773_20210708","token":"APP-a4dbdaf186b540428fbb2ab61a161739#2203773","createTime":"2021-07-08 10:33:13","newUser":false,"status":1},"status":200}
[2021-07-23 16:47:07.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:07.168] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:07.168] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:47:07.168] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:07.244] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:07.245] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:07 GMT
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:07.315] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:07.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-07-23 16:47:07.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:07.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:07.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/login
[2021-07-23 16:47:07.316] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:07.390] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:07.391] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:07.391] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/login
[2021-07-23 16:47:07.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:07.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:07.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:07.392] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:07.393] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-07-23 16:47:07.393] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:07.393] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-07-23 16:47:07.393] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:07.393] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:07.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:07.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:07.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:07.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:07.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:07.473] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:07.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:07.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-07-23 16:47:07.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:07 GMT
[2021-07-23 16:47:07.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:07.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:07.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:07.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"175630220","nickname":"test","id":2203657,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","imId":"2203657_20210524","token":"APP-191843adc05549368bbed1a2c7eab349#2203657","createTime":"2021-05-24 14:01:01","newUser":false,"status":1},"status":200}
[2021-07-23 16:47:07.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:07.474] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:07.481] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:47:07:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-07-23 16:47:07.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:47:07.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:07.560] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-a4dbdaf186b540428fbb2ab61a161739#2203773
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18306720}
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18306720
[2021-07-23 16:47:07.561] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:07.562] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:07.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:07 GMT
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-23 16:46:52","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:47:07.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:07.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:07.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-07-23 16:47:07.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:07.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:07.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:07.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-07-23 16:47:07.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:07.755] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:07.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-a4dbdaf186b540428fbb2ab61a161739#2203773
[2021-07-23 16:47:07.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:07.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:07.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyRemark=我是test,想加入公会, guildId=232}
[2021-07-23 16:47:07.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:07.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyRemark=%E6%88%91%E6%98%AFtest%EF%BC%8C%E6%83%B3%E5%8A%A0%E5%85%A5%E5%85%AC%E4%BC%9A&guildId=232
[2021-07-23 16:47:07.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:07.756] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:07.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:07.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:07.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:07.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:07.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:47:07.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:07.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:07.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:07.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:08 GMT
[2021-07-23 16:47:07.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:07.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:07.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:07.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"你的入会申请提交成功","status":200}
[2021-07-23 16:47:07.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:07.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:07.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-07-23 16:47:07.866] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:07.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:07.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:07.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-07-23 16:47:07.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:07.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:07.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2feb7722f9824e66b5c1cce88993dcca
[2021-07-23 16:47:07.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:07.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:07.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=999999, guildCode=18306720, pageNum=1}
[2021-07-23 16:47:07.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:07.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=999999&guildCode=18306720&pageNum=1
[2021-07-23 16:47:07.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:07.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:08.034] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:08.035] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:08.035] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:08.035] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:08.036] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:47:08.036] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:08.036] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:08.036] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:08.036] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:08 GMT
[2021-07-23 16:47:08.037] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:08.037] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:08.037] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:08.037] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":999999,"endRow":1,"list":[{"roomNums":1,"guildStatus":2,"mobile":"13823774131","description":"欢迎来到我的公会","updateTime":"2021-07-23 16:46:52","leaderNickName":"test","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"guildMaxNumDesc":"50人以下","curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:47:08.037] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:08.037] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:08.038] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:47:08.038] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:08.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2feb7722f9824e66b5c1cce88993dcca
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:08.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:08 GMT
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:08.198] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:08.199] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-23 09:40:23","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-23 16:45:29","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:47:08.199] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:08.199] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:08.199] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:47:08.199] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:08.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:08.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:08.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:47:08.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:08.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:08.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-a4dbdaf186b540428fbb2ab61a161739#2203773
[2021-07-23 16:47:08.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:08.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:08.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18306720}
[2021-07-23 16:47:08.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:08.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18306720
[2021-07-23 16:47:08.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:08.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:08 GMT
[2021-07-23 16:47:08.369] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:08.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:08.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:08.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-23 16:46:52","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:47:08.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:08.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:08.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-07-23 16:47:08.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:08.452] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:08.453] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:08.453] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-07-23 16:47:08.453] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:47:08.454] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:08.454] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-a4dbdaf186b540428fbb2ab61a161739#2203773
[2021-07-23 16:47:08.454] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:47:08.454] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:08.454] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyType=1, pageSize=20, pageNum=1, guildId=232}
[2021-07-23 16:47:08.455] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:08.455] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyType=1&pageSize=20&pageNum=1&guildId=232
[2021-07-23 16:47:08.455] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:08.455] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:09 GMT
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"无权限操作,请联系公会管理员","status":500}
[2021-07-23 16:47:08.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:08.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:08.772] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testAuditGuild--Test Mthod Failure
[2021-07-23 16:47:08.772] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 16:47:08:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-07-23 16:47:08.772] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 01秒291毫秒======
[2021-07-23 16:47:08.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:47:08.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:08.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-07-23 16:47:07:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-a4dbdaf186b540428fbb2ab61a161739#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:47:07 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 16:46:52\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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://t3-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-a4dbdaf186b540428fbb2ab61a161739#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyRemark\":\"我是test,想加入公会\",\"guildId\":232}\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=232\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:47:08 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://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2feb7722f9824e66b5c1cce88993dcca\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":999999,\"guildCode\":\"18306720\",\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=999999&guildCode=18306720&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:47:08 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":999999,\"endRow\":1,\"list\":[{\"roomNums\":1,\"guildStatus\":2,\"mobile\":\"13823774131\",\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 16:46:52\",\"leaderNickName\":\"test\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"guildMaxNumDesc\":\"50人以下\",\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"2feb7722f9824e66b5c1cce88993dcca\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:47:08 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-23 09:40:23\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-23 16:45:29\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-a4dbdaf186b540428fbb2ab61a161739#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:47:08 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 16:46:52\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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://t3-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-a4dbdaf186b540428fbb2ab61a161739#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyType\":\"1\",\"pageSize\":\"20\",\"pageNum\":\"1\",\"guildId\":232}\r\n###Http Request queryString after URLEncoder### :\r\napplyType=1&pageSize=20&pageNum=1&guildId=232\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:47:09 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"无权限操作,请联系公会管理员\",\"status\":500}\r\n===================================\r\n======2021-07-23 16:47:08:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 01秒291毫秒======\r","caseMessage":"java.lang.NullPointerException\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.applyList(CosPlyaPlayerServiceImpl.java:693)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.auditGuild(CosPlyaPlayerServiceImpl.java:716)\r\n\tat com.pipi.invoker.CosPlayerTest.testAuditGuild(CosPlayerTest.java:143)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\n","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒291毫秒","endTime":"2021-07-23 16:47:08","id":0,"serviceId":1,"startTime":"2021-07-23 16:47:07","status":2}
[2021-07-23 16:47:08.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:08.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:08.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:47:08.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:08.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:47:08.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:47:08.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:47:08.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:09 GMT
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:08.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:13.992] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testAuditGuild
[2021-07-23 16:47:13.992] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-07-23 16:47:13.992] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:1
[2021-07-23 16:47:13.992] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-07-23 16:47:13.996] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-07-23 16:47:13.996] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-07-23 16:47:14.001] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-23 16:47:14.001] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:47:14.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"07秒625毫秒","endTime":"2021-07-23 16:47:13","env":"t3","failed":1,"id":0,"passed":0,"serviceId":1,"skipped":0,"startTime":"2021-07-23 16:47:06","status":2,"teamId":0,"total":1}
[2021-07-23 16:47:14.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:47:14.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:47:14.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:47:14 GMT
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:47:14.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:47:14.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:47:14.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:47:14.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:47:14.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:47:14.539] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-07-23 16:47:13:测试集结束======
[2021-07-23 16:47:14.539] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 07秒625毫秒======
[2021-07-23 16:53:42.422] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-07-23 16:53:42.482] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-07-23 16:53:42:测试集开始======
[2021-07-23 16:53:42.691] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.PropUtil:51] - 配置项 dbConnectionURL 不存在,请检查配置!
[2021-07-23 16:53:42.702] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/login
[2021-07-23 16:53:42.703] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:42.869] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:42.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:42.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/login
[2021-07-23 16:53:42.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:42.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:42.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:42.871] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:42.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=ZnVsdTk5NjM1, username=admin}
[2021-07-23 16:53:42.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:42.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=ZnVsdTk5NjM1&username=admin
[2021-07-23 16:53:42.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:42.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:43.005] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:43.006] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:43.006] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:776
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:43 GMT
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:43.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":34,"updateTime":"2018-09-29 18:53:26","token":"1a14601fa0f249f69857f16863d7805e","createTime":"2018-09-29 18:53:24","newUser":false,"name":"admin","username":"admin","status":1},"status":200}
[2021-07-23 16:53:43.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:43.008] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:43.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:53:43.009] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:44.248] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:44.249] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:44.249] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:53:44.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:44.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:44.250] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:44.251] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:44.251] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774134}
[2021-07-23 16:53:44.251] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:44.252] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774134
[2021-07-23 16:53:44.252] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:44.252] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:44.335] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:44.335] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:44.335] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:44.336] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:44.336] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:44.336] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:44.336] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:44.336] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-07-23 16:53:44.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:44 GMT
[2021-07-23 16:53:44.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:44.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:44.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:44.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-07-23 16:53:44.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:44.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:44.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/login
[2021-07-23 16:53:44.341] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:44.481] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:44.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:44.482] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/login
[2021-07-23 16:53:44.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:44.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:44.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:44.483] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:44.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774134}
[2021-07-23 16:53:44.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:44.484] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774134
[2021-07-23 16:53:44.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:44.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:44.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:44.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:44.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:44.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:44.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:44 GMT
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"137730220","nickname":"test","id":2203773,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774134","imPsw":"8a7b72eb07284f0a91faaf3d8b7eb791","updateTime":"2021-07-08 10:33:14","imId":"2203773_20210708","token":"APP-439ac35f1b5941359950e3da934e8710#2203773","createTime":"2021-07-08 10:33:13","newUser":false,"status":1},"status":200}
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:44.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:44.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:53:44.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:44.677] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:44.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:44.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/sms/verify
[2021-07-23 16:53:44.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:44.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:44.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:44.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:44.680] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131}
[2021-07-23 16:53:44.680] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:44.680] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131
[2021-07-23 16:53:44.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:44.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:56
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:45 GMT
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:44.762] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:44.763] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:44.763] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"验证码发送成功","status":200}
[2021-07-23 16:53:44.763] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:44.763] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:44.763] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-app.apeiwan.com/login
[2021-07-23 16:53:44.763] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:44.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:44.927] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:44.927] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-app.apeiwan.com/login
[2021-07-23 16:53:44.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:44.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:44.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:44.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:44.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {code=2222, mobile=13823774131}
[2021-07-23 16:53:44.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:44.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - code=2222&mobile=13823774131
[2021-07-23 16:53:44.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:44.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:45.066] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:45.066] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:45.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:45.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:45.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:45.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:45.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:45.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:934
[2021-07-23 16:53:45.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:45 GMT
[2021-07-23 16:53:45.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:45.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:45.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:45.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"gender":1,"city":"","platformAuth":0,"type":2,"userCode":"175630220","nickname":"test","id":2203657,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","imId":"2203657_20210524","token":"APP-9979f6b16f7341b98c0f8e1823173614#2203657","createTime":"2021-05-24 14:01:01","newUser":false,"status":1},"status":200}
[2021-07-23 16:53:45.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:45.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:45.075] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-07-23 16:53:45:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======
[2021-07-23 16:53:45.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:53:45.077] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:45.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:45.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:45.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:53:45.213] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:45.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:45.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-439ac35f1b5941359950e3da934e8710#2203773
[2021-07-23 16:53:45.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:45.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:45.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18306720}
[2021-07-23 16:53:45.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:45.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18306720
[2021-07-23 16:53:45.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:45.214] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:45.363] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:45 GMT
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-23 16:46:52","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:45.364] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:45.366] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-07-23 16:53:45.366] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:45.529] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/join
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-439ac35f1b5941359950e3da934e8710#2203773
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyRemark=我是test,想加入公会, guildId=232}
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyRemark=%E6%88%91%E6%98%AFtest%EF%BC%8C%E6%83%B3%E5%8A%A0%E5%85%A5%E5%85%AC%E4%BC%9A&guildId=232
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:45.530] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:45.717] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:45.717] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:45.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:45.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:45.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:53:45.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:45.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:45.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:45.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:45 GMT
[2021-07-23 16:53:45.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:45.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:45.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:45.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"你的入会申请提交成功","status":200}
[2021-07-23 16:53:45.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:45.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:45.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-07-23 16:53:45.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:45.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:1a14601fa0f249f69857f16863d7805e
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=999999, guildCode=18306720, pageNum=1}
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=999999&guildCode=18306720&pageNum=1
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:45.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:45.928] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:46 GMT
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":999999,"endRow":1,"list":[{"roomNums":1,"guildStatus":2,"mobile":"13823774131","description":"欢迎来到我的公会","updateTime":"2021-07-23 16:46:52","leaderNickName":"test","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"guildMaxNumDesc":"50人以下","curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:45.929] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:45.930] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:53:45.930] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:46.049] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:46.050] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:46.050] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-api-admin.apeiwan.com/api/v1/user/list
[2021-07-23 16:53:46.050] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:46.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:46.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:1a14601fa0f249f69857f16863d7805e
[2021-07-23 16:53:46.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:46.051] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:46.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {mobile=13823774131, pageSize=10, pageNum=1}
[2021-07-23 16:53:46.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:46.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - mobile=13823774131&pageSize=10&pageNum=1
[2021-07-23 16:53:46.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:46.052] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:46.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:46.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:46.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:46.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:46.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:53:46.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:46.239] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:46.239] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:46.239] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:46 GMT
[2021-07-23 16:53:46.239] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:46.239] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:46.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:46.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询用户列表成功!","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":10,"orderBy":"u.create_time desc","endRow":1,"list":[{"sourceId":5,"platformAuthUrl":"","platformAuth":0,"type":2,"balance":0.00,"charmDrawSum":0,"loginIp":"61.183.246.70","id":2203657,"chargeBalance":10000.00,"headPortraitsUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg","lastMemberExp":0,"activeTime":"2021-07-23 09:40:23","userInfoAuth":2,"status":1,"gender":1,"city":"","registerType":3,"guildCode":"18306720","userCode":"175630220","loginTime":"2021-07-23 16:45:29","ordersTakeStatus":1,"nickname":"test","registIp":"61.183.246.70","virtualBalance":10000,"isCancel":false,"memberLevel":0,"mobile":"13823774131","imPsw":"5071d6240b244ae3b8aedae62c4a80a8","updateTime":"2021-05-24 14:01:04","quickServerStatus":0,"imId":"2203657_20210524","scoreAvg":4.0,"charm":0,"createTime":"2021-05-24 14:01:01","newUser":false,"sourceName":"android注册来源","registDeviceNo":"6d90e789-f618-4e8d-8366-6b1af5e63f27"}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:53:46.240] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:46.241] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:46.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:53:46.242] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:46.401] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/search
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-439ac35f1b5941359950e3da934e8710#2203773
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=20, pageNum=1, queryStr=18306720}
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=20&pageNum=1&queryStr=18306720
[2021-07-23 16:53:46.402] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:46.403] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:46.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:46.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:46.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:46.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:46 GMT
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":1,"navigatepageNums":[1],"prePage":0,"hasNextPage":false,"nextPage":0,"pageSize":100,"orderBy":"id desc","endRow":1,"list":[{"guildStatus":2,"description":"欢迎来到我的公会","updateTime":"2021-07-23 16:46:52","maxNum":50,"guildCode":"18306720","logoUrl":"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg","guildName":"心玄的公会","leaderId":2203657,"curNum":1,"createTime":"2021-07-06 17:31:06","guildType":1,"id":232,"guildBiz":0}],"pageNum":1,"navigatePages":8,"total":1,"pages":1,"size":1,"firstPage":1,"isLastPage":true,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:46.525] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:46.526] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-07-23 16:53:46.526] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:46.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:46.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:46.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://t3-guild-api.apeiwan.com/api/v1/guild-center/guild/apply-list
[2021-07-23 16:53:46.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-07-23 16:53:46.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:46.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:APP-439ac35f1b5941359950e3da934e8710#2203773
[2021-07-23 16:53:46.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-07-23 16:53:46.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:46.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {applyType=1, pageSize=20, pageNum=1, guildId=232}
[2021-07-23 16:53:46.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:46.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - applyType=1&pageSize=20&pageNum=1&guildId=232
[2021-07-23 16:53:46.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:46.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Server:nginx
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:47 GMT
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"无权限操作,请联系公会管理员","status":500}
[2021-07-23 16:53:46.860] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:46.861] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:46.863] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:82] - testAuditGuild--Test Mthod Failure
[2021-07-23 16:53:46.863] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:86] - ======2021-07-23 16:53:46:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======
[2021-07-23 16:53:46.863] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:87] - ======本次用例运行消耗时间 01秒788毫秒======
[2021-07-23 16:53:46.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:53:46.874] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:46.876] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"申请加入公会及审核","caseLog":"======2021-07-23 16:53:45:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】开始======\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-439ac35f1b5941359950e3da934e8710#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:53:45 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 16:46:52\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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://t3-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-439ac35f1b5941359950e3da934e8710#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyRemark\":\"我是test,想加入公会\",\"guildId\":232}\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=232\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:53:45 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://t3-api-admin.apeiwan.com/api/v1/guild-center/guild/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"1a14601fa0f249f69857f16863d7805e\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":999999,\"guildCode\":\"18306720\",\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=999999&guildCode=18306720&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:53:46 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":999999,\"endRow\":1,\"list\":[{\"roomNums\":1,\"guildStatus\":2,\"mobile\":\"13823774131\",\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 16:46:52\",\"leaderNickName\":\"test\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"guildMaxNumDesc\":\"50人以下\",\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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://t3-api-admin.apeiwan.com/api/v1/user/list\r\n###Http Request Method### : POST\r\n###Http Request Headers### : \r\n{\"token\":\"1a14601fa0f249f69857f16863d7805e\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"mobile\":\"13823774131\",\"pageSize\":10,\"pageNum\":1}\r\n###Http Request queryString after URLEncoder### :\r\nmobile=13823774131&pageSize=10&pageNum=1\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:53:46 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"查询用户列表成功!\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":10,\"orderBy\":\"u.create_time desc\",\"endRow\":1,\"list\":[{\"sourceId\":5,\"platformAuthUrl\":\"\",\"platformAuth\":0,\"type\":2,\"balance\":0.00,\"charmDrawSum\":0,\"loginIp\":\"61.183.246.70\",\"id\":2203657,\"chargeBalance\":10000.00,\"headPortraitsUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/11/c343b09eccfe4f14b56f33b2f42041d2.jpg\",\"lastMemberExp\":0,\"activeTime\":\"2021-07-23 09:40:23\",\"userInfoAuth\":2,\"status\":1,\"gender\":1,\"city\":\"\",\"registerType\":3,\"guildCode\":\"18306720\",\"userCode\":\"175630220\",\"loginTime\":\"2021-07-23 16:45:29\",\"ordersTakeStatus\":1,\"nickname\":\"test\",\"registIp\":\"61.183.246.70\",\"virtualBalance\":10000,\"isCancel\":false,\"memberLevel\":0,\"mobile\":\"13823774131\",\"imPsw\":\"5071d6240b244ae3b8aedae62c4a80a8\",\"updateTime\":\"2021-05-24 14:01:04\",\"quickServerStatus\":0,\"imId\":\"2203657_20210524\",\"scoreAvg\":4.0,\"charm\":0,\"createTime\":\"2021-05-24 14:01:01\",\"newUser\":false,\"sourceName\":\"android注册来源\",\"registDeviceNo\":\"6d90e789-f618-4e8d-8366-6b1af5e63f27\"}],\"pageNum\":1,\"navigatePages\":8,\"total\":1,\"pages\":1,\"size\":1,\"firstPage\":1,\"isLastPage\":true,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\r\n===================================\r\n===================================\r\n###Http Request Url### : \r\nhttps://t3-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-439ac35f1b5941359950e3da934e8710#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"pageSize\":\"20\",\"pageNum\":\"1\",\"queryStr\":\"18306720\"}\r\n###Http Request queryString after URLEncoder### :\r\npageSize=20&pageNum=1&queryStr=18306720\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:53:46 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":1,\"navigatepageNums\":[1],\"prePage\":0,\"hasNextPage\":false,\"nextPage\":0,\"pageSize\":100,\"orderBy\":\"id desc\",\"endRow\":1,\"list\":[{\"guildStatus\":2,\"description\":\"欢迎来到我的公会\",\"updateTime\":\"2021-07-23 16:46:52\",\"maxNum\":50,\"guildCode\":\"18306720\",\"logoUrl\":\"http://test-game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/10/41ccae2242e74da8a554726da01f1dc2.jpeg\",\"guildName\":\"心玄的公会\",\"leaderId\":2203657,\"curNum\":1,\"createTime\":\"2021-07-06 17:31:06\",\"guildType\":1,\"id\":232,\"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://t3-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-439ac35f1b5941359950e3da934e8710#2203773\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\r\n###Http Request queryString before URLEncoder### : \r\n{\"applyType\":\"1\",\"pageSize\":\"20\",\"pageNum\":\"1\",\"guildId\":232}\r\n###Http Request queryString after URLEncoder### :\r\napplyType=1&pageSize=20&pageNum=1&guildId=232\r\n===================================\r\n###Http Response Status line### : \r\nHTTP/1.1 200 OK\r\n###Http Response Headers### : \r\n{\"Transfer-Encoding\":\"chunked\",\"Server\":\"nginx\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Fri, 23 Jul 2021 08:53:47 GMT\",\"Content-Type\":\"application/json\"}\r\n###Http Response Content### :\r\n{\"msg\":\"无权限操作,请联系公会管理员\",\"status\":500}\r\n===================================\r\n======2021-07-23 16:53:46:用例【com.pipi.invoker.CosPlayerTest.testAuditGuild】结束======\r\n======本次用例运行消耗时间 01秒788毫秒======\r","caseMessage":"java.lang.NullPointerException\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.applyList(CosPlyaPlayerServiceImpl.java:693)\r\n\tat com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.auditGuild(CosPlyaPlayerServiceImpl.java:716)\r\n\tat com.pipi.invoker.CosPlayerTest.testAuditGuild(CosPlayerTest.java:143)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n\tat java.lang.reflect.Method.invoke(Method.java:498)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)\r\n\tat org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)\r\n\tat org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)\r\n\tat org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)\r\n\tat org.testng.internal.Invoker.invokeMethod(Invoker.java:641)\r\n\tat org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)\r\n\tat org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)\r\n\tat org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)\r\n\tat org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)\r\n\tat org.testng.TestRunner.privateRun(TestRunner.java:756)\r\n\tat org.testng.TestRunner.run(TestRunner.java:610)\r\n\tat org.testng.SuiteRunner.runTest(SuiteRunner.java:387)\r\n\tat org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)\r\n\tat org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)\r\n\tat org.testng.SuiteRunner.run(SuiteRunner.java:289)\r\n\tat org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)\r\n\tat org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)\r\n\tat org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)\r\n\tat org.testng.TestNG.runSuitesLocally(TestNG.java:1218)\r\n\tat org.testng.TestNG.runSuites(TestNG.java:1133)\r\n\tat org.testng.TestNG.run(TestNG.java:1104)\r\n\tat org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)\r\n\tat org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)\r\n\tat org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)\r\n","caseName":"testAuditGuild","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒788毫秒","endTime":"2021-07-23 16:53:46","id":0,"serviceId":1,"startTime":"2021-07-23 16:53:45","status":2}
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:47 GMT
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:53:47.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:47.105] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:47.105] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:53:47.105] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:47.105] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:52.125] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:166] - failedTest = testAuditGuild
[2021-07-23 16:53:52.125] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-07-23 16:53:52.125] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:1
[2021-07-23 16:53:52.125] [main] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-07-23 16:53:52.128] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-07-23 16:53:52.129] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-07-23 16:53:52.133] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-23 16:53:52.133] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-07-23 16:53:52.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"09秒644毫秒","endTime":"2021-07-23 16:53:52","env":"t3","failed":1,"id":0,"passed":0,"serviceId":1,"skipped":0,"startTime":"2021-07-23 16:53:42","status":2,"teamId":0,"total":1}
[2021-07-23 16:53:52.581] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-07-23 16:53:52.581] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-07-23 16:53:52.581] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-07-23 16:53:52.581] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-07-23 16:53:52.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-07-23 16:53:52.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-07-23 16:53:52.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-07-23 16:53:52.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-07-23 16:53:52.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-07-23 16:53:52.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-07-23 16:53:52.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-07-23 16:53:52.582] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Fri, 23 Jul 2021 08:53:52 GMT
[2021-07-23 16:53:52.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-07-23 16:53:52.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-07-23 16:53:52.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-07-23 16:53:52.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-07-23 16:53:52.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-07-23 16:53:52.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-07-23 16:53:52.583] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-07-23 16:53:52:测试集结束======
[2021-07-23 16:53:52.583] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 09秒644毫秒======