debug.log.2021-06-28
976 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
[2021-06-28 17:40:24.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.41.126:40001
[2021-06-28 17:40:24.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 17:41:39.544] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
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.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testAccountQuery(BankAccountServiceTest.java:37)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 17:41:39.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 17:41:39.573] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.41.126:40001
[2021-06-28 17:41:39.573] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 17:42:54.860] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
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.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testBankAccount(BankAccountServiceTest.java:45)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 17:42:54.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 17:42:54.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.41.126:40001
[2021-06-28 17:42:54.872] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 17:44:10.302] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
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.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testBankAccountCodeQuery(BankAccountServiceTest.java:52)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 17:44:10.305] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 18:02:31.049] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.41.126:40001
[2021-06-28 18:02:31.093] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 18:03:46.363] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
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.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testAccountQuery(BankAccountServiceTest.java:37)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 18:03:46.371] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 18:03:46.384] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.41.126:40001
[2021-06-28 18:03:46.385] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 18:05:01.603] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
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.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testBankAccount(BankAccountServiceTest.java:45)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 18:05:01.605] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 18:05:01.612] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.41.126:40001
[2021-06-28 18:05:01.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 18:06:16.916] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
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.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePostString(HttpToolKit.java:173)
at com.to8to.invoker.BankAccountServiceTest.testBankAccountCodeQuery(BankAccountServiceTest.java:52)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 18:06:16.920] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 19:55:45.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 19:55:45.363] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 19:55:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 19:55:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 19:55:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 19:55:45.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 19:55:45.593] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 19:55:45.593] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 19:55:45.593] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 19:55:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 19:55:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 19:55:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 19:55:45.595] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 19:55:45.596] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 19:55:46.162] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 19:55:46.162] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 19:55:46.162] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 19:55:46.162] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 19:55:46.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 19:55:46.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 19:55:46.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 19:55:46.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 19:55:46.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 11:55:45 GMT
[2021-06-28 19:55:46.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 19:55:46.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 19:55:46.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 19:55:46.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"fabf235aef184594b8d1a8c528c61817","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 19:55:46.164] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 19:55:46.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 19:55:46.168] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 19:55:46.168] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 19:55:46.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 19:55:46.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 19:55:46.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 19:55:46.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 19:55:46.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 19:55:46.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:fabf235aef184594b8d1a8c528c61817
[2021-06-28 19:55:46.226] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 19:55:46.226] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 19:55:46.226] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 19:55:46.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 19:55:46.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 19:55:46.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 19:55:46.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 19:55:46.671] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 19:55:46.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 19:55:46.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 19:55:46.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 19:55:46.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 19:55:46.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 19:55:46.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 19:55:46.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 19:55:46.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 11:55:46 GMT
[2021-06-28 19:55:46.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 19:55:46.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 19:55:46.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 19:55:46.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 19:55:46.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 19:55:46.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 19:56:25.202] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 19:56:25.359] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 19:56:25:测试集开始======
[2021-06-28 19:56:25.722] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 19:56:25:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 19:56:25.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 19:56:25.932] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 19:56:26.120] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 19:56:26.121] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 19:56:26.121] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 19:56:26.121] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 19:56:26.121] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 19:56:26.121] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 19:56:26.122] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 19:56:26.123] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 19:56:26.124] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 19:56:26.124] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 19:56:26.124] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 19:56:26.125] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 19:56:26.494] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 19:56:26.494] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 19:56:26.494] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 19:56:26.495] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 19:56:26.495] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 19:56:26.495] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 19:56:26.495] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 19:56:26.495] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 19:56:26.496] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 11:56:26 GMT
[2021-06-28 19:56:26.496] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 19:56:26.496] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 19:56:26.496] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 19:56:26.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"3898d88523f04725b9f2db030d537e54","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 19:56:26.497] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 19:56:26.498] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 19:56:26.501] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 19:56:26.501] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 19:56:26.585] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 19:56:26.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 19:56:26.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 19:56:26.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 19:56:26.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 19:56:26.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:3898d88523f04725b9f2db030d537e54
[2021-06-28 19:56:26.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 19:56:26.588] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 19:56:26.588] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 19:56:26.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 19:56:26.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 19:56:26.589] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 19:56:26.590] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 19:56:27.012] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 19:56:27.012] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 19:56:27.012] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 19:56:27.013] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 19:56:27.013] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 19:56:27.013] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 19:56:27.013] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 19:56:27.013] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 19:56:27.014] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 11:56:26 GMT
[2021-06-28 19:56:27.014] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 19:56:27.014] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 19:56:27.014] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 19:56:27.014] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 19:56:27.016] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 19:56:27.016] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 19:56:27.020] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 19:56:27.021] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 19:56:27:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 19:56:27.021] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒299毫秒======
[2021-06-28 19:56:27.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.41.108:9096/fdd-test-center/report/testStatistic.json
[2021-06-28 19:56:27.054] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 19:57:42.320] [TestNG] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
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.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePutJson(HttpToolKit.java:340)
at com.fangdd.qa.testng.TestngListener.reportTestStatistic(TestngListener.java:138)
at com.fangdd.qa.testng.TestngListener.onTestSuccess(TestngListener.java:75)
at org.testng.internal.Invoker.runTestListeners(Invoker.java:1720)
at org.testng.internal.Invoker.runTestListeners(Invoker.java:1699)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:703)
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:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:748)
[2021-06-28 19:57:42.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 19:57:42.600] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 19:57:42.600] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 19:57:42.601] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 19:57:42.601] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 19:57:42.610] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 19:57:42.612] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 19:57:42.621] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.41.108:9096/fdd-test-center/report/testSuiteStatistic.json
[2021-06-28 19:57:42.621] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 19:58:57.994] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.ConnectException: Operation timed out (Connection timed out)
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
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.http.HttpClient.<init>(HttpClient.java:242)
at sun.net.www.http.HttpClient.New(HttpClient.java:339)
at sun.net.www.http.HttpClient.New(HttpClient.java:357)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966)
at com.fangdd.qa.framework.utils.http.HttpUtil.execute(HttpUtil.java:224)
at com.fangdd.qa.framework.tools.HttpToolKit.invokePutJson(HttpToolKit.java:340)
at com.fangdd.qa.testng.TestngSuiteListener.reportTestSuiteStatistic(TestngSuiteListener.java:90)
at com.fangdd.qa.testng.TestngSuiteListener.onFinish(TestngSuiteListener.java:77)
at org.testng.SuiteRunner.invokeListeners(SuiteRunner.java:232)
at org.testng.SuiteRunner.run(SuiteRunner.java:292)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:281)
at org.apache.maven.surefire.testng.TestNGXmlTestSuite.execute(TestNGXmlTestSuite.java:75)
at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:121)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:290)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:242)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:121)
[2021-06-28 19:58:57.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:00:44.375] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 20:00:44.530] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:00:44:测试集开始======
[2021-06-28 20:00:44.862] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 20:00:44:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 20:00:44.872] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:00:45.058] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:00:45.240] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:00:45.241] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:00:45.241] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:00:45.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:00:45.242] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:00:45.243] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:00:45.243] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:00:45.246] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 20:00:45.246] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:00:45.247] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 20:00:45.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:00:45.248] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:00:45.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:00:45.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:00:45.730] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:00:45.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:00:45.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:00:45.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:00:45.731] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:00:45.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 20:00:45.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:00:45 GMT
[2021-06-28 20:00:45.732] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:00:45.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:00:45.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:00:45.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"0f6a2c84b60d4ddda80e1d66d2667c70","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 20:00:45.733] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:00:45.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:00:45.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:00:45.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:00:46.060] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:00:46.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:00:46.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:00:46.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:00:46.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:00:46.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:0f6a2c84b60d4ddda80e1d66d2667c70
[2021-06-28 20:00:46.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:00:46.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:00:46.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 20:00:46.062] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:00:46.063] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 20:00:46.063] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:00:46.063] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:00:46.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:00:46.263] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:00:46.263] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:00:46.263] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:00:46.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:00:46.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:00:46.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:00:46.264] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:00:46.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:00:46 GMT
[2021-06-28 20:00:46.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:00:46.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:00:46.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:00:46.265] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 20:00:46.267] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:00:46.267] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:00:46.273] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 20:00:46.274] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 20:00:46:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 20:00:46.274] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒412毫秒======
[2021-06-28 20:00:46.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 20:00:46.302] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:00:46.307] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:00:46.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:00:46.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 20:00:46.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:00:46.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:00:46.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:00:46.308] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:00:46.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:00:46.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:00:46.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:00:46.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:00:46.309] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-06-28 20:00:44:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 12:00:45 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"0f6a2c84b60d4ddda80e1d66d2667c70\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"0f6a2c84b60d4ddda80e1d66d2667c70\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&type=1&pageNum=1&useStatus=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 12:00:46 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":4,\"navigatepageNums\":[1,2,3,4],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png\",\"createTime\":\"2020-12-23 14:37:34\",\"refType\":1,\"id\":44,\"virtualProductId\":328,\"content\":\"每送1个,可增加房间热度10\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"每送1个,可增加房间热度10\",\"giftVersion\":24,\"price\":0,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png\",\"id\":328,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室热度礼物\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":69,\"virtualProductId\":314,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 14:48:40\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\\\",\\\"remark\\\":\\\"一心一意\\\"}]\",\"id\":55,\"virtualProductId\":314}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方185魅力值\",\"giftVersion\":11,\"price\":185,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":314,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":185,\"useStatus\":1,\"name\":\"超人泡泡糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-05-31 00:00:05\",\"labelUrl\":\"\",\"createTime\":\"2020-05-27 11:11:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":285,\"virtualProductId\":517,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png\",\"createTime\":\"2021-05-24 10:02:07\",\"refType\":1,\"id\":76,\"virtualProductId\":517,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":100,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png\",\"id\":517,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1001,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-24 10:02:08\",\"useStatus\":1,\"name\":\"皮皮糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"糖果制造机玩法礼物\",\"delFlag\":false,\"obtainType\":5,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-06-17 17:23:08\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-24 10:02:08\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:56:35\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":24,\"virtualProductId\":327}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可增加对方1魅力值\",\"giftVersion\":17,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":980,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"834861\",\"rangeName\":\"\",\"id\":242,\"virtualProductId\":474,\"roomType\":2,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png\",\"id\":474,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga\",\"giftType\":1,\"sort\":980,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-23 18:01:57\",\"useStatus\":1,\"name\":\"雾时牛啤\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"【雾时】聊天室专属礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-03-22 00:00:00\",\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 18:01:57\",\"endTime\":\"2021-08-22 23:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"3\",\"rangeName\":\"全部\",\"id\":244,\"virtualProductId\":476,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":128,\"remarkUrl\":\"\",\"id\":476,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-03-06 10:48:39\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"女生厅专属礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-03-06 10:48:39\"}},{\"virtualProductRange\":{\"roomRange\":\"17\",\"rangeName\":\"全部\",\"id\":260,\"virtualProductId\":492,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png\",\"createTime\":\"2021-05-13 15:42:15\",\"refType\":1,\"id\":73,\"virtualProductId\":492,\"content\":\"男生厅专属礼物\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":128,\"remarkUrl\":\"\",\"id\":492,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-04-20 12:01:04\",\"useStatus\":1,\"name\":\"游戏机\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 15:42:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-04-20 12:01:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":292,\"virtualProductId\":524,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":6,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":6,\"limitUpdateTime\":\"2021-05-28 17:21:11\",\"useStatus\":1,\"name\":\"爱心补给\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-28 18:00:32\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":293,\"virtualProductId\":525,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-06-02 13:43:36\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"66\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\\\",\\\"remark\\\":\\\"一切顺利\\\"}]\",\"id\":265,\"virtualProductId\":525}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png\",\"createTime\":\"2021-06-02 13:43:36\",\"refType\":1,\"id\":79,\"virtualProductId\":525,\"content\":\"一次性赠送66个该礼物,触发进阶动效。\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":10,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png\",\"id\":525,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":970,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-28 18:07:48\",\"useStatus\":1,\"name\":\"永远滴神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-06-02 13:49:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 18:07:48\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":97,\"virtualProductId\":220,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方21魅力值\",\"giftVersion\":10,\"price\":21,\"remarkUrl\":\"\",\"id\":220,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":960,\"charmValue\":21,\"useStatus\":1,\"name\":\"甜甜圈\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2019-08-07 16:02:15\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":34,\"pages\":4,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 20:00:46:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======\n======本次用例运行消耗时间 01秒412毫秒======","caseName":"testGiftList","className":"com.to8to.invoker.RulePropertyTest","durationTime":"01秒412毫秒","endTime":"2021-06-28 20:00:46","id":0,"serviceId":1,"startTime":"2021-06-28 20:00:44","status":1}
[2021-06-28 20:00:46.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:00:46.459] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:00:46.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:00:46.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:00:46.460] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:00:46.461] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:00:46.461] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:00:46.461] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:00:46.461] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:00:46.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:00:46.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:00:46.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:00:46 GMT
[2021-06-28 20:00:46.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:00:46.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:00:46.462] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:00:46.463] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 20:00:46.463] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:00:46.463] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:00:46.992] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 20:00:46.992] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 20:00:46.993] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:00:46.993] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:00:47.002] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:00:47.003] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:00:47.010] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:00:47.011] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:00:47.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:00:47.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:00:47.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:00:47.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:00:47.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:00:47.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:00:47.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:00:47.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:00:47.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:00:47.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:00:47.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:00:47.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"02秒464毫秒","endTime":"2021-06-28 20:00:46","env":"test(192.168.41.108)","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-06-28 20:00:44","status":1,"teamId":0,"total":1}
[2021-06-28 20:00:47.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:00:47.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:00:47.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:00:47.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:00:47.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:00:47.586] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:00:47.586] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:00:47.586] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:00:47.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:00:47.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:00:47.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:00:47.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:00:47 GMT
[2021-06-28 20:00:47.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:00:47.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:00:47.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:00:47.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 20:00:47.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:00:47.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:00:47.590] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:00:46:测试集结束======
[2021-06-28 20:00:47.590] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒464毫秒======
[2021-06-28 20:05:01.685] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 20:05:01.845] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:05:01:测试集开始======
[2021-06-28 20:05:02.183] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 20:05:02:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 20:05:02.193] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:05:02.409] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:05:02.604] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:05:02.604] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:05:02.604] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:05:02.604] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:05:02.604] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:05:02.605] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:05:02.605] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:05:02.606] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 20:05:02.606] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:05:02.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 20:05:02.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:05:02.607] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:05:03.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:05:03.057] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:05:03.058] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:05:03.058] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:05:03.058] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:05:03.058] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:05:03.058] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:05:03.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 20:05:03.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:05:02 GMT
[2021-06-28 20:05:03.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:05:03.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:05:03.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:05:03.060] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"5da38faabd4248a09cb067b36439ef49","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 20:05:03.061] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:05:03.064] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:05:03.066] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:05:03.067] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:05:03.120] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:05:03.121] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:05:03.121] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:05:03.122] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:05:03.122] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:05:03.122] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:5da38faabd4248a09cb067b36439ef49
[2021-06-28 20:05:03.123] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:05:03.123] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:05:03.123] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 20:05:03.123] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:05:03.123] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 20:05:03.124] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:05:03.124] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:05:03.399] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:05:03.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:05:03.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:05:03.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:05:03.400] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:05:03.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:05:03.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:05:03.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:05:03.401] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:05:03 GMT
[2021-06-28 20:05:03.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:05:03.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:05:03.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:05:03.402] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 20:05:03.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:05:03.404] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:05:03.412] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 20:05:03.412] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 20:05:03:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 20:05:03.412] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒229毫秒======
[2021-06-28 20:05:03.435] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 20:05:03.436] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:05:03.439] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:05:03.439] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:05:03.440] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 20:05:03.440] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:05:03.440] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:05:03.440] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:05:03.440] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:05:03.440] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:05:03.441] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:05:03.441] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:05:03.441] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:05:03.441] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-06-28 20:05:02:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 12:05:02 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"5da38faabd4248a09cb067b36439ef49\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"5da38faabd4248a09cb067b36439ef49\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&type=1&pageNum=1&useStatus=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 12:05:03 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":4,\"navigatepageNums\":[1,2,3,4],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png\",\"createTime\":\"2020-12-23 14:37:34\",\"refType\":1,\"id\":44,\"virtualProductId\":328,\"content\":\"每送1个,可增加房间热度10\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"每送1个,可增加房间热度10\",\"giftVersion\":24,\"price\":0,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png\",\"id\":328,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室热度礼物\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":69,\"virtualProductId\":314,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 14:48:40\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\\\",\\\"remark\\\":\\\"一心一意\\\"}]\",\"id\":55,\"virtualProductId\":314}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方185魅力值\",\"giftVersion\":11,\"price\":185,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":314,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":185,\"useStatus\":1,\"name\":\"超人泡泡糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-05-31 00:00:05\",\"labelUrl\":\"\",\"createTime\":\"2020-05-27 11:11:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":285,\"virtualProductId\":517,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png\",\"createTime\":\"2021-05-24 10:02:07\",\"refType\":1,\"id\":76,\"virtualProductId\":517,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":100,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png\",\"id\":517,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1001,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-24 10:02:08\",\"useStatus\":1,\"name\":\"皮皮糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"糖果制造机玩法礼物\",\"delFlag\":false,\"obtainType\":5,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-06-17 17:23:08\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-24 10:02:08\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:56:35\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":24,\"virtualProductId\":327}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可增加对方1魅力值\",\"giftVersion\":17,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":980,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"834861\",\"rangeName\":\"\",\"id\":242,\"virtualProductId\":474,\"roomType\":2,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png\",\"id\":474,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga\",\"giftType\":1,\"sort\":980,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-23 18:01:57\",\"useStatus\":1,\"name\":\"雾时牛啤\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"【雾时】聊天室专属礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-03-22 00:00:00\",\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 18:01:57\",\"endTime\":\"2021-08-22 23:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"3\",\"rangeName\":\"全部\",\"id\":244,\"virtualProductId\":476,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":128,\"remarkUrl\":\"\",\"id\":476,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-03-06 10:48:39\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"女生厅专属礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-03-06 10:48:39\"}},{\"virtualProductRange\":{\"roomRange\":\"17\",\"rangeName\":\"全部\",\"id\":260,\"virtualProductId\":492,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png\",\"createTime\":\"2021-05-13 15:42:15\",\"refType\":1,\"id\":73,\"virtualProductId\":492,\"content\":\"男生厅专属礼物\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":128,\"remarkUrl\":\"\",\"id\":492,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-04-20 12:01:04\",\"useStatus\":1,\"name\":\"游戏机\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 15:42:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-04-20 12:01:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":292,\"virtualProductId\":524,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":6,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":6,\"limitUpdateTime\":\"2021-05-28 17:21:11\",\"useStatus\":1,\"name\":\"爱心补给\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-28 18:00:32\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":293,\"virtualProductId\":525,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-06-02 13:43:36\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"66\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\\\",\\\"remark\\\":\\\"一切顺利\\\"}]\",\"id\":265,\"virtualProductId\":525}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png\",\"createTime\":\"2021-06-02 13:43:36\",\"refType\":1,\"id\":79,\"virtualProductId\":525,\"content\":\"一次性赠送66个该礼物,触发进阶动效。\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":10,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png\",\"id\":525,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":970,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-28 18:07:48\",\"useStatus\":1,\"name\":\"永远滴神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-06-02 13:49:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 18:07:48\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":97,\"virtualProductId\":220,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方21魅力值\",\"giftVersion\":10,\"price\":21,\"remarkUrl\":\"\",\"id\":220,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":960,\"charmValue\":21,\"useStatus\":1,\"name\":\"甜甜圈\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2019-08-07 16:02:15\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":34,\"pages\":4,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 20:05:03:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======\n======本次用例运行消耗时间 01秒229毫秒======","caseName":"testGiftList","className":"com.to8to.invoker.RulePropertyTest","durationTime":"01秒229毫秒","endTime":"2021-06-28 20:05:03","id":0,"serviceId":1,"startTime":"2021-06-28 20:05:02","status":1}
[2021-06-28 20:05:03.773] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:05:03.774] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:05:03.774] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:05:03.774] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:05:03.775] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:05:03.775] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:05:03.776] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:05:03.776] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:05:03.777] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:05:03.778] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:05:03.778] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:05:03.779] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:05:03 GMT
[2021-06-28 20:05:03.779] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:05:03.779] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:05:03.779] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:05:03.780] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 20:05:03.780] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:05:03.780] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:05:04.487] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 20:05:04.488] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 20:05:04.488] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:05:04.488] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:05:04.498] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:05:04.499] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:05:04.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:05:04.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:05:04.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:05:04.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:05:04.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:05:04.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:05:04.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:05:04.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:05:04.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:05:04.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:05:04.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:05:04.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:05:04.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:05:04.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"02秒645毫秒","endTime":"2021-06-28 20:05:04","env":"test(192.168.41.108)","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-06-28 20:05:01","status":1,"teamId":0,"total":1}
[2021-06-28 20:05:05.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:05:05.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:05:05.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:05:05.003] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:05:05.003] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:05:05.003] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:05:05.004] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:05:05.004] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:05:05.004] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:05:05.005] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:05:05.005] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:05:05.006] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:05:04 GMT
[2021-06-28 20:05:05.006] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:05:05.006] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:05:05.006] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:05:05.006] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 20:05:05.006] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:05:05.007] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:05:05.007] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:05:04:测试集结束======
[2021-06-28 20:05:05.008] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒645毫秒======
[2021-06-28 20:10:20.005] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 20:10:20.151] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:10:20:测试集开始======
[2021-06-28 20:10:20.473] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 20:10:20:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 20:10:20.482] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:10:20.685] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:10:20.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:10:20.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:10:20.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:10:20.889] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:10:20.889] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:10:20.889] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:10:20.890] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:10:20.891] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 20:10:20.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:10:20.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 20:10:20.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:10:20.892] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:10:21.287] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:10:21.287] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:10:21.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:10:21.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:10:21.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:10:21.288] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:10:21.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:10:21.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 20:10:21.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:10:20 GMT
[2021-06-28 20:10:21.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:10:21.289] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:10:21.290] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:10:21.290] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"2bf7d2f789c741bd944058a374bdcc3e","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 20:10:21.290] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:10:21.292] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:10:21.294] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:10:21.295] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:10:21.410] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:10:21.410] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:10:21.410] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:10:21.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:10:21.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:10:21.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:2bf7d2f789c741bd944058a374bdcc3e
[2021-06-28 20:10:21.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:10:21.411] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:10:21.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 20:10:21.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:10:21.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 20:10:21.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:10:21.412] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:10:21.622] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:10:21.622] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:10:21.622] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:10:21.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:10:21.623] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:10:21.624] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:10:21.624] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:10:21.624] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:10:21.625] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:10:21 GMT
[2021-06-28 20:10:21.625] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:10:21.625] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:10:21.625] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:10:21.626] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 20:10:21.629] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:10:21.629] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:10:21.634] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 20:10:21.635] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 20:10:21:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 20:10:21.636] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒162毫秒======
[2021-06-28 20:10:21.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 20:10:21.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:10:21.666] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:10:21.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:10:21.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 20:10:21.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:10:21.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:10:21.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:10:21.667] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:10:21.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:10:21.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:10:21.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:10:21.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:10:21.668] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-06-28 20:10:20:用例【com.to8to.invoker.RulePropertyTest.testGiftList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 12:10:20 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"2bf7d2f789c741bd944058a374bdcc3e\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"2bf7d2f789c741bd944058a374bdcc3e\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&type=1&pageNum=1&useStatus=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 12:10:21 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":4,\"navigatepageNums\":[1,2,3,4],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png\",\"createTime\":\"2020-12-23 14:37:34\",\"refType\":1,\"id\":44,\"virtualProductId\":328,\"content\":\"每送1个,可增加房间热度10\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"每送1个,可增加房间热度10\",\"giftVersion\":24,\"price\":0,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png\",\"id\":328,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室热度礼物\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":69,\"virtualProductId\":314,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 14:48:40\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\\\",\\\"remark\\\":\\\"一心一意\\\"}]\",\"id\":55,\"virtualProductId\":314}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方185魅力值\",\"giftVersion\":11,\"price\":185,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":314,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":185,\"useStatus\":1,\"name\":\"超人泡泡糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-05-31 00:00:05\",\"labelUrl\":\"\",\"createTime\":\"2020-05-27 11:11:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":285,\"virtualProductId\":517,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png\",\"createTime\":\"2021-05-24 10:02:07\",\"refType\":1,\"id\":76,\"virtualProductId\":517,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":100,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png\",\"id\":517,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1001,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-24 10:02:08\",\"useStatus\":1,\"name\":\"皮皮糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"糖果制造机玩法礼物\",\"delFlag\":false,\"obtainType\":5,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-06-17 17:23:08\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-24 10:02:08\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:56:35\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":24,\"virtualProductId\":327}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可增加对方1魅力值\",\"giftVersion\":17,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":980,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"834861\",\"rangeName\":\"\",\"id\":242,\"virtualProductId\":474,\"roomType\":2,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png\",\"id\":474,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga\",\"giftType\":1,\"sort\":980,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-23 18:01:57\",\"useStatus\":1,\"name\":\"雾时牛啤\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"【雾时】聊天室专属礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-03-22 00:00:00\",\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 18:01:57\",\"endTime\":\"2021-08-22 23:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"3\",\"rangeName\":\"全部\",\"id\":244,\"virtualProductId\":476,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":128,\"remarkUrl\":\"\",\"id\":476,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-03-06 10:48:39\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"女生厅专属礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-03-06 10:48:39\"}},{\"virtualProductRange\":{\"roomRange\":\"17\",\"rangeName\":\"全部\",\"id\":260,\"virtualProductId\":492,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png\",\"createTime\":\"2021-05-13 15:42:15\",\"refType\":1,\"id\":73,\"virtualProductId\":492,\"content\":\"男生厅专属礼物\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":128,\"remarkUrl\":\"\",\"id\":492,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-04-20 12:01:04\",\"useStatus\":1,\"name\":\"游戏机\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 15:42:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-04-20 12:01:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":292,\"virtualProductId\":524,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":6,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":6,\"limitUpdateTime\":\"2021-05-28 17:21:11\",\"useStatus\":1,\"name\":\"爱心补给\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-28 18:00:32\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":293,\"virtualProductId\":525,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-06-02 13:43:36\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"66\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\\\",\\\"remark\\\":\\\"一切顺利\\\"}]\",\"id\":265,\"virtualProductId\":525}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png\",\"createTime\":\"2021-06-02 13:43:36\",\"refType\":1,\"id\":79,\"virtualProductId\":525,\"content\":\"一次性赠送66个该礼物,触发进阶动效。\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":10,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png\",\"id\":525,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":970,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-28 18:07:48\",\"useStatus\":1,\"name\":\"永远滴神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-06-02 13:49:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 18:07:48\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":97,\"virtualProductId\":220,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方21魅力值\",\"giftVersion\":10,\"price\":21,\"remarkUrl\":\"\",\"id\":220,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":960,\"charmValue\":21,\"useStatus\":1,\"name\":\"甜甜圈\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2019-08-07 16:02:15\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":34,\"pages\":4,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 20:10:21:用例【com.to8to.invoker.RulePropertyTest.testGiftList】结束======\n======本次用例运行消耗时间 01秒162毫秒======","caseName":"testGiftList","className":"com.to8to.invoker.RulePropertyTest","durationTime":"01秒162毫秒","endTime":"2021-06-28 20:10:21","id":0,"serviceId":1,"startTime":"2021-06-28 20:10:20","status":1}
[2021-06-28 20:10:21.755] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:10:21.755] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:10:21.755] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:10:21.755] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:10:21.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:10:21.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:10:21.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:10:21.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:10:21.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:10:21.756] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:10:21.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:10:21.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:10:21 GMT
[2021-06-28 20:10:21.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:10:21.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:10:21.757] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:10:21.758] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 20:10:21.758] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:10:21.758] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:10:22.289] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 20:10:22.290] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 20:10:22.290] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:10:22.290] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:10:22.300] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:10:22.301] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:10:22.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:10:22.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:10:22.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:10:22.323] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:10:22.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:10:22.324] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:10:22.325] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:10:22.325] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:10:22.325] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:10:22.326] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:10:22.326] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:10:22.326] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:10:22.327] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:10:22.327] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"02秒141毫秒","endTime":"2021-06-28 20:10:22","env":"test(192.168.41.108)","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-06-28 20:10:20","status":1,"teamId":0,"total":1}
[2021-06-28 20:10:22.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:10:22.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:10:22.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:10:22.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:10:22.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:10:22.612] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:10:22.612] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:10:22.612] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:10:22.612] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:10:22.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:10:22.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:10:22.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:10:21 GMT
[2021-06-28 20:10:22.614] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:10:22.614] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:10:22.614] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:10:22.614] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 20:10:22.614] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:10:22.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:10:22.615] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:10:22:测试集结束======
[2021-06-28 20:10:22.615] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒141毫秒======
[2021-06-28 20:15:26.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:15:26.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:15:27.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:15:27.109] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:15:27.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:15:27.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:15:27.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:15:27.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:15:27.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:15:27.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 20:15:27.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:15:27.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 20:15:27.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:15:27.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:15:27.502] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:15:27.503] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:15:27.503] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:15:27.503] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:15:27.503] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:15:27.503] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:15:27.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:15:27.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 20:15:27.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:15:27 GMT
[2021-06-28 20:15:27.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:15:27.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:15:27.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:15:27.504] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"81291930efa24a14aa4516668644562b","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 20:15:27.505] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:15:27.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:15:27.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:15:27.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:15:27.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:15:27.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:15:27.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:15:27.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:15:27.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:15:27.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:81291930efa24a14aa4516668644562b
[2021-06-28 20:15:27.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:15:27.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:15:27.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 20:15:27.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:15:27.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 20:15:27.600] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:15:27.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:15:27.787] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:15:27.787] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:15:27.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:15:27.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:15:27.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:15:27.795] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:15:27.796] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:15:27.797] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:15:27.798] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:15:27 GMT
[2021-06-28 20:15:27.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:15:27.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:15:27.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:15:27.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 20:15:27.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:15:27.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:18:24.082] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:18:24:测试集开始======
[2021-06-28 20:18:24.324] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-06-28 20:18:24.325] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:18:24.325] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:18:24.695] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:18:24.696] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:18:24.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:18:24.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:18:24.738] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:18:24.739] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:18:24.739] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:18:24.740] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:18:24.741] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:18:24.742] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:18:24.742] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:18:24.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:18:24.747] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:18:24.748] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:18:24.748] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:18:24.748] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"245毫秒","endTime":"2021-06-28 20:18:24","env":"test(192.168.41.108)","failed":0,"id":0,"passed":0,"serviceId":1,"skipped":0,"startTime":"2021-06-28 20:18:24","status":1,"teamId":0,"total":0}
[2021-06-28 20:18:24.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:18:24.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:18:24.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:18:24.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:18:24.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:18:24.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:18:24.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:18:24.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:18:24.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:18:24.827] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:18:24.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:18:24.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:18:24 GMT
[2021-06-28 20:18:24.828] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:18:24.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:18:24.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:18:24.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":false}
[2021-06-28 20:18:24.829] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:18:24.832] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:18:24.833] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:18:24:测试集结束======
[2021-06-28 20:18:24.834] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 245毫秒======
[2021-06-28 20:20:10.109] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:20:10:测试集开始======
[2021-06-28 20:20:10.144] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:0
[2021-06-28 20:20:10.145] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:20:10.145] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:20:10.514] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:20:10.515] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:20:10.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:20:10.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:20:10.553] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:20:10.553] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:20:10.553] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:20:10.554] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:20:10.554] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:20:10.554] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:20:10.555] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:20:10.556] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:20:10.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:20:10.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:20:10.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:20:10.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"039毫秒","endTime":"2021-06-28 20:20:10","env":"test(192.168.41.108)","failed":0,"id":0,"passed":0,"serviceId":1,"skipped":0,"startTime":"2021-06-28 20:20:10","status":1,"teamId":0,"total":0}
[2021-06-28 20:20:10.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:20:10.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:20:10.630] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:20:10.631] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:20:10.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:20:10.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:20:10.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:20:10.634] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:20:10.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:20:10.635] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:20:10.636] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:20:10.637] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:20:10 GMT
[2021-06-28 20:20:10.638] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:20:10.638] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:20:10.639] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:20:10.639] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":false}
[2021-06-28 20:20:10.642] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:20:10.645] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:20:10.646] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:20:10:测试集结束======
[2021-06-28 20:20:10.647] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 039毫秒======
[2021-06-28 20:21:55.366] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 20:21:55.520] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 20:21:55:测试集开始======
[2021-06-28 20:21:55.830] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 20:21:55:用例【com.pipi.invoker.RulePropertyTest.testGiftList】开始======
[2021-06-28 20:21:55.838] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:21:56.046] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:21:56.251] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:21:56.251] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:21:56.251] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:21:56.252] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:21:56.252] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:21:56.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:21:56.253] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:21:56.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 20:21:56.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:21:56.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 20:21:56.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:21:56.257] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:21:56.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:21:56.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:21:56.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:21:56.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:21:56.645] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:21:56.645] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:21:56.645] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:21:56.645] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 20:21:56.645] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:21:56 GMT
[2021-06-28 20:21:56.645] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:21:56.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:21:56.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:21:56.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"18929f41e817452d9d4fa5291db95807","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 20:21:56.646] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:21:56.647] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:21:56.650] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:21:56.651] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:21:56.739] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:21:56.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:21:56.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:21:56.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:21:56.740] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:21:56.741] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:18929f41e817452d9d4fa5291db95807
[2021-06-28 20:21:56.741] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:21:56.741] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:21:56.741] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 20:21:56.742] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:21:56.742] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 20:21:56.742] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:21:56.742] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:21:56.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:21:56.974] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:21:56.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:21:56.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:21:56.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:21:56.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:21:56.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:21:56.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:21:56.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:21:56 GMT
[2021-06-28 20:21:56.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:21:56.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:21:56.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:21:56.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 20:21:56.978] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:21:56.979] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:21:56.983] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 20:21:56.983] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 20:21:56:用例【com.pipi.invoker.RulePropertyTest.testGiftList】结束======
[2021-06-28 20:21:56.983] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒153毫秒======
[2021-06-28 20:21:57.011] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 20:21:57.012] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:21:57.016] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:21:57.016] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:21:57.016] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 20:21:57.017] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:21:57.017] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:21:57.017] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:21:57.017] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:21:57.017] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:21:57.017] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:21:57.018] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:21:57.018] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:21:57.018] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-06-28 20:21:55:用例【com.pipi.invoker.RulePropertyTest.testGiftList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 12:21:56 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"18929f41e817452d9d4fa5291db95807\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"18929f41e817452d9d4fa5291db95807\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&type=1&pageNum=1&useStatus=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 12:21:56 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":4,\"navigatepageNums\":[1,2,3,4],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png\",\"createTime\":\"2020-12-23 14:37:34\",\"refType\":1,\"id\":44,\"virtualProductId\":328,\"content\":\"每送1个,可增加房间热度10\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"每送1个,可增加房间热度10\",\"giftVersion\":24,\"price\":0,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png\",\"id\":328,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室热度礼物\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":69,\"virtualProductId\":314,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 14:48:40\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\\\",\\\"remark\\\":\\\"一心一意\\\"}]\",\"id\":55,\"virtualProductId\":314}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方185魅力值\",\"giftVersion\":11,\"price\":185,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":314,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":185,\"useStatus\":1,\"name\":\"超人泡泡糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-05-31 00:00:05\",\"labelUrl\":\"\",\"createTime\":\"2020-05-27 11:11:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":285,\"virtualProductId\":517,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png\",\"createTime\":\"2021-05-24 10:02:07\",\"refType\":1,\"id\":76,\"virtualProductId\":517,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":100,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png\",\"id\":517,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1001,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-24 10:02:08\",\"useStatus\":1,\"name\":\"皮皮糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"糖果制造机玩法礼物\",\"delFlag\":false,\"obtainType\":5,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-06-17 17:23:08\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-24 10:02:08\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:56:35\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":24,\"virtualProductId\":327}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可增加对方1魅力值\",\"giftVersion\":17,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":980,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"834861\",\"rangeName\":\"\",\"id\":242,\"virtualProductId\":474,\"roomType\":2,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png\",\"id\":474,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga\",\"giftType\":1,\"sort\":980,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-23 18:01:57\",\"useStatus\":1,\"name\":\"雾时牛啤\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"【雾时】聊天室专属礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-03-22 00:00:00\",\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 18:01:57\",\"endTime\":\"2021-08-22 23:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"3\",\"rangeName\":\"全部\",\"id\":244,\"virtualProductId\":476,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":128,\"remarkUrl\":\"\",\"id\":476,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-03-06 10:48:39\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"女生厅专属礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-03-06 10:48:39\"}},{\"virtualProductRange\":{\"roomRange\":\"17\",\"rangeName\":\"全部\",\"id\":260,\"virtualProductId\":492,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png\",\"createTime\":\"2021-05-13 15:42:15\",\"refType\":1,\"id\":73,\"virtualProductId\":492,\"content\":\"男生厅专属礼物\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":128,\"remarkUrl\":\"\",\"id\":492,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-04-20 12:01:04\",\"useStatus\":1,\"name\":\"游戏机\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 15:42:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-04-20 12:01:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":292,\"virtualProductId\":524,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":6,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":6,\"limitUpdateTime\":\"2021-05-28 17:21:11\",\"useStatus\":1,\"name\":\"爱心补给\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-28 18:00:32\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":293,\"virtualProductId\":525,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-06-02 13:43:36\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"66\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\\\",\\\"remark\\\":\\\"一切顺利\\\"}]\",\"id\":265,\"virtualProductId\":525}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png\",\"createTime\":\"2021-06-02 13:43:36\",\"refType\":1,\"id\":79,\"virtualProductId\":525,\"content\":\"一次性赠送66个该礼物,触发进阶动效。\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":10,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png\",\"id\":525,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":970,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-28 18:07:48\",\"useStatus\":1,\"name\":\"永远滴神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-06-02 13:49:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 18:07:48\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":97,\"virtualProductId\":220,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方21魅力值\",\"giftVersion\":10,\"price\":21,\"remarkUrl\":\"\",\"id\":220,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":960,\"charmValue\":21,\"useStatus\":1,\"name\":\"甜甜圈\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2019-08-07 16:02:15\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":34,\"pages\":4,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 20:21:56:用例【com.pipi.invoker.RulePropertyTest.testGiftList】结束======\n======本次用例运行消耗时间 01秒153毫秒======","caseName":"testGiftList","className":"com.pipi.invoker.RulePropertyTest","durationTime":"01秒153毫秒","endTime":"2021-06-28 20:21:56","id":0,"serviceId":1,"startTime":"2021-06-28 20:21:55","status":1}
[2021-06-28 20:21:57.114] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:21:57.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:21:57.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:21:57.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:21:57.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:21:57.115] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:21:57.116] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:21:57.116] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:21:57.116] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:21:57.116] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:21:57.116] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:21:57.117] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:21:57 GMT
[2021-06-28 20:21:57.117] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:21:57.117] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:21:57.117] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:21:57.117] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 20:21:57.117] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:21:57.118] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:21:57.652] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 20:21:57.652] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:1
[2021-06-28 20:21:57.652] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 20:21:57.653] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 20:21:57.662] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 20:21:57.663] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 20:21:57.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:21:57.672] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:21:57.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:21:57.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:21:57.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 20:21:57.676] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 20:21:57.676] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:21:57.676] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 20:21:57.676] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:21:57.676] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 20:21:57.676] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:21:57.677] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 20:21:57.677] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:21:57.677] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"02秒134毫秒","endTime":"2021-06-28 20:21:57","env":"test(192.168.41.108)","failed":0,"id":0,"passed":1,"serviceId":1,"skipped":0,"startTime":"2021-06-28 20:21:55","status":1,"teamId":0,"total":1}
[2021-06-28 20:21:57.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:21:57.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:21:57.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 20:21:57.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:21:57.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:21:57.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 20:21:57.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 20:21:57.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 20:21:57.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 20:21:57.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:21:57.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 20:21:57.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:21:57 GMT
[2021-06-28 20:21:57.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 20:21:57.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:21:57.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:21:57.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 20:21:57.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:21:57.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:21:57.844] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 20:21:57:测试集结束======
[2021-06-28 20:21:57.844] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 02秒134毫秒======
[2021-06-28 20:33:27.396] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:33:27.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:33:27.830] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:33:27.830] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:33:27.831] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:33:27.831] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:33:27.831] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:33:27.831] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:33:27.831] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:33:27.832] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 20:33:27.833] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:33:27.833] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 20:33:27.833] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:33:27.833] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:33:28.226] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:33:28.226] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:33:28.226] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:33:28.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:33:28.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:33:28.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:33:28.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:33:28.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 20:33:28.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:33:27 GMT
[2021-06-28 20:33:28.227] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:33:28.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:33:28.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:33:28.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"501eb4f946da40a78d95da0829068ade","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 20:33:28.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:33:28.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:33:28.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:33:28.232] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:33:28.285] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:33:28.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:33:28.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:33:28.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:33:28.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:33:28.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:501eb4f946da40a78d95da0829068ade
[2021-06-28 20:33:28.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:33:28.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:33:28.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 20:33:28.289] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:33:28.289] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 20:33:28.290] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:33:28.290] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:33:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:33:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:33:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:33:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:33:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:33:28.485] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:33:28.486] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:33:28.486] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:33:28.486] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:33:28 GMT
[2021-06-28 20:33:28.486] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:33:28.486] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:33:28.486] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:33:28.486] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 20:33:28.487] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:33:28.487] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:39:35.454] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:39:35.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:39:35.878] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:39:35.878] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:39:35.878] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 20:39:35.878] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:39:35.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:39:35.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:39:35.879] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:39:35.880] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 20:39:35.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:39:35.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 20:39:35.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:39:35.881] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:39:36.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:39:36.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:39:36.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:39:36.333] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:39:36.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:39:36.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:39:36.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:39:36.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 20:39:36.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:39:35 GMT
[2021-06-28 20:39:36.335] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:39:36.335] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:39:36.335] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:39:36.335] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"8b314b230ca54ffb8e3c87fbf3d7219a","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 20:39:36.335] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:39:36.336] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 20:39:36.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:39:36.339] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 20:39:36.421] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 20:39:36.422] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 20:39:36.422] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 20:39:36.422] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 20:39:36.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 20:39:36.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:8b314b230ca54ffb8e3c87fbf3d7219a
[2021-06-28 20:39:36.423] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 20:39:36.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 20:39:36.424] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 20:39:36.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 20:39:36.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 20:39:36.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 20:39:36.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 20:39:36.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 20:39:36.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 20:39:36.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 20:39:36.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 20:39:36.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 20:39:36.610] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 20:39:36.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 20:39:36.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 20:39:36.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 12:39:36 GMT
[2021-06-28 20:39:36.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 20:39:36.611] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 20:39:36.612] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 20:39:36.612] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 20:39:36.612] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 20:39:36.613] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:01:56.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:01:56.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:01:57.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:01:57.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:01:57.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:01:57.088] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:01:57.089] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:01:57.089] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:01:57.090] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:01:57.092] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:01:57.092] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:01:57.092] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:01:57.093] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:01:57.093] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:01:57.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:01:57.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:01:57.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:01:57.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:01:57.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:01:57.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:01:57.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:01:57.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:01:57.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:01:57 GMT
[2021-06-28 21:01:57.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:01:57.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:01:57.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:01:57.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"b191f970742141e98ed46efb19c36c42","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:01:57.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:01:57.547] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:01:57.549] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:01:57.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:01:57.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:01:57.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:01:57.604] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:01:57.605] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:01:57.605] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:01:57.605] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:b191f970742141e98ed46efb19c36c42
[2021-06-28 21:01:57.605] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:01:57.606] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:01:57.606] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:01:57.606] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:01:57.607] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:01:57.607] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:01:57.607] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:01:57.893] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:01:57.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:01:57.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:01:57.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:01:57.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:01:57.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:01:57.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:01:57.895] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:01:57.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:01:57 GMT
[2021-06-28 21:01:57.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:01:57.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:01:57.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:01:57.896] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:01:57.897] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:01:57.897] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:10:50.541] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:10:50.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:10:50.971] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:10:50.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:10:50.972] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:10:50.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:10:50.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:10:50.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:10:50.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:10:50.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:10:50.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:10:50.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:10:50.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:10:50.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:10:51.372] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:10:51.372] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:10:51.372] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:10:51.372] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:10:51.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:10:51.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:10:51.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:10:51.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:10:51.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:10:51 GMT
[2021-06-28 21:10:51.373] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:10:51.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:10:51.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:10:51.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"1251b84620314cdc80d07297c5b24a5e","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:10:51.374] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:10:51.375] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:10:51.378] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:10:51.378] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:10:51.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:10:51.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:10:51.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:10:51.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:10:51.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:10:51.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:10:51.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:10:51.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:10:51.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:10:51.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:10:51.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:10:51.432] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:10:51.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:10:51.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:10:51.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:10:51.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:10:51.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:10:51.498] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:10:51.498] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:10:51.498] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:10:51.498] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:10:51 GMT
[2021-06-28 21:10:51.498] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:10:51.498] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:10:51.499] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:10:51.499] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"04896923bd7046ed899b630c23d62745","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:10:51.499] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:10:51.499] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:10:51.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:10:51.501] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:10:51.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:10:51.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:10:51.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:10:51.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:10:51.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:10:51.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:04896923bd7046ed899b630c23d62745
[2021-06-28 21:10:51.589] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:10:51.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:10:51.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:10:51.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:10:51.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:10:51.591] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:10:51.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:10:51.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:10:51.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:10:51.769] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:10:51.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:10:51.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:10:51.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:10:51.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:10:51.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:10:51.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:10:51 GMT
[2021-06-28 21:10:51.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:10:51.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:10:51.770] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:10:51.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:10:51.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:10:51.771] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:13:28.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:13:29.162] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:13:29.359] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:13:29.360] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:13:29.361] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:13:29.361] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:13:29.361] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:13:29.362] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:13:29.362] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:13:29.365] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:13:29.365] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:13:29.366] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:13:29.366] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:13:29.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:13:29.781] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:13:29.782] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:13:29.782] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:13:29.782] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:13:29.782] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:13:29.782] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:13:29.782] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:13:29.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:13:29.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:13:29 GMT
[2021-06-28 21:13:29.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:13:29.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:13:29.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:13:29.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"b47a434ab18c4bae9cf6a16122ab1f30","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:13:29.784] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:13:29.785] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:13:29.787] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:13:29.788] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:13:29.920] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:13:29.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:13:29.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:13:29.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:13:29.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:13:29.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:13:29.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:13:29.925] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:13:29.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:13:29.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:13:29.926] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:13:29.927] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:13:30.026] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:13:30.026] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:13:30.026] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:13:30.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:13:30.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:13:30.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:13:30.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:13:30.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:13:30.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:13:29 GMT
[2021-06-28 21:13:30.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:13:30.029] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:13:30.029] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:13:30.029] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"4c067823ced844928d2521abd30fa3ad","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:13:30.029] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:13:30.030] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:13:30.030] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:13:30.031] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:13:30.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:13:30.135] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:13:30.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:13:30.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:13:30.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:13:30.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:4c067823ced844928d2521abd30fa3ad
[2021-06-28 21:13:30.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:13:30.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:13:30.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:13:30.139] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:13:30.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:13:30.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:13:30.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:13:30.425] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:13:30.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:13:30.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:13:30.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:13:30.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:13:30.426] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:13:30.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:13:30.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:13:30.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:13:30 GMT
[2021-06-28 21:13:30.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:13:30.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:13:30.427] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:13:30.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:13:30.428] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:13:30.429] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:13:45.884] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:13:46.100] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:13:46.266] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:13:46.267] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:13:46.267] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:13:46.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:13:46.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:13:46.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:13:46.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:13:46.270] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:13:46.270] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:13:46.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:13:46.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:13:46.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:13:46.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:13:46.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:13:46.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:13:46.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:13:46.626] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:13:46.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:13:46.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:13:46.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:13:46.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:13:46 GMT
[2021-06-28 21:13:46.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:13:46.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:13:46.627] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:13:46.628] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"ee1f170ab92b4150a9f0b90c4e0e54f5","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:13:46.628] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:13:46.629] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:13:46.631] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:13:46.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:13:46.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:13:46.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:13:46.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:13:46.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:13:46.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:13:46.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:13:46.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:13:46.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:13:46.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:13:46.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:13:46.725] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:13:46.726] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:13:46.797] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:13:46.798] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:13:46.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:13:46.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:13:46.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:13:46.799] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:13:46.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:13:46.800] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:13:46.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:13:46 GMT
[2021-06-28 21:13:46.801] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:13:46.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:13:46.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:13:46.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"60c1c325c805452bb5e661a26203b701","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:13:46.802] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:13:46.803] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:13:46.804] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:13:46.805] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:13:46.883] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:13:46.884] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:13:46.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:13:46.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:13:46.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:13:46.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:60c1c325c805452bb5e661a26203b701
[2021-06-28 21:13:46.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:13:46.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:13:46.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:13:46.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:13:46.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:13:46.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:13:46.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:13:47.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:13:47.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:13:47.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:13:47.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:13:47.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:13:47.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:13:47.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:13:47.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:13:47.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:13:47 GMT
[2021-06-28 21:13:47.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:13:47.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:13:47.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:13:47.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:13:47.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:13:47.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:14:26.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:14:26.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:14:26.639] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:14:26.640] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:14:26.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:14:26.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:14:26.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:14:26.641] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:14:26.642] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:14:26.643] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:14:26.643] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:14:26.644] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:14:26.644] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:14:26.644] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:14:27.014] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:14:27.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:14:27.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:14:27.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:14:27.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:14:27.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:14:27.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:14:27.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:14:27.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:14:26 GMT
[2021-06-28 21:14:27.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:14:27.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:14:27.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:14:27.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"86875eb6d8f54498bf95526f77fe9e9b","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:14:27.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:14:27.018] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:14:27.020] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:14:27.020] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:14:27.067] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:14:27.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:14:27.068] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:14:27.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:14:27.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:14:27.069] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:14:27.070] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:14:27.070] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:14:27.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:14:27.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:14:27.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:14:27.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:14:27.139] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:14:27.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:14:27.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:14:27.140] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:14:27.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:14:27.141] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:14:27.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:14:27.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:14:27.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:14:27 GMT
[2021-06-28 21:14:27.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:14:27.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:14:27.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:14:27.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"9ea593423efb47fb830f9465a7e5521d","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:14:27.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:14:27.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:14:27.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:14:27.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:14:27.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:14:27.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:14:27.193] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:14:27.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:14:27.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:14:27.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:9ea593423efb47fb830f9465a7e5521d
[2021-06-28 21:14:27.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:14:27.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:14:27.194] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:14:27.195] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:14:27.195] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:14:27.195] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:14:27.195] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:14:27.355] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:14:27.355] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:14:27.355] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:14:27.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:14:27.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:14:27.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:14:27.356] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:14:27.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:14:27.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:14:27 GMT
[2021-06-28 21:14:27.357] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:14:27.359] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:14:27.359] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:14:27.360] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:14:27.361] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:14:27.361] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:15:27.543] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:15:27.753] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:15:27.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:15:27.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:15:27.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:15:27.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:15:27.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:15:27.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:15:27.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:15:27.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:15:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:15:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:15:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:15:27.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:15:28.329] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:15:28.329] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:15:28.329] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:15:28.330] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:15:28.330] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:15:28.330] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:15:28.330] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:15:28.330] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:15:28.330] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:15:28 GMT
[2021-06-28 21:15:28.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:15:28.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:15:28.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:15:28.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"f7454ec5b6e3467e9858c46002c2dca2","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:15:28.331] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:15:28.332] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:15:28.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:15:28.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:15:28.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:15:28.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:15:28.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:15:28.416] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:15:28.416] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:15:28.416] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:15:28.417] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:15:28.417] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:15:28.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:15:28.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:15:28.418] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:15:28.419] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:15:28.489] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:15:28.490] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:15:28.490] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:15:28.491] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:15:28.491] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:15:28.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:15:28.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:15:28.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:15:28.493] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:15:28 GMT
[2021-06-28 21:15:28.494] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:15:28.494] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:15:28.495] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:15:28.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"18117dbd487445b4864e9bf879e0d1de","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:15:28.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:15:28.496] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:15:28.497] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:15:28.498] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:15:28.575] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:15:28.576] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:15:28.576] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:15:28.577] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:15:28.577] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:15:28.577] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:18117dbd487445b4864e9bf879e0d1de
[2021-06-28 21:15:28.577] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:15:28.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:15:28.578] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:15:28.579] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:15:28.579] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:15:28.579] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:15:28.580] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:15:28.749] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:15:28.749] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:15:28.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:15:28.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:15:28.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:15:28.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:15:28.750] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:15:28.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:15:28.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:15:28 GMT
[2021-06-28 21:15:28.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:15:28.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:15:28.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:15:28.751] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:15:28.752] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:15:28.752] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:24:04.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:24:04.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:24:05.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:24:05.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:24:05.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:24:05.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:24:05.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:24:05.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:24:05.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:24:05.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:24:05.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:24:05.116] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:24:05.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:24:05.117] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:24:05.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:24:05.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:24:05.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:24:05.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:24:05.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:24:05.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:24:05.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:24:05.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:24:05.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:24:05 GMT
[2021-06-28 21:24:05.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:24:05.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:24:05.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:24:05.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"57998f91916e4a8a8aef0663c27774ce","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:24:05.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:24:05.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:24:05.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://57998f91916e4a8a8aef0663c27774ce-api-admin.apeiwan.com/login
[2021-06-28 21:24:05.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:24:05.545] [main] [ERROR] - [com.fangdd.qa.framework.utils.http.HttpUtil:339] - HttpUtil execute error:
java.net.UnknownHostException: 57998f91916e4a8a8aef0663c27774ce-api-admin.apeiwan.com
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668)
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:1138)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1032)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:153)
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.getAdminToken(CosPlyaPlayerServiceImpl.java:89)
at com.pipi.qa.service.impl.CosPlyaPlayerServiceImpl.activityList(CosPlyaPlayerServiceImpl.java:350)
at com.pipi.invoker.CosPlayerTest.testActivityList(CosPlayerTest.java:62)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:104)
at org.testng.internal.MethodInvocationHelper$1.runTestMethod(MethodInvocationHelper.java:205)
at org.springframework.test.context.testng.AbstractTestNGSpringContextTests.run(AbstractTestNGSpringContextTests.java:171)
at org.testng.internal.MethodInvocationHelper.invokeHookable(MethodInvocationHelper.java:217)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:641)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:851)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1177)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:129)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
at org.testng.TestRunner.privateRun(TestRunner.java:756)
at org.testng.TestRunner.run(TestRunner.java:610)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:387)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:382)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:340)
at org.testng.SuiteRunner.run(SuiteRunner.java:289)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1293)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1218)
at org.testng.TestNG.runSuites(TestNG.java:1133)
at org.testng.TestNG.run(TestNG.java:1104)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:132)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:230)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:76)
[2021-06-28 21:24:05.549] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:24:05.555] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:24:05.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:24:05.642] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:24:05.644] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:24:05.644] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:24:05.645] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:24:05.645] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:24:05.646] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:24:05.646] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:24:05.646] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:24:05.647] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:24:05.647] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:24:05.647] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:24:05.647] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:24:05.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:24:05.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:24:05.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:24:05.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:24:05.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:24:05.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:24:05.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:24:05.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:24:05.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:24:05 GMT
[2021-06-28 21:24:05.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:24:05.719] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:24:05.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:24:05.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"c44a984d7f814d2abe7c86d23d9c3151","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:24:05.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:24:05.720] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:24:05.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:24:05.721] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:24:05.777] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:24:05.777] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:24:05.777] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:24:05.777] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:24:05.777] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:24:05.778] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:24:05.778] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:24:05.778] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:24:05.778] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:24:05.778] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:24:05.778] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:24:05.778] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:24:05.861] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:24:05.862] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:24:05.862] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:24:05.862] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:24:05.863] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:24:05.863] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:24:05.863] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:24:05.863] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:24:05.863] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:24:05 GMT
[2021-06-28 21:24:05.863] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:24:05.863] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:24:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:24:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"089351430a2647f3b19050c7a30c15de","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:24:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:24:05.864] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:24:05.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:24:05.865] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:24:05.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:24:05.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:24:05.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:24:05.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:24:05.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:24:05.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:089351430a2647f3b19050c7a30c15de
[2021-06-28 21:24:05.947] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:24:05.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:24:05.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:24:05.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:24:05.948] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:24:05.949] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:24:05.949] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:24:06.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:24:06.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:24:06.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:24:06.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:24:06.136] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:24:06.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:24:06.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:24:06.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:24:06.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:24:06 GMT
[2021-06-28 21:24:06.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:24:06.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:24:06.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:24:06.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:24:06.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:24:06.139] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:25:37.268] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:25:37.491] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:25:37.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:25:37.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:25:37.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:25:37.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:25:37.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:25:37.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:25:37.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:25:37.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:25:37.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:25:37.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:25:37.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:25:37.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:25:38.027] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:25:38.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:25:38.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:25:38.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:25:38.028] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:25:38.029] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:25:38.029] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:25:38.029] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:25:38.029] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:25:37 GMT
[2021-06-28 21:25:38.029] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:25:38.030] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:25:38.030] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:25:38.030] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"96573cde4ebd4cdabe91ed308a01619d","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:25:38.030] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:25:38.031] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:25:38.034] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-06-28 21:25:38.034] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:25:38.112] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:25:38.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:25:38.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-06-28 21:25:38.113] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:25:38.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:25:38.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:96573cde4ebd4cdabe91ed308a01619d
[2021-06-28 21:25:38.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:25:38.114] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:25:38.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-06-28 21:25:38.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:25:38.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-06-28 21:25:38.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:25:38.115] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:25:38.487] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:25:38.487] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:25:38.487] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:25:38.487] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:25:38.488] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:25:38.488] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:25:38.488] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:25:38.489] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:25:38.489] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:25:38 GMT
[2021-06-28 21:25:38.489] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:25:38.489] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:25:38.489] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:25:38.489] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":3,"navigatepageNums":[1,2,3],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"remark":"","openedTimes":25198,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\",\"decorationId\":365,\"decorationName\":\"萌小兔座位框\"}","lotteryRules":"[{\"amount\":210,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿瓶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5fa24da0548944d28cbd6cb2aea0617a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1427},{\"amount\":266,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1428},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1429},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1430},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/8b79080ee17d4e4f98a37dee5d6e1d25.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1431},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1432},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1433},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1434},{\"amount\":66666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-时光之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/d2db47083eaa40de9c8b324bc41ea564.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1435},{\"amount\":18888,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-爱恋之城\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/1b3cae6c924b4c8db2cf70e00435f18a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1436}]","id":189,"operatorId":25,"rewardLotteryCount":25198,"openRewardDiamonds":22563247,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:26","sort":121,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":1023301,"openPayDiamonds":0,"createTime":"2021-05-24 12:04:17","name":"梦幻糖果机","remainLotteryCount":794,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":216285,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\",\"decorationId\":224,\"decorationName\":\"绚烂阳光座位框\"}","lotteryRules":"[{\"amount\":21,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-蓝色焰火*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1414},{\"amount\":30,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-小礼花*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1415},{\"amount\":52,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-点赞*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1416},{\"amount\":66,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-乐符*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/b436e56b9f7e4c6aab4d9318e3221362.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1417},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-水晶瓶*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/3de3e42108db46f08eecf50a073cff90.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1418},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天鹅之恋*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1419},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天生一对*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1420},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-一生有你*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/65e3617e22f545ec887c66f02d1a7a6f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1421},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-为你摘星*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/e19bacb19bfa46f481bb8c16dc02747e.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1422},{\"amount\":2000,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-梦幻奇遇*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/6b487a5275984ba1a779fa5436c88d19.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1423}]","id":188,"operatorId":25,"rewardLotteryCount":216285,"openRewardDiamonds":19093404,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:19","sort":120,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":172431,"openPayDiamonds":0,"createTime":"2021-05-24 11:55:16","name":"甜心糖果机","remainLotteryCount":1556,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":5,"staticUrl":"null","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小开心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1289},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小蛋糕*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f23a2d65b84444afba2fa0c518793e48.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1290},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小嘎嘎*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/00527efdb7514484acd8f91740244781.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1291},{\"amount\":5,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-鼓掌*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1292}]","id":157,"operatorId":34,"rewardLotteryCount":5,"openRewardDiamonds":5,"objectGifUrl":"null","updateTime":"2021-04-28 16:21:39","sort":113,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":775,"openPayDiamonds":0,"createTime":"2021-04-28 14:38:56","name":"梦幻测试","remainLotteryCount":295,"activityType":1,"priceRules":"[{\"price\":\"2\",\"times\":\"1\"},{\"price\":\"10\",\"times\":\"5\"},{\"price\":\"20\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":47,"delFlag":false,"operatorName":"章宇","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-甜甜草莓*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1285},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-荧光棒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/19/22ef4d05f54a4b3298d8c12cdb2bae19.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1286},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-萤火虫*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1287},{\"amount\":7,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-小花朵*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1288}]","id":156,"operatorId":25,"rewardLotteryCount":47,"openRewardDiamonds":81,"sort":111,"remainLotteryDiamonds":1599,"openPayDiamonds":0,"createTime":"2021-04-28 14:37:13","name":"甜心测试","remainLotteryCount":353,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"4/23日刷新","openedTimes":3449320,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/7c31798619334da792fff5279b8ec7bf.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/33a2ea85233149debbfcb2cfc19e0b67.png","lotteryActivityId":152,"createTime":"2021-06-16 10:06:26","id":127,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1241},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1240},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1239},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1238},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1237},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1236},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小可乐\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/9ce71421d70d47b099995395e9e330d9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1235},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-四叶草\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1234},{\"amount\":7,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小花朵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1233},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1232},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1231},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小开心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1230}]","id":152,"operatorId":34,"rewardLotteryCount":3449320,"openRewardDiamonds":34507957,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga","updateTime":"2021-06-16 10:06:26","sort":60,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e228e5a2414145809b4abc41efacbbba.webp","remainLotteryDiamonds":3420,"openPayDiamonds":34493160,"createTime":"2021-04-23 18:20:19","name":"普通宝箱","remainLotteryCount":316,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4/23日刷新","openedTimes":279590,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/717f1ee388b24e38b5888485e5299472.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c42f032ebb9f43ff81a127d8bd4b1a19.png","lotteryActivityId":153,"createTime":"2021-06-16 10:06:45","id":128,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=153&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1253},{\"amount\":1066,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-好运锦鲤\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1252},{\"amount\":990,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-心愿许愿池\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1251},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1250},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1249},{\"amount\":222,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-感恩豹豹\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1248},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天鹅之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1247},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1246},{\"amount\":122,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-告白气球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1244},{\"amount\":106,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1243},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-幸运铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1242},{\"amount\":15000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-魔法城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1256},{\"amount\":10000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-暗夜城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1255},{\"amount\":3000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-星辰之钥\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1254},{\"amount\":135,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-木碗星空*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e0549adc52ff4c1394cf3d41bad12237.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1284}]","id":153,"operatorId":34,"rewardLotteryCount":279590,"openRewardDiamonds":62638881,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga","updateTime":"2021-06-16 10:06:45","sort":59,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/bba8816d05324864bdbd80ca475525ae.webp","remainLotteryDiamonds":145334,"openPayDiamonds":58711800,"createTime":"2021-04-23 18:37:26","name":"白银宝箱","remainLotteryCount":546,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":155474,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/b97af0eb6d784dad9557d4f4c734fc2d.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da468049c9a4df7aea562239b93bdab.png","lotteryActivityId":154,"createTime":"2021-06-16 10:06:53","id":129,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=gold&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\",\"decorationId\":231,\"decorationName\":\"耀金座位框\"}","lotteryRules":"[{\"amount\":33440,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-深海精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/05b37aede2014994a3094c7ccab4e55a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1268},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1267},{\"amount\":2998,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-花开万物\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6145fc5f4bb24a99a972764527999da7.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1266},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1265},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-圆梦精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/0a49819db4d542c1be74f52fe72def0f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1264},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1263},{\"amount\":666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/4/4c21272581fa4bb9aca4c0df6567a70e.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1262},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1261},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-天生一对\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1260},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1259},{\"amount\":300,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-飞鸽传书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9d32f897dcf34ff6948cff77d3ebb30c.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1258},{\"amount\":222,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-广寒月\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9f34c21030404601aaacfebea908f7ee.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1257}]","id":154,"operatorId":34,"rewardLotteryCount":155474,"openRewardDiamonds":108134265,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga","updateTime":"2021-06-16 10:06:53","sort":58,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/d31522c02db2434d9879a0f60005092b.webp","remainLotteryDiamonds":310175,"openPayDiamonds":103545684,"createTime":"2021-04-23 18:49:41","name":"黄金宝箱","remainLotteryCount":510,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":209616,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/ed1d7bf6ce3347a7b7d57ae1196b6e23.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/873b5a8b240349fb8c310d314e6fb32b.png","lotteryActivityId":155,"createTime":"2021-06-16 10:07:01","id":130,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=magic&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\",\"decorationId\":232,\"decorationName\":\"幻尊座位框\"}","lotteryRules":"[{\"amount\":58888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-浴火凤凰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f6c6128dfdaf400384125602fc516504.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1280},{\"amount\":9999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-毁灭魔法\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0b8db93fb99d445d8cd18923b759669a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1279},{\"amount\":8888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-战神之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f3f840c6159c42ec8e25d86328d0555c.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1278},{\"amount\":6666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恶魔之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/4e0febbdd402462b841d34a92949e667.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1277},{\"amount\":1688,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天使之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/498d1b0089e84308801095724e0593e6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1276},{\"amount\":1199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-白马王子\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/68e1039b32da4dd080a339e25529a9ff.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1275},{\"amount\":999,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-破茧成蝶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6c65021c3fab48ba949b9036b448dc1a.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1274},{\"amount\":568,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鎏金百合\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2601a655d29e4f74954aa67919557d53.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1273},{\"amount\":455,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔法手杖\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/7/21/2a8944054a554632b62c4cc7d7a076b4.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1272},{\"amount\":388,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔力娃娃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e6600ac593bc4ae88b95049bca873fd6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1271},{\"amount\":299,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-万箭穿心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/5b77d17b7a9c4c75a36286771eaedac9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1270},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-紫惊雷\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/44cf7b20185742fea258deffe6f11e45.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1269}]","id":155,"operatorId":34,"rewardLotteryCount":209616,"openRewardDiamonds":207980409,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga","updateTime":"2021-06-16 10:07:01","sort":57,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c467ccae646a4904bf580e3f2baffbb8.webp","remainLotteryDiamonds":659306,"openPayDiamonds":209406384,"createTime":"2021-04-23 19:19:29","name":"魔幻宝箱","remainLotteryCount":353,"activityType":1,"priceRules":"[{\"price\":\"999\",\"times\":\"1\"},{\"price\":\"4995\",\"times\":\"5\"},{\"price\":\"9990\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4月7日刷新","openedTimes":2574673,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/7f480df733a64dbcb2e0a1d61da99295.png","delFlag":false,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/4da3ee04c91e42249905d614d2d14627.png","lotteryActivityId":149,"createTime":"2021-04-24 20:39:54","id":74,"content":"","activityH5Url":"https://h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1185},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1184},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1183},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1182},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1181},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1180},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-心相印\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1179},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿星\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/cb68fc35ea3e42d6bf7b4149ecb9d91b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1178},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小心心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/364b732988a64d1aa4c7d6e4594607fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1177},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1176},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1175},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-甜甜草莓\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1174}]","id":149,"operatorId":139,"rewardLotteryCount":2574673,"openRewardDiamonds":25548878,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/580c3d76e85c42eaaf6cde0a4a8038fd.svga","updateTime":"2021-04-24 20:39:55","sort":53,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/a49899ab5cb44bd6a659e8244ca1d0a3.webp","remainLotteryDiamonds":13372,"openPayDiamonds":25746730,"createTime":"2021-04-07 10:49:04","name":"普通宝箱","remainLotteryCount":1288,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"4月7日刷新","openedTimes":155755,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/fcdc82b7cf044a2e810dba863dfc90d3.png","delFlag":false,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/8d729db7b2d34cf4a93165c3a85104ed.png","lotteryActivityId":148,"createTime":"2021-04-24 20:40:09","id":75,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=148&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":15000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-魔法城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1173},{\"amount\":10000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-暗夜城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1172},{\"amount\":3000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-星辰之钥\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1171},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1170},{\"amount\":1066,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-好运锦鲤\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1169},{\"amount\":990,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-心愿许愿池\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1168},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1167},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1166},{\"amount\":222,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-感恩豹豹\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1165},{\"amount\":202,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-火花闪闪\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/d54cf1d5c1e24a2c8134e0912a0489e5.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1164},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1163},{\"amount\":128,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-星缤乐\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/ae30fc413a3e493f86707f9eb266a6d2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1162},{\"amount\":122,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-告白气球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1161},{\"amount\":106,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1160},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-冰淇淋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f751d14df3f143f2956e65545a0fba0f.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1159}]","id":148,"operatorId":139,"rewardLotteryCount":155755,"openRewardDiamonds":34290329,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/7ff85fc4ff684b14819318e632b5f4a5.svga","updateTime":"2021-04-24 20:40:10","sort":52,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/92989c97fd8e40319e6d1ed460bce0c4.webp","remainLotteryDiamonds":890573,"openPayDiamonds":32708550,"createTime":"2021-04-06 20:25:46","name":"白银宝箱","remainLotteryCount":4255,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":false,"status":0}],"pageNum":1,"navigatePages":8,"total":28,"pages":3,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:25:38.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:25:38.492] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:25:38.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:25:38.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:25:38.583] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:25:38.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:25:38.584] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:25:38.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:25:38.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:25:38.585] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:25:38.586] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:25:38.586] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:25:38.586] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:25:38.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:25:38.587] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:25:38.588] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:25:38.653] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:25:38.653] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:25:38.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:25:38.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:25:38.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:25:38.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:25:38.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:25:38.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:25:38.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:25:38 GMT
[2021-06-28 21:25:38.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:25:38.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:25:38.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:25:38.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"555fb9f5ffc44a3eae2baad6b29da097","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:25:38.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:25:38.658] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:25:38.659] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:25:38.659] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:25:38.707] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:25:38.707] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:25:38.707] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:25:38.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:25:38.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:25:38.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:25:38.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:25:38.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:25:38.708] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:25:38.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:25:38.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:25:38.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:25:38.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:25:38.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:25:38.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:25:38.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:25:38.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:25:38.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:25:38.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:25:38.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:25:38.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:25:38 GMT
[2021-06-28 21:25:38.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:25:38.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:25:38.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:25:38.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"ab64519c7b3c48f8acc39c84f9b100a2","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:25:38.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:25:38.775] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:25:38.775] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:25:38.775] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:25:38.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:25:38.851] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:25:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:25:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:25:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:25:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:ab64519c7b3c48f8acc39c84f9b100a2
[2021-06-28 21:25:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:25:38.852] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:25:38.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:25:38.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:25:38.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:25:38.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:25:38.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:25:39.011] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:25:39.011] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:25:39.012] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:25:39.012] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:25:39.012] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:25:39.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:25:39.013] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:25:39.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:25:39.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:25:38 GMT
[2021-06-28 21:25:39.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:25:39.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:25:39.015] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:25:39.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:25:39.016] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:25:39.017] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:26:25.622] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 21:26:25.771] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 21:26:25:测试集开始======
[2021-06-28 21:26:26.050] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:26:26:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-06-28 21:26:26.059] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:26:26.297] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:26:26.509] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:26:26.510] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:26:26.511] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:26:26.512] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:26:26.512] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:26:26.513] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:26:26.514] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:26:26.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:26:26.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:26:26.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:26:26.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:26:26.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:26:26.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:26:26.919] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:26:26.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:26:26.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:26:26.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:26:26.920] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:26:26.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:26:26.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:26:26.921] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:26:26 GMT
[2021-06-28 21:26:26.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:26:26.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:26:26.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:26:26.922] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"e96d032b573d45ff89dd6a9e9fa1c3dd","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:26:26.923] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:26:26.924] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:26:26.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-06-28 21:26:26.927] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:26:27.004] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:26:27.005] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:26:27.006] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-06-28 21:26:27.006] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:26:27.007] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:26:27.008] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:e96d032b573d45ff89dd6a9e9fa1c3dd
[2021-06-28 21:26:27.008] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:26:27.008] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:26:27.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-06-28 21:26:27.009] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:26:27.010] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-06-28 21:26:27.010] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:26:27.011] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:26:27.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:26:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:26:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:26:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:26:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:26:27.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:26:27.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:26:27.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:26:27.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:26:27 GMT
[2021-06-28 21:26:27.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:26:27.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:26:27.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:26:27.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":3,"navigatepageNums":[1,2,3],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"remark":"","openedTimes":25198,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\",\"decorationId\":365,\"decorationName\":\"萌小兔座位框\"}","lotteryRules":"[{\"amount\":210,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿瓶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5fa24da0548944d28cbd6cb2aea0617a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1427},{\"amount\":266,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1428},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1429},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1430},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/8b79080ee17d4e4f98a37dee5d6e1d25.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1431},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1432},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1433},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1434},{\"amount\":66666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-时光之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/d2db47083eaa40de9c8b324bc41ea564.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1435},{\"amount\":18888,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-爱恋之城\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/1b3cae6c924b4c8db2cf70e00435f18a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1436}]","id":189,"operatorId":25,"rewardLotteryCount":25198,"openRewardDiamonds":22563247,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:26","sort":121,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":1023301,"openPayDiamonds":0,"createTime":"2021-05-24 12:04:17","name":"梦幻糖果机","remainLotteryCount":794,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":216285,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\",\"decorationId\":224,\"decorationName\":\"绚烂阳光座位框\"}","lotteryRules":"[{\"amount\":21,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-蓝色焰火*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1414},{\"amount\":30,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-小礼花*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1415},{\"amount\":52,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-点赞*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1416},{\"amount\":66,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-乐符*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/b436e56b9f7e4c6aab4d9318e3221362.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1417},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-水晶瓶*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/3de3e42108db46f08eecf50a073cff90.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1418},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天鹅之恋*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1419},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天生一对*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1420},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-一生有你*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/65e3617e22f545ec887c66f02d1a7a6f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1421},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-为你摘星*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/e19bacb19bfa46f481bb8c16dc02747e.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1422},{\"amount\":2000,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-梦幻奇遇*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/6b487a5275984ba1a779fa5436c88d19.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1423}]","id":188,"operatorId":25,"rewardLotteryCount":216285,"openRewardDiamonds":19093404,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:19","sort":120,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":172431,"openPayDiamonds":0,"createTime":"2021-05-24 11:55:16","name":"甜心糖果机","remainLotteryCount":1556,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":5,"staticUrl":"null","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小开心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1289},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小蛋糕*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f23a2d65b84444afba2fa0c518793e48.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1290},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小嘎嘎*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/00527efdb7514484acd8f91740244781.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1291},{\"amount\":5,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-鼓掌*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1292}]","id":157,"operatorId":34,"rewardLotteryCount":5,"openRewardDiamonds":5,"objectGifUrl":"null","updateTime":"2021-04-28 16:21:39","sort":113,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":775,"openPayDiamonds":0,"createTime":"2021-04-28 14:38:56","name":"梦幻测试","remainLotteryCount":295,"activityType":1,"priceRules":"[{\"price\":\"2\",\"times\":\"1\"},{\"price\":\"10\",\"times\":\"5\"},{\"price\":\"20\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":47,"delFlag":false,"operatorName":"章宇","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-甜甜草莓*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1285},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-荧光棒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/19/22ef4d05f54a4b3298d8c12cdb2bae19.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1286},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-萤火虫*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1287},{\"amount\":7,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-小花朵*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1288}]","id":156,"operatorId":25,"rewardLotteryCount":47,"openRewardDiamonds":81,"sort":111,"remainLotteryDiamonds":1599,"openPayDiamonds":0,"createTime":"2021-04-28 14:37:13","name":"甜心测试","remainLotteryCount":353,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"4/23日刷新","openedTimes":3449320,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/7c31798619334da792fff5279b8ec7bf.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/33a2ea85233149debbfcb2cfc19e0b67.png","lotteryActivityId":152,"createTime":"2021-06-16 10:06:26","id":127,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1241},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1240},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1239},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1238},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1237},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1236},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小可乐\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/9ce71421d70d47b099995395e9e330d9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1235},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-四叶草\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1234},{\"amount\":7,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小花朵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1233},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1232},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1231},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小开心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1230}]","id":152,"operatorId":34,"rewardLotteryCount":3449320,"openRewardDiamonds":34507957,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga","updateTime":"2021-06-16 10:06:26","sort":60,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e228e5a2414145809b4abc41efacbbba.webp","remainLotteryDiamonds":3420,"openPayDiamonds":34493160,"createTime":"2021-04-23 18:20:19","name":"普通宝箱","remainLotteryCount":316,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4/23日刷新","openedTimes":279590,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/717f1ee388b24e38b5888485e5299472.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c42f032ebb9f43ff81a127d8bd4b1a19.png","lotteryActivityId":153,"createTime":"2021-06-16 10:06:45","id":128,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=153&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1253},{\"amount\":1066,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-好运锦鲤\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1252},{\"amount\":990,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-心愿许愿池\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1251},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1250},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1249},{\"amount\":222,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-感恩豹豹\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1248},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天鹅之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1247},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1246},{\"amount\":122,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-告白气球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1244},{\"amount\":106,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1243},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-幸运铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1242},{\"amount\":15000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-魔法城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1256},{\"amount\":10000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-暗夜城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1255},{\"amount\":3000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-星辰之钥\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1254},{\"amount\":135,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-木碗星空*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e0549adc52ff4c1394cf3d41bad12237.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1284}]","id":153,"operatorId":34,"rewardLotteryCount":279590,"openRewardDiamonds":62638881,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga","updateTime":"2021-06-16 10:06:45","sort":59,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/bba8816d05324864bdbd80ca475525ae.webp","remainLotteryDiamonds":145334,"openPayDiamonds":58711800,"createTime":"2021-04-23 18:37:26","name":"白银宝箱","remainLotteryCount":546,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":155474,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/b97af0eb6d784dad9557d4f4c734fc2d.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da468049c9a4df7aea562239b93bdab.png","lotteryActivityId":154,"createTime":"2021-06-16 10:06:53","id":129,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=gold&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\",\"decorationId\":231,\"decorationName\":\"耀金座位框\"}","lotteryRules":"[{\"amount\":33440,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-深海精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/05b37aede2014994a3094c7ccab4e55a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1268},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1267},{\"amount\":2998,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-花开万物\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6145fc5f4bb24a99a972764527999da7.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1266},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1265},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-圆梦精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/0a49819db4d542c1be74f52fe72def0f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1264},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1263},{\"amount\":666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/4/4c21272581fa4bb9aca4c0df6567a70e.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1262},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1261},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-天生一对\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1260},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1259},{\"amount\":300,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-飞鸽传书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9d32f897dcf34ff6948cff77d3ebb30c.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1258},{\"amount\":222,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-广寒月\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9f34c21030404601aaacfebea908f7ee.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1257}]","id":154,"operatorId":34,"rewardLotteryCount":155474,"openRewardDiamonds":108134265,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga","updateTime":"2021-06-16 10:06:53","sort":58,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/d31522c02db2434d9879a0f60005092b.webp","remainLotteryDiamonds":310175,"openPayDiamonds":103545684,"createTime":"2021-04-23 18:49:41","name":"黄金宝箱","remainLotteryCount":510,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":209616,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/ed1d7bf6ce3347a7b7d57ae1196b6e23.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/873b5a8b240349fb8c310d314e6fb32b.png","lotteryActivityId":155,"createTime":"2021-06-16 10:07:01","id":130,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=magic&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\",\"decorationId\":232,\"decorationName\":\"幻尊座位框\"}","lotteryRules":"[{\"amount\":58888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-浴火凤凰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f6c6128dfdaf400384125602fc516504.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1280},{\"amount\":9999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-毁灭魔法\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0b8db93fb99d445d8cd18923b759669a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1279},{\"amount\":8888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-战神之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f3f840c6159c42ec8e25d86328d0555c.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1278},{\"amount\":6666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恶魔之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/4e0febbdd402462b841d34a92949e667.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1277},{\"amount\":1688,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天使之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/498d1b0089e84308801095724e0593e6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1276},{\"amount\":1199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-白马王子\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/68e1039b32da4dd080a339e25529a9ff.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1275},{\"amount\":999,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-破茧成蝶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6c65021c3fab48ba949b9036b448dc1a.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1274},{\"amount\":568,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鎏金百合\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2601a655d29e4f74954aa67919557d53.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1273},{\"amount\":455,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔法手杖\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/7/21/2a8944054a554632b62c4cc7d7a076b4.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1272},{\"amount\":388,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔力娃娃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e6600ac593bc4ae88b95049bca873fd6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1271},{\"amount\":299,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-万箭穿心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/5b77d17b7a9c4c75a36286771eaedac9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1270},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-紫惊雷\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/44cf7b20185742fea258deffe6f11e45.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1269}]","id":155,"operatorId":34,"rewardLotteryCount":209616,"openRewardDiamonds":207980409,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga","updateTime":"2021-06-16 10:07:01","sort":57,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c467ccae646a4904bf580e3f2baffbb8.webp","remainLotteryDiamonds":659306,"openPayDiamonds":209406384,"createTime":"2021-04-23 19:19:29","name":"魔幻宝箱","remainLotteryCount":353,"activityType":1,"priceRules":"[{\"price\":\"999\",\"times\":\"1\"},{\"price\":\"4995\",\"times\":\"5\"},{\"price\":\"9990\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4月7日刷新","openedTimes":2574673,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/7f480df733a64dbcb2e0a1d61da99295.png","delFlag":false,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/4da3ee04c91e42249905d614d2d14627.png","lotteryActivityId":149,"createTime":"2021-04-24 20:39:54","id":74,"content":"","activityH5Url":"https://h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1185},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1184},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1183},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1182},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1181},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1180},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-心相印\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1179},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿星\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/cb68fc35ea3e42d6bf7b4149ecb9d91b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1178},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小心心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/364b732988a64d1aa4c7d6e4594607fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1177},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1176},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1175},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-甜甜草莓\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1174}]","id":149,"operatorId":139,"rewardLotteryCount":2574673,"openRewardDiamonds":25548878,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/580c3d76e85c42eaaf6cde0a4a8038fd.svga","updateTime":"2021-04-24 20:39:55","sort":53,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/a49899ab5cb44bd6a659e8244ca1d0a3.webp","remainLotteryDiamonds":13372,"openPayDiamonds":25746730,"createTime":"2021-04-07 10:49:04","name":"普通宝箱","remainLotteryCount":1288,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"4月7日刷新","openedTimes":155755,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/fcdc82b7cf044a2e810dba863dfc90d3.png","delFlag":false,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/8d729db7b2d34cf4a93165c3a85104ed.png","lotteryActivityId":148,"createTime":"2021-04-24 20:40:09","id":75,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=148&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":15000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-魔法城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1173},{\"amount\":10000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-暗夜城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1172},{\"amount\":3000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-星辰之钥\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1171},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1170},{\"amount\":1066,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-好运锦鲤\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1169},{\"amount\":990,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-心愿许愿池\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1168},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1167},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1166},{\"amount\":222,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-感恩豹豹\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1165},{\"amount\":202,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-火花闪闪\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/d54cf1d5c1e24a2c8134e0912a0489e5.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1164},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1163},{\"amount\":128,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-星缤乐\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/ae30fc413a3e493f86707f9eb266a6d2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1162},{\"amount\":122,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-告白气球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1161},{\"amount\":106,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1160},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-冰淇淋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f751d14df3f143f2956e65545a0fba0f.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1159}]","id":148,"operatorId":139,"rewardLotteryCount":155755,"openRewardDiamonds":34290329,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/7ff85fc4ff684b14819318e632b5f4a5.svga","updateTime":"2021-04-24 20:40:10","sort":52,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/92989c97fd8e40319e6d1ed460bce0c4.webp","remainLotteryDiamonds":890573,"openPayDiamonds":32708550,"createTime":"2021-04-06 20:25:46","name":"白银宝箱","remainLotteryCount":4255,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":false,"status":0}],"pageNum":1,"navigatePages":8,"total":28,"pages":3,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:26:27.319] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:26:27.319] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:26:27.330] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-06-28 21:26:27.331] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:26:27:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-06-28 21:26:27.331] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒281毫秒======
[2021-06-28 21:26:27.359] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:26:27.360] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:26:27.367] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:26:27.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:26:27.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:26:27.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 21:26:27.368] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:26:27.369] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 21:26:27.369] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:26:27.369] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 21:26:27.369] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:26:27.369] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 21:26:27.369] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:26:27.369] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-06-28 21:26:26:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 13:26:26 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"e96d032b573d45ff89dd6a9e9fa1c3dd\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"e96d032b573d45ff89dd6a9e9fa1c3dd\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"activityType\":\"1\",\"pageNum\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&activityType=1&pageNum=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 13:26:27 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":3,\"navigatepageNums\":[1,2,3],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"remark\":\"\",\"openedTimes\":25198,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\\\",\\\"decorationId\\\":365,\\\"decorationName\\\":\\\"萌小兔座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":210,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-许愿瓶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5fa24da0548944d28cbd6cb2aea0617a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1427},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1428},{\\\"amount\\\":406,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1429},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1430},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/8b79080ee17d4e4f98a37dee5d6e1d25.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1431},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1432},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1433},{\\\"amount\\\":13140,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1434},{\\\"amount\\\":66666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-时光之恋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/d2db47083eaa40de9c8b324bc41ea564.png\\\",\\\"rewardLevel\\\":4,\\\"isNew\\\":0,\\\"lotteryId\\\":1435},{\\\"amount\\\":18888,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-爱恋之城\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/1b3cae6c924b4c8db2cf70e00435f18a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1436}]\",\"id\":189,\"operatorId\":25,\"rewardLotteryCount\":25198,\"openRewardDiamonds\":22563247,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:26\",\"sort\":121,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":1023301,\"openPayDiamonds\":0,\"createTime\":\"2021-05-24 12:04:17\",\"name\":\"梦幻糖果机\",\"remainLotteryCount\":794,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":216285,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\\\",\\\"decorationId\\\":224,\\\"decorationName\\\":\\\"绚烂阳光座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-蓝色焰火*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1414},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小礼花*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1415},{\\\"amount\\\":52,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-点赞*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1416},{\\\"amount\\\":66,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-乐符*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/b436e56b9f7e4c6aab4d9318e3221362.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1417},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-水晶瓶*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/3de3e42108db46f08eecf50a073cff90.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1418},{\\\"amount\\\":213,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天鹅之恋*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1419},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天生一对*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1420},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-一生有你*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/65e3617e22f545ec887c66f02d1a7a6f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1421},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-为你摘星*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/e19bacb19bfa46f481bb8c16dc02747e.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1422},{\\\"amount\\\":2000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-梦幻奇遇*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/6b487a5275984ba1a779fa5436c88d19.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1423}]\",\"id\":188,\"operatorId\":25,\"rewardLotteryCount\":216285,\"openRewardDiamonds\":19093404,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:19\",\"sort\":120,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":172431,\"openPayDiamonds\":0,\"createTime\":\"2021-05-24 11:55:16\",\"name\":\"甜心糖果机\",\"remainLotteryCount\":1556,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":5,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小开心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1289},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小蛋糕*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f23a2d65b84444afba2fa0c518793e48.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1290},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小嘎嘎*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/00527efdb7514484acd8f91740244781.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1291},{\\\"amount\\\":5,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-鼓掌*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1292}]\",\"id\":157,\"operatorId\":34,\"rewardLotteryCount\":5,\"openRewardDiamonds\":5,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-04-28 16:21:39\",\"sort\":113,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":775,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:38:56\",\"name\":\"梦幻测试\",\"remainLotteryCount\":295,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"2\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"20\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":47,\"delFlag\":false,\"operatorName\":\"章宇\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜草莓*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1285},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-荧光棒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/19/22ef4d05f54a4b3298d8c12cdb2bae19.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1286},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-萤火虫*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1287},{\\\"amount\\\":7,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小花朵*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1288}]\",\"id\":156,\"operatorId\":25,\"rewardLotteryCount\":47,\"openRewardDiamonds\":81,\"sort\":111,\"remainLotteryDiamonds\":1599,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:37:13\",\"name\":\"甜心测试\",\"remainLotteryCount\":353,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"4/23日刷新\",\"openedTimes\":3449320,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/7c31798619334da792fff5279b8ec7bf.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/33a2ea85233149debbfcb2cfc19e0b67.png\",\"lotteryActivityId\":152,\"createTime\":\"2021-06-16 10:06:26\",\"id\":127,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":333,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1241},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1240},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1239},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-接放学\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1238},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小礼花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1237},{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-蓝色焰火\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1236},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小可乐\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/9ce71421d70d47b099995395e9e330d9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1235},{\\\"amount\\\":8,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-四叶草\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1234},{\\\"amount\\\":7,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小花朵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1233},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1232},{\\\"amount\\\":5,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1231},{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小开心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1230}]\",\"id\":152,\"operatorId\":34,\"rewardLotteryCount\":3449320,\"openRewardDiamonds\":34507957,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga\",\"updateTime\":\"2021-06-16 10:06:26\",\"sort\":60,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e228e5a2414145809b4abc41efacbbba.webp\",\"remainLotteryDiamonds\":3420,\"openPayDiamonds\":34493160,\"createTime\":\"2021-04-23 18:20:19\",\"name\":\"普通宝箱\",\"remainLotteryCount\":316,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"4/23日刷新\",\"openedTimes\":279590,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/717f1ee388b24e38b5888485e5299472.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c42f032ebb9f43ff81a127d8bd4b1a19.png\",\"lotteryActivityId\":153,\"createTime\":\"2021-06-16 10:06:45\",\"id\":128,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=153&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\\\",\\\"decorationId\\\":230,\\\"decorationName\\\":\\\"璀银座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1253},{\\\"amount\\\":1066,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-好运锦鲤\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1252},{\\\"amount\\\":990,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-心愿许愿池\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1251},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1250},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1249},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-感恩豹豹\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1248},{\\\"amount\\\":213,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-天鹅之恋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1247},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1246},{\\\"amount\\\":122,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-告白气球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1244},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1243},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-幸运铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1242},{\\\"amount\\\":15000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-魔法城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1256},{\\\"amount\\\":10000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-暗夜城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1255},{\\\"amount\\\":3000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-星辰之钥\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1254},{\\\"amount\\\":135,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-木碗星空*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e0549adc52ff4c1394cf3d41bad12237.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1284}]\",\"id\":153,\"operatorId\":34,\"rewardLotteryCount\":279590,\"openRewardDiamonds\":62638881,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga\",\"updateTime\":\"2021-06-16 10:06:45\",\"sort\":59,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/bba8816d05324864bdbd80ca475525ae.webp\",\"remainLotteryDiamonds\":145334,\"openPayDiamonds\":58711800,\"createTime\":\"2021-04-23 18:37:26\",\"name\":\"白银宝箱\",\"remainLotteryCount\":546,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"423刷新\",\"openedTimes\":155474,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/b97af0eb6d784dad9557d4f4c734fc2d.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da468049c9a4df7aea562239b93bdab.png\",\"lotteryActivityId\":154,\"createTime\":\"2021-06-16 10:06:53\",\"id\":129,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=gold&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\\\",\\\"decorationId\\\":231,\\\"decorationName\\\":\\\"耀金座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":33440,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-深海精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/05b37aede2014994a3094c7ccab4e55a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1268},{\\\"amount\\\":13140,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1267},{\\\"amount\\\":2998,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-花开万物\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6145fc5f4bb24a99a972764527999da7.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1266},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1265},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-圆梦精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/0a49819db4d542c1be74f52fe72def0f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1264},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1263},{\\\"amount\\\":666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/4/4c21272581fa4bb9aca4c0df6567a70e.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1262},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1261},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-天生一对\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1260},{\\\"amount\\\":406,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1259},{\\\"amount\\\":300,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-飞鸽传书\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9d32f897dcf34ff6948cff77d3ebb30c.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1258},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-广寒月\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9f34c21030404601aaacfebea908f7ee.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1257}]\",\"id\":154,\"operatorId\":34,\"rewardLotteryCount\":155474,\"openRewardDiamonds\":108134265,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga\",\"updateTime\":\"2021-06-16 10:06:53\",\"sort\":58,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/d31522c02db2434d9879a0f60005092b.webp\",\"remainLotteryDiamonds\":310175,\"openPayDiamonds\":103545684,\"createTime\":\"2021-04-23 18:49:41\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":510,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"423刷新\",\"openedTimes\":209616,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/ed1d7bf6ce3347a7b7d57ae1196b6e23.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/873b5a8b240349fb8c310d314e6fb32b.png\",\"lotteryActivityId\":155,\"createTime\":\"2021-06-16 10:07:01\",\"id\":130,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=magic&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\\\",\\\"decorationId\\\":232,\\\"decorationName\\\":\\\"幻尊座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":58888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-浴火凤凰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f6c6128dfdaf400384125602fc516504.png\\\",\\\"rewardLevel\\\":4,\\\"isNew\\\":0,\\\"lotteryId\\\":1280},{\\\"amount\\\":9999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-毁灭魔法\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0b8db93fb99d445d8cd18923b759669a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1279},{\\\"amount\\\":8888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-战神之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f3f840c6159c42ec8e25d86328d0555c.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1278},{\\\"amount\\\":6666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恶魔之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/4e0febbdd402462b841d34a92949e667.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1277},{\\\"amount\\\":1688,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-天使之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/498d1b0089e84308801095724e0593e6.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1276},{\\\"amount\\\":1199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-白马王子\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/68e1039b32da4dd080a339e25529a9ff.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1275},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-破茧成蝶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6c65021c3fab48ba949b9036b448dc1a.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1274},{\\\"amount\\\":568,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鎏金百合\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2601a655d29e4f74954aa67919557d53.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1273},{\\\"amount\\\":455,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-魔法手杖\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/7/21/2a8944054a554632b62c4cc7d7a076b4.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1272},{\\\"amount\\\":388,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-魔力娃娃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e6600ac593bc4ae88b95049bca873fd6.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1271},{\\\"amount\\\":299,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-万箭穿心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/5b77d17b7a9c4c75a36286771eaedac9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1270},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-紫惊雷\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/44cf7b20185742fea258deffe6f11e45.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1269}]\",\"id\":155,\"operatorId\":34,\"rewardLotteryCount\":209616,\"openRewardDiamonds\":207980409,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga\",\"updateTime\":\"2021-06-16 10:07:01\",\"sort\":57,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c467ccae646a4904bf580e3f2baffbb8.webp\",\"remainLotteryDiamonds\":659306,\"openPayDiamonds\":209406384,\"createTime\":\"2021-04-23 19:19:29\",\"name\":\"魔幻宝箱\",\"remainLotteryCount\":353,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"999\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"4995\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"9990\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"4月7日刷新\",\"openedTimes\":2574673,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/7f480df733a64dbcb2e0a1d61da99295.png\",\"delFlag\":false,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/4da3ee04c91e42249905d614d2d14627.png\",\"lotteryActivityId\":149,\"createTime\":\"2021-04-24 20:39:54\",\"id\":74,\"content\":\"\",\"activityH5Url\":\"https://h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":333,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1185},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1184},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1183},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-接放学\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1182},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小礼花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1181},{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-蓝色焰火\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1180},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-心相印\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1179},{\\\"amount\\\":8,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-许愿星\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/cb68fc35ea3e42d6bf7b4149ecb9d91b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1178},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小心心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/364b732988a64d1aa4c7d6e4594607fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1177},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1176},{\\\"amount\\\":5,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1175},{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-甜甜草莓\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1174}]\",\"id\":149,\"operatorId\":139,\"rewardLotteryCount\":2574673,\"openRewardDiamonds\":25548878,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/580c3d76e85c42eaaf6cde0a4a8038fd.svga\",\"updateTime\":\"2021-04-24 20:39:55\",\"sort\":53,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/a49899ab5cb44bd6a659e8244ca1d0a3.webp\",\"remainLotteryDiamonds\":13372,\"openPayDiamonds\":25746730,\"createTime\":\"2021-04-07 10:49:04\",\"name\":\"普通宝箱\",\"remainLotteryCount\":1288,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"4月7日刷新\",\"openedTimes\":155755,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/fcdc82b7cf044a2e810dba863dfc90d3.png\",\"delFlag\":false,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/8d729db7b2d34cf4a93165c3a85104ed.png\",\"lotteryActivityId\":148,\"createTime\":\"2021-04-24 20:40:09\",\"id\":75,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=148&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\\\",\\\"decorationId\\\":230,\\\"decorationName\\\":\\\"璀银座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":15000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-魔法城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1173},{\\\"amount\\\":10000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-暗夜城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1172},{\\\"amount\\\":3000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-星辰之钥\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1171},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1170},{\\\"amount\\\":1066,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-好运锦鲤\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1169},{\\\"amount\\\":990,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-心愿许愿池\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1168},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1167},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1166},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-感恩豹豹\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1165},{\\\"amount\\\":202,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-火花闪闪\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/d54cf1d5c1e24a2c8134e0912a0489e5.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1164},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1163},{\\\"amount\\\":128,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-星缤乐\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/ae30fc413a3e493f86707f9eb266a6d2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1162},{\\\"amount\\\":122,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-告白气球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1161},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1160},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-冰淇淋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f751d14df3f143f2956e65545a0fba0f.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1159}]\",\"id\":148,\"operatorId\":139,\"rewardLotteryCount\":155755,\"openRewardDiamonds\":34290329,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/7ff85fc4ff684b14819318e632b5f4a5.svga\",\"updateTime\":\"2021-04-24 20:40:10\",\"sort\":52,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/92989c97fd8e40319e6d1ed460bce0c4.webp\",\"remainLotteryDiamonds\":890573,\"openPayDiamonds\":32708550,\"createTime\":\"2021-04-06 20:25:46\",\"name\":\"白银宝箱\",\"remainLotteryCount\":4255,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":28,\"pages\":3,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 21:26:27:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\n======本次用例运行消耗时间 01秒281毫秒======","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒281毫秒","endTime":"2021-06-28 21:26:27","id":0,"serviceId":1,"startTime":"2021-06-28 21:26:26","status":1}
[2021-06-28 21:26:27.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:26:27.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:26:27.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 21:26:27.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:26:27.516] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:26:27.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 21:26:27.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 21:26:27.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 21:26:27.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 21:26:27.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:26:27.517] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 21:26:27.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:26:27 GMT
[2021-06-28 21:26:27.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 21:26:27.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:26:27.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:26:27.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 21:26:27.518] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:26:27.519] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:26:28.028] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:26:28:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-06-28 21:26:28.029] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:26:28.029] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:26:28.109] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:26:28.109] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:26:28.110] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:26:28.110] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:26:28.110] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:26:28.111] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:26:28.111] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:26:28.111] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:26:28.112] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:26:28.112] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:26:28.112] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:26:28.113] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:26:28.175] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:26:28.175] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:26:28.176] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:26:28.176] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:26:28.176] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:26:28.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:26:28.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:26:28.177] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:26:28.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:26:28 GMT
[2021-06-28 21:26:28.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:26:28.178] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:26:28.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:26:28.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"3282535ecdb64042993fdf320f413478","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:26:28.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:26:28.179] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:26:28.180] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:26:28.180] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:26:28.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:26:28.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:26:28.260] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:26:28.260] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:26:28.260] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:26:28.260] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:26:28.261] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:26:28.261] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:26:28.261] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:26:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:26:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:26:28.262] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:26:28.326] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:26:28.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:26:28.327] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:26:28.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:26:28.329] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:26:28.330] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:26:28.330] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:26:28.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:26:28.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:26:28 GMT
[2021-06-28 21:26:28.331] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:26:28.332] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:26:28.332] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:26:28.332] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"3bf2a583e09b4312b198b0e53e669123","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:26:28.332] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:26:28.333] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:26:28.333] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:26:28.334] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:26:28.413] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:26:28.414] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:26:28.414] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:26:28.414] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:26:28.414] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:26:28.414] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:3bf2a583e09b4312b198b0e53e669123
[2021-06-28 21:26:28.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:26:28.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:26:28.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:26:28.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:26:28.415] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:26:28.416] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:26:28.416] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:26:28.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:26:28.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:26:28.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:26:28.572] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:26:28.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:26:28.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:26:28.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:26:28.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:26:28.573] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:26:28 GMT
[2021-06-28 21:26:28.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:26:28.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:26:28.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:26:28.574] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:26:28.575] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:26:28.576] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:26:28.580] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 21:26:28.581] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:26:28:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-06-28 21:26:28.581] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 553毫秒======
[2021-06-28 21:26:28.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:26:28.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:26:28.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:26:28.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:26:28.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:26:28.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 21:26:28.586] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:26:28.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 21:26:28.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:26:28.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 21:26:28.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:26:28.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 21:26:28.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:26:28.587] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-06-28 21:26:28:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 13:26:28 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"3282535ecdb64042993fdf320f413478\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 13:26:28 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"3bf2a583e09b4312b198b0e53e669123\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"3bf2a583e09b4312b198b0e53e669123\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&type=1&pageNum=1&useStatus=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 13:26:28 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":4,\"navigatepageNums\":[1,2,3,4],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png\",\"createTime\":\"2020-12-23 14:37:34\",\"refType\":1,\"id\":44,\"virtualProductId\":328,\"content\":\"每送1个,可增加房间热度10\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"每送1个,可增加房间热度10\",\"giftVersion\":24,\"price\":0,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png\",\"id\":328,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室热度礼物\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":69,\"virtualProductId\":314,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 14:48:40\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\\\",\\\"remark\\\":\\\"一心一意\\\"}]\",\"id\":55,\"virtualProductId\":314}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方185魅力值\",\"giftVersion\":11,\"price\":185,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":314,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":185,\"useStatus\":1,\"name\":\"超人泡泡糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-05-31 00:00:05\",\"labelUrl\":\"\",\"createTime\":\"2020-05-27 11:11:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":285,\"virtualProductId\":517,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png\",\"createTime\":\"2021-05-24 10:02:07\",\"refType\":1,\"id\":76,\"virtualProductId\":517,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":100,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png\",\"id\":517,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1001,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-24 10:02:08\",\"useStatus\":1,\"name\":\"皮皮糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"糖果制造机玩法礼物\",\"delFlag\":false,\"obtainType\":5,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-06-17 17:23:08\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-24 10:02:08\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:56:35\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":24,\"virtualProductId\":327}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可增加对方1魅力值\",\"giftVersion\":17,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":980,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"834861\",\"rangeName\":\"\",\"id\":242,\"virtualProductId\":474,\"roomType\":2,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png\",\"id\":474,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga\",\"giftType\":1,\"sort\":980,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-23 18:01:57\",\"useStatus\":1,\"name\":\"雾时牛啤\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"【雾时】聊天室专属礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-03-22 00:00:00\",\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 18:01:57\",\"endTime\":\"2021-08-22 23:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"3\",\"rangeName\":\"全部\",\"id\":244,\"virtualProductId\":476,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":128,\"remarkUrl\":\"\",\"id\":476,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-03-06 10:48:39\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"女生厅专属礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-03-06 10:48:39\"}},{\"virtualProductRange\":{\"roomRange\":\"17\",\"rangeName\":\"全部\",\"id\":260,\"virtualProductId\":492,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png\",\"createTime\":\"2021-05-13 15:42:15\",\"refType\":1,\"id\":73,\"virtualProductId\":492,\"content\":\"男生厅专属礼物\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":128,\"remarkUrl\":\"\",\"id\":492,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-04-20 12:01:04\",\"useStatus\":1,\"name\":\"游戏机\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 15:42:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-04-20 12:01:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":292,\"virtualProductId\":524,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":6,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":6,\"limitUpdateTime\":\"2021-05-28 17:21:11\",\"useStatus\":1,\"name\":\"爱心补给\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-28 18:00:32\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":293,\"virtualProductId\":525,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-06-02 13:43:36\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"66\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\\\",\\\"remark\\\":\\\"一切顺利\\\"}]\",\"id\":265,\"virtualProductId\":525}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png\",\"createTime\":\"2021-06-02 13:43:36\",\"refType\":1,\"id\":79,\"virtualProductId\":525,\"content\":\"一次性赠送66个该礼物,触发进阶动效。\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":10,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png\",\"id\":525,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":970,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-28 18:07:48\",\"useStatus\":1,\"name\":\"永远滴神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-06-02 13:49:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 18:07:48\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":97,\"virtualProductId\":220,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方21魅力值\",\"giftVersion\":10,\"price\":21,\"remarkUrl\":\"\",\"id\":220,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":960,\"charmValue\":21,\"useStatus\":1,\"name\":\"甜甜圈\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2019-08-07 16:02:15\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":34,\"pages\":4,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 21:26:28:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\n======本次用例运行消耗时间 553毫秒======","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"553毫秒","endTime":"2021-06-28 21:26:28","id":0,"serviceId":1,"startTime":"2021-06-28 21:26:28","status":1}
[2021-06-28 21:26:28.827] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:26:28.827] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:26:28.828] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 21:26:28.828] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:26:28.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:26:28.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 21:26:28.829] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 21:26:28.830] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 21:26:28.830] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 21:26:28.830] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:26:28.831] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 21:26:28.831] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:26:28 GMT
[2021-06-28 21:26:28.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 21:26:28.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:26:28.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:26:28.832] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 21:26:28.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:26:28.833] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:2
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 21:26:29.573] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 21:26:29.580] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 21:26:29.581] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 21:26:29.592] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 21:26:29.593] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:26:29.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:26:29.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:26:29.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 21:26:29.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 21:26:29.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:26:29.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 21:26:29.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:26:29.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 21:26:29.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:26:29.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 21:26:29.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:26:29.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"03秒804毫秒","endTime":"2021-06-28 21:26:29","env":"test(192.168.41.108)","failed":0,"id":0,"passed":2,"serviceId":1,"skipped":0,"startTime":"2021-06-28 21:26:25","status":1,"teamId":0,"total":2}
[2021-06-28 21:26:29.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:26:29.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:26:29.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 21:26:29.976] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:26:29.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:26:29.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 21:26:29.977] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 21:26:29.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 21:26:29.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 21:26:29.978] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:26:29.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 21:26:29.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:26:29 GMT
[2021-06-28 21:26:29.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 21:26:29.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:26:29.979] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:26:29.980] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 21:26:29.980] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:26:29.980] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:26:29.980] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 21:26:29:测试集结束======
[2021-06-28 21:26:29.980] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 03秒804毫秒======
[2021-06-28 21:40:49.358] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 21:40:49.515] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 21:40:49:测试集开始======
[2021-06-28 21:40:49.821] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:40:49:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-06-28 21:40:49.831] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:40:50.050] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:40:50.254] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:40:50.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:40:50.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:40:50.255] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:40:50.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:40:50.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:40:50.256] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:40:50.258] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:40:50.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:40:50.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:40:50.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:40:50.259] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:40:50.699] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:40:50.699] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:40:50.699] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:40:50.700] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:40:50.700] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:40:50.700] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:40:50.700] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:40:50.700] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:40:50.700] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:40:50 GMT
[2021-06-28 21:40:50.701] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:40:50.701] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:40:50.701] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:40:50.703] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"cb6e27c4544f4c0a8796a2af2fd2764f","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:40:50.704] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:40:50.706] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:40:50.708] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-06-28 21:40:50.709] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:40:50.787] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:40:50.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:40:50.788] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-06-28 21:40:50.789] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:40:50.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:40:50.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:cb6e27c4544f4c0a8796a2af2fd2764f
[2021-06-28 21:40:50.790] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:40:50.791] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:40:50.791] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-06-28 21:40:50.791] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:40:50.792] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-06-28 21:40:50.792] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:40:50.792] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:40:51.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:40:51.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:40:51.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:40:51.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:40:51.278] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:40:51.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:40:51.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:40:51.279] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:40:51.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:40:51 GMT
[2021-06-28 21:40:51.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:40:51.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:40:51.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:40:51.280] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":3,"navigatepageNums":[1,2,3],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"remark":"","openedTimes":25198,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\",\"decorationId\":365,\"decorationName\":\"萌小兔座位框\"}","lotteryRules":"[{\"amount\":210,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿瓶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5fa24da0548944d28cbd6cb2aea0617a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1427},{\"amount\":266,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1428},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1429},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1430},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/8b79080ee17d4e4f98a37dee5d6e1d25.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1431},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1432},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1433},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1434},{\"amount\":66666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-时光之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/d2db47083eaa40de9c8b324bc41ea564.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1435},{\"amount\":18888,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-爱恋之城\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/1b3cae6c924b4c8db2cf70e00435f18a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1436}]","id":189,"operatorId":25,"rewardLotteryCount":25198,"openRewardDiamonds":22563247,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:26","sort":121,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":1023301,"openPayDiamonds":0,"createTime":"2021-05-24 12:04:17","name":"梦幻糖果机","remainLotteryCount":794,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":216285,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\",\"decorationId\":224,\"decorationName\":\"绚烂阳光座位框\"}","lotteryRules":"[{\"amount\":21,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-蓝色焰火*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1414},{\"amount\":30,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-小礼花*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1415},{\"amount\":52,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-点赞*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1416},{\"amount\":66,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-乐符*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/b436e56b9f7e4c6aab4d9318e3221362.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1417},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-水晶瓶*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/3de3e42108db46f08eecf50a073cff90.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1418},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天鹅之恋*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1419},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天生一对*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1420},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-一生有你*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/65e3617e22f545ec887c66f02d1a7a6f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1421},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-为你摘星*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/e19bacb19bfa46f481bb8c16dc02747e.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1422},{\"amount\":2000,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-梦幻奇遇*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/6b487a5275984ba1a779fa5436c88d19.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1423}]","id":188,"operatorId":25,"rewardLotteryCount":216285,"openRewardDiamonds":19093404,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:19","sort":120,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":172431,"openPayDiamonds":0,"createTime":"2021-05-24 11:55:16","name":"甜心糖果机","remainLotteryCount":1556,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":5,"staticUrl":"null","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小开心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1289},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小蛋糕*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f23a2d65b84444afba2fa0c518793e48.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1290},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小嘎嘎*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/00527efdb7514484acd8f91740244781.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1291},{\"amount\":5,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-鼓掌*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1292}]","id":157,"operatorId":34,"rewardLotteryCount":5,"openRewardDiamonds":5,"objectGifUrl":"null","updateTime":"2021-04-28 16:21:39","sort":113,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":775,"openPayDiamonds":0,"createTime":"2021-04-28 14:38:56","name":"梦幻测试","remainLotteryCount":295,"activityType":1,"priceRules":"[{\"price\":\"2\",\"times\":\"1\"},{\"price\":\"10\",\"times\":\"5\"},{\"price\":\"20\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":47,"delFlag":false,"operatorName":"章宇","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-甜甜草莓*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1285},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-荧光棒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/19/22ef4d05f54a4b3298d8c12cdb2bae19.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1286},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-萤火虫*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1287},{\"amount\":7,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-小花朵*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1288}]","id":156,"operatorId":25,"rewardLotteryCount":47,"openRewardDiamonds":81,"sort":111,"remainLotteryDiamonds":1599,"openPayDiamonds":0,"createTime":"2021-04-28 14:37:13","name":"甜心测试","remainLotteryCount":353,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"4/23日刷新","openedTimes":3449320,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/7c31798619334da792fff5279b8ec7bf.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/33a2ea85233149debbfcb2cfc19e0b67.png","lotteryActivityId":152,"createTime":"2021-06-16 10:06:26","id":127,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1241},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1240},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1239},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1238},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1237},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1236},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小可乐\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/9ce71421d70d47b099995395e9e330d9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1235},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-四叶草\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1234},{\"amount\":7,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小花朵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1233},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1232},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1231},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小开心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1230}]","id":152,"operatorId":34,"rewardLotteryCount":3449320,"openRewardDiamonds":34507957,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga","updateTime":"2021-06-16 10:06:26","sort":60,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e228e5a2414145809b4abc41efacbbba.webp","remainLotteryDiamonds":3420,"openPayDiamonds":34493160,"createTime":"2021-04-23 18:20:19","name":"普通宝箱","remainLotteryCount":316,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4/23日刷新","openedTimes":279590,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/717f1ee388b24e38b5888485e5299472.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c42f032ebb9f43ff81a127d8bd4b1a19.png","lotteryActivityId":153,"createTime":"2021-06-16 10:06:45","id":128,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=153&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1253},{\"amount\":1066,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-好运锦鲤\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1252},{\"amount\":990,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-心愿许愿池\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1251},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1250},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1249},{\"amount\":222,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-感恩豹豹\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1248},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天鹅之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1247},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1246},{\"amount\":122,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-告白气球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1244},{\"amount\":106,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1243},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-幸运铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1242},{\"amount\":15000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-魔法城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1256},{\"amount\":10000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-暗夜城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1255},{\"amount\":3000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-星辰之钥\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1254},{\"amount\":135,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-木碗星空*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e0549adc52ff4c1394cf3d41bad12237.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1284}]","id":153,"operatorId":34,"rewardLotteryCount":279590,"openRewardDiamonds":62638881,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga","updateTime":"2021-06-16 10:06:45","sort":59,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/bba8816d05324864bdbd80ca475525ae.webp","remainLotteryDiamonds":145334,"openPayDiamonds":58711800,"createTime":"2021-04-23 18:37:26","name":"白银宝箱","remainLotteryCount":546,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":155474,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/b97af0eb6d784dad9557d4f4c734fc2d.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da468049c9a4df7aea562239b93bdab.png","lotteryActivityId":154,"createTime":"2021-06-16 10:06:53","id":129,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=gold&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\",\"decorationId\":231,\"decorationName\":\"耀金座位框\"}","lotteryRules":"[{\"amount\":33440,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-深海精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/05b37aede2014994a3094c7ccab4e55a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1268},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1267},{\"amount\":2998,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-花开万物\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6145fc5f4bb24a99a972764527999da7.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1266},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1265},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-圆梦精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/0a49819db4d542c1be74f52fe72def0f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1264},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1263},{\"amount\":666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/4/4c21272581fa4bb9aca4c0df6567a70e.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1262},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1261},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-天生一对\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1260},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1259},{\"amount\":300,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-飞鸽传书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9d32f897dcf34ff6948cff77d3ebb30c.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1258},{\"amount\":222,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-广寒月\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9f34c21030404601aaacfebea908f7ee.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1257}]","id":154,"operatorId":34,"rewardLotteryCount":155474,"openRewardDiamonds":108134265,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga","updateTime":"2021-06-16 10:06:53","sort":58,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/d31522c02db2434d9879a0f60005092b.webp","remainLotteryDiamonds":310175,"openPayDiamonds":103545684,"createTime":"2021-04-23 18:49:41","name":"黄金宝箱","remainLotteryCount":510,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":209616,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/ed1d7bf6ce3347a7b7d57ae1196b6e23.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/873b5a8b240349fb8c310d314e6fb32b.png","lotteryActivityId":155,"createTime":"2021-06-16 10:07:01","id":130,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=magic&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\",\"decorationId\":232,\"decorationName\":\"幻尊座位框\"}","lotteryRules":"[{\"amount\":58888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-浴火凤凰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f6c6128dfdaf400384125602fc516504.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1280},{\"amount\":9999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-毁灭魔法\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0b8db93fb99d445d8cd18923b759669a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1279},{\"amount\":8888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-战神之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f3f840c6159c42ec8e25d86328d0555c.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1278},{\"amount\":6666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恶魔之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/4e0febbdd402462b841d34a92949e667.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1277},{\"amount\":1688,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天使之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/498d1b0089e84308801095724e0593e6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1276},{\"amount\":1199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-白马王子\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/68e1039b32da4dd080a339e25529a9ff.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1275},{\"amount\":999,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-破茧成蝶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6c65021c3fab48ba949b9036b448dc1a.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1274},{\"amount\":568,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鎏金百合\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2601a655d29e4f74954aa67919557d53.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1273},{\"amount\":455,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔法手杖\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/7/21/2a8944054a554632b62c4cc7d7a076b4.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1272},{\"amount\":388,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔力娃娃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e6600ac593bc4ae88b95049bca873fd6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1271},{\"amount\":299,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-万箭穿心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/5b77d17b7a9c4c75a36286771eaedac9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1270},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-紫惊雷\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/44cf7b20185742fea258deffe6f11e45.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1269}]","id":155,"operatorId":34,"rewardLotteryCount":209616,"openRewardDiamonds":207980409,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga","updateTime":"2021-06-16 10:07:01","sort":57,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c467ccae646a4904bf580e3f2baffbb8.webp","remainLotteryDiamonds":659306,"openPayDiamonds":209406384,"createTime":"2021-04-23 19:19:29","name":"魔幻宝箱","remainLotteryCount":353,"activityType":1,"priceRules":"[{\"price\":\"999\",\"times\":\"1\"},{\"price\":\"4995\",\"times\":\"5\"},{\"price\":\"9990\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4月7日刷新","openedTimes":2574673,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/7f480df733a64dbcb2e0a1d61da99295.png","delFlag":false,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/4da3ee04c91e42249905d614d2d14627.png","lotteryActivityId":149,"createTime":"2021-04-24 20:39:54","id":74,"content":"","activityH5Url":"https://h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1185},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1184},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1183},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1182},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1181},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1180},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-心相印\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1179},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿星\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/cb68fc35ea3e42d6bf7b4149ecb9d91b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1178},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小心心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/364b732988a64d1aa4c7d6e4594607fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1177},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1176},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1175},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-甜甜草莓\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1174}]","id":149,"operatorId":139,"rewardLotteryCount":2574673,"openRewardDiamonds":25548878,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/580c3d76e85c42eaaf6cde0a4a8038fd.svga","updateTime":"2021-04-24 20:39:55","sort":53,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/a49899ab5cb44bd6a659e8244ca1d0a3.webp","remainLotteryDiamonds":13372,"openPayDiamonds":25746730,"createTime":"2021-04-07 10:49:04","name":"普通宝箱","remainLotteryCount":1288,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"4月7日刷新","openedTimes":155755,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/fcdc82b7cf044a2e810dba863dfc90d3.png","delFlag":false,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/8d729db7b2d34cf4a93165c3a85104ed.png","lotteryActivityId":148,"createTime":"2021-04-24 20:40:09","id":75,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=148&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":15000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-魔法城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1173},{\"amount\":10000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-暗夜城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1172},{\"amount\":3000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-星辰之钥\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1171},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1170},{\"amount\":1066,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-好运锦鲤\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1169},{\"amount\":990,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-心愿许愿池\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1168},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1167},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1166},{\"amount\":222,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-感恩豹豹\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1165},{\"amount\":202,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-火花闪闪\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/d54cf1d5c1e24a2c8134e0912a0489e5.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1164},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1163},{\"amount\":128,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-星缤乐\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/ae30fc413a3e493f86707f9eb266a6d2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1162},{\"amount\":122,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-告白气球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1161},{\"amount\":106,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1160},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-冰淇淋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f751d14df3f143f2956e65545a0fba0f.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1159}]","id":148,"operatorId":139,"rewardLotteryCount":155755,"openRewardDiamonds":34290329,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/7ff85fc4ff684b14819318e632b5f4a5.svga","updateTime":"2021-04-24 20:40:10","sort":52,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/92989c97fd8e40319e6d1ed460bce0c4.webp","remainLotteryDiamonds":890573,"openPayDiamonds":32708550,"createTime":"2021-04-06 20:25:46","name":"白银宝箱","remainLotteryCount":4255,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":false,"status":0}],"pageNum":1,"navigatePages":8,"total":28,"pages":3,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:40:51.284] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:40:51.285] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:40:51.299] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-06-28 21:40:51.300] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:40:51:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-06-28 21:40:51.300] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒479毫秒======
[2021-06-28 21:40:51.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:40:51.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:40:51.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:40:51.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:40:51.343] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:40:51.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 21:40:51.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:40:51.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 21:40:51.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:40:51.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 21:40:51.344] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:40:51.345] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 21:40:51.345] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:40:51.345] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-06-28 21:40:49:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 13:40:50 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"cb6e27c4544f4c0a8796a2af2fd2764f\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"cb6e27c4544f4c0a8796a2af2fd2764f\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"activityType\":\"1\",\"pageNum\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&activityType=1&pageNum=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 13:40:51 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":3,\"navigatepageNums\":[1,2,3],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"remark\":\"\",\"openedTimes\":25198,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\\\",\\\"decorationId\\\":365,\\\"decorationName\\\":\\\"萌小兔座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":210,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-许愿瓶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5fa24da0548944d28cbd6cb2aea0617a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1427},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1428},{\\\"amount\\\":406,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1429},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1430},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/8b79080ee17d4e4f98a37dee5d6e1d25.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1431},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1432},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1433},{\\\"amount\\\":13140,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1434},{\\\"amount\\\":66666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-时光之恋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/d2db47083eaa40de9c8b324bc41ea564.png\\\",\\\"rewardLevel\\\":4,\\\"isNew\\\":0,\\\"lotteryId\\\":1435},{\\\"amount\\\":18888,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-爱恋之城\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/1b3cae6c924b4c8db2cf70e00435f18a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1436}]\",\"id\":189,\"operatorId\":25,\"rewardLotteryCount\":25198,\"openRewardDiamonds\":22563247,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:26\",\"sort\":121,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":1023301,\"openPayDiamonds\":0,\"createTime\":\"2021-05-24 12:04:17\",\"name\":\"梦幻糖果机\",\"remainLotteryCount\":794,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":216285,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\\\",\\\"decorationId\\\":224,\\\"decorationName\\\":\\\"绚烂阳光座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-蓝色焰火*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1414},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小礼花*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1415},{\\\"amount\\\":52,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-点赞*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1416},{\\\"amount\\\":66,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-乐符*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/b436e56b9f7e4c6aab4d9318e3221362.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1417},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-水晶瓶*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/3de3e42108db46f08eecf50a073cff90.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1418},{\\\"amount\\\":213,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天鹅之恋*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1419},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天生一对*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1420},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-一生有你*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/65e3617e22f545ec887c66f02d1a7a6f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1421},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-为你摘星*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/e19bacb19bfa46f481bb8c16dc02747e.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1422},{\\\"amount\\\":2000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-梦幻奇遇*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/6b487a5275984ba1a779fa5436c88d19.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1423}]\",\"id\":188,\"operatorId\":25,\"rewardLotteryCount\":216285,\"openRewardDiamonds\":19093404,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:19\",\"sort\":120,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":172431,\"openPayDiamonds\":0,\"createTime\":\"2021-05-24 11:55:16\",\"name\":\"甜心糖果机\",\"remainLotteryCount\":1556,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":5,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小开心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1289},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小蛋糕*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f23a2d65b84444afba2fa0c518793e48.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1290},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小嘎嘎*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/00527efdb7514484acd8f91740244781.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1291},{\\\"amount\\\":5,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-鼓掌*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1292}]\",\"id\":157,\"operatorId\":34,\"rewardLotteryCount\":5,\"openRewardDiamonds\":5,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-04-28 16:21:39\",\"sort\":113,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":775,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:38:56\",\"name\":\"梦幻测试\",\"remainLotteryCount\":295,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"2\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"20\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":47,\"delFlag\":false,\"operatorName\":\"章宇\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜草莓*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1285},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-荧光棒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/19/22ef4d05f54a4b3298d8c12cdb2bae19.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1286},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-萤火虫*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1287},{\\\"amount\\\":7,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小花朵*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1288}]\",\"id\":156,\"operatorId\":25,\"rewardLotteryCount\":47,\"openRewardDiamonds\":81,\"sort\":111,\"remainLotteryDiamonds\":1599,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:37:13\",\"name\":\"甜心测试\",\"remainLotteryCount\":353,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"4/23日刷新\",\"openedTimes\":3449320,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/7c31798619334da792fff5279b8ec7bf.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/33a2ea85233149debbfcb2cfc19e0b67.png\",\"lotteryActivityId\":152,\"createTime\":\"2021-06-16 10:06:26\",\"id\":127,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":333,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1241},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1240},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1239},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-接放学\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1238},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小礼花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1237},{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-蓝色焰火\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1236},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小可乐\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/9ce71421d70d47b099995395e9e330d9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1235},{\\\"amount\\\":8,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-四叶草\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1234},{\\\"amount\\\":7,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小花朵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1233},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1232},{\\\"amount\\\":5,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1231},{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小开心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1230}]\",\"id\":152,\"operatorId\":34,\"rewardLotteryCount\":3449320,\"openRewardDiamonds\":34507957,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga\",\"updateTime\":\"2021-06-16 10:06:26\",\"sort\":60,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e228e5a2414145809b4abc41efacbbba.webp\",\"remainLotteryDiamonds\":3420,\"openPayDiamonds\":34493160,\"createTime\":\"2021-04-23 18:20:19\",\"name\":\"普通宝箱\",\"remainLotteryCount\":316,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"4/23日刷新\",\"openedTimes\":279590,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/717f1ee388b24e38b5888485e5299472.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c42f032ebb9f43ff81a127d8bd4b1a19.png\",\"lotteryActivityId\":153,\"createTime\":\"2021-06-16 10:06:45\",\"id\":128,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=153&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\\\",\\\"decorationId\\\":230,\\\"decorationName\\\":\\\"璀银座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1253},{\\\"amount\\\":1066,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-好运锦鲤\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1252},{\\\"amount\\\":990,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-心愿许愿池\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1251},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1250},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1249},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-感恩豹豹\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1248},{\\\"amount\\\":213,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-天鹅之恋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1247},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1246},{\\\"amount\\\":122,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-告白气球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1244},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1243},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-幸运铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1242},{\\\"amount\\\":15000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-魔法城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1256},{\\\"amount\\\":10000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-暗夜城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1255},{\\\"amount\\\":3000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-星辰之钥\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1254},{\\\"amount\\\":135,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-木碗星空*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e0549adc52ff4c1394cf3d41bad12237.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1284}]\",\"id\":153,\"operatorId\":34,\"rewardLotteryCount\":279590,\"openRewardDiamonds\":62638881,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga\",\"updateTime\":\"2021-06-16 10:06:45\",\"sort\":59,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/bba8816d05324864bdbd80ca475525ae.webp\",\"remainLotteryDiamonds\":145334,\"openPayDiamonds\":58711800,\"createTime\":\"2021-04-23 18:37:26\",\"name\":\"白银宝箱\",\"remainLotteryCount\":546,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"423刷新\",\"openedTimes\":155474,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/b97af0eb6d784dad9557d4f4c734fc2d.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da468049c9a4df7aea562239b93bdab.png\",\"lotteryActivityId\":154,\"createTime\":\"2021-06-16 10:06:53\",\"id\":129,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=gold&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\\\",\\\"decorationId\\\":231,\\\"decorationName\\\":\\\"耀金座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":33440,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-深海精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/05b37aede2014994a3094c7ccab4e55a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1268},{\\\"amount\\\":13140,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1267},{\\\"amount\\\":2998,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-花开万物\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6145fc5f4bb24a99a972764527999da7.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1266},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1265},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-圆梦精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/0a49819db4d542c1be74f52fe72def0f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1264},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1263},{\\\"amount\\\":666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/4/4c21272581fa4bb9aca4c0df6567a70e.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1262},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1261},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-天生一对\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1260},{\\\"amount\\\":406,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1259},{\\\"amount\\\":300,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-飞鸽传书\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9d32f897dcf34ff6948cff77d3ebb30c.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1258},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-广寒月\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9f34c21030404601aaacfebea908f7ee.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1257}]\",\"id\":154,\"operatorId\":34,\"rewardLotteryCount\":155474,\"openRewardDiamonds\":108134265,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga\",\"updateTime\":\"2021-06-16 10:06:53\",\"sort\":58,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/d31522c02db2434d9879a0f60005092b.webp\",\"remainLotteryDiamonds\":310175,\"openPayDiamonds\":103545684,\"createTime\":\"2021-04-23 18:49:41\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":510,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"423刷新\",\"openedTimes\":209616,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/ed1d7bf6ce3347a7b7d57ae1196b6e23.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/873b5a8b240349fb8c310d314e6fb32b.png\",\"lotteryActivityId\":155,\"createTime\":\"2021-06-16 10:07:01\",\"id\":130,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=magic&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\\\",\\\"decorationId\\\":232,\\\"decorationName\\\":\\\"幻尊座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":58888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-浴火凤凰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f6c6128dfdaf400384125602fc516504.png\\\",\\\"rewardLevel\\\":4,\\\"isNew\\\":0,\\\"lotteryId\\\":1280},{\\\"amount\\\":9999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-毁灭魔法\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0b8db93fb99d445d8cd18923b759669a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1279},{\\\"amount\\\":8888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-战神之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f3f840c6159c42ec8e25d86328d0555c.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1278},{\\\"amount\\\":6666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恶魔之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/4e0febbdd402462b841d34a92949e667.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1277},{\\\"amount\\\":1688,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-天使之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/498d1b0089e84308801095724e0593e6.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1276},{\\\"amount\\\":1199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-白马王子\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/68e1039b32da4dd080a339e25529a9ff.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1275},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-破茧成蝶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6c65021c3fab48ba949b9036b448dc1a.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1274},{\\\"amount\\\":568,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鎏金百合\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2601a655d29e4f74954aa67919557d53.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1273},{\\\"amount\\\":455,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-魔法手杖\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/7/21/2a8944054a554632b62c4cc7d7a076b4.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1272},{\\\"amount\\\":388,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-魔力娃娃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e6600ac593bc4ae88b95049bca873fd6.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1271},{\\\"amount\\\":299,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-万箭穿心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/5b77d17b7a9c4c75a36286771eaedac9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1270},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-紫惊雷\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/44cf7b20185742fea258deffe6f11e45.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1269}]\",\"id\":155,\"operatorId\":34,\"rewardLotteryCount\":209616,\"openRewardDiamonds\":207980409,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga\",\"updateTime\":\"2021-06-16 10:07:01\",\"sort\":57,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c467ccae646a4904bf580e3f2baffbb8.webp\",\"remainLotteryDiamonds\":659306,\"openPayDiamonds\":209406384,\"createTime\":\"2021-04-23 19:19:29\",\"name\":\"魔幻宝箱\",\"remainLotteryCount\":353,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"999\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"4995\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"9990\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"4月7日刷新\",\"openedTimes\":2574673,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/7f480df733a64dbcb2e0a1d61da99295.png\",\"delFlag\":false,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/4da3ee04c91e42249905d614d2d14627.png\",\"lotteryActivityId\":149,\"createTime\":\"2021-04-24 20:39:54\",\"id\":74,\"content\":\"\",\"activityH5Url\":\"https://h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":333,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1185},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1184},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1183},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-接放学\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1182},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小礼花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1181},{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-蓝色焰火\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1180},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-心相印\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1179},{\\\"amount\\\":8,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-许愿星\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/cb68fc35ea3e42d6bf7b4149ecb9d91b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1178},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小心心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/364b732988a64d1aa4c7d6e4594607fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1177},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1176},{\\\"amount\\\":5,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1175},{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-甜甜草莓\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1174}]\",\"id\":149,\"operatorId\":139,\"rewardLotteryCount\":2574673,\"openRewardDiamonds\":25548878,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/580c3d76e85c42eaaf6cde0a4a8038fd.svga\",\"updateTime\":\"2021-04-24 20:39:55\",\"sort\":53,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/a49899ab5cb44bd6a659e8244ca1d0a3.webp\",\"remainLotteryDiamonds\":13372,\"openPayDiamonds\":25746730,\"createTime\":\"2021-04-07 10:49:04\",\"name\":\"普通宝箱\",\"remainLotteryCount\":1288,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"4月7日刷新\",\"openedTimes\":155755,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/fcdc82b7cf044a2e810dba863dfc90d3.png\",\"delFlag\":false,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/8d729db7b2d34cf4a93165c3a85104ed.png\",\"lotteryActivityId\":148,\"createTime\":\"2021-04-24 20:40:09\",\"id\":75,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=148&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\\\",\\\"decorationId\\\":230,\\\"decorationName\\\":\\\"璀银座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":15000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-魔法城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1173},{\\\"amount\\\":10000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-暗夜城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1172},{\\\"amount\\\":3000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-星辰之钥\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1171},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1170},{\\\"amount\\\":1066,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-好运锦鲤\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1169},{\\\"amount\\\":990,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-心愿许愿池\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1168},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1167},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1166},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-感恩豹豹\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1165},{\\\"amount\\\":202,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-火花闪闪\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/d54cf1d5c1e24a2c8134e0912a0489e5.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1164},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1163},{\\\"amount\\\":128,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-星缤乐\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/ae30fc413a3e493f86707f9eb266a6d2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1162},{\\\"amount\\\":122,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-告白气球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1161},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1160},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-冰淇淋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f751d14df3f143f2956e65545a0fba0f.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1159}]\",\"id\":148,\"operatorId\":139,\"rewardLotteryCount\":155755,\"openRewardDiamonds\":34290329,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/7ff85fc4ff684b14819318e632b5f4a5.svga\",\"updateTime\":\"2021-04-24 20:40:10\",\"sort\":52,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/92989c97fd8e40319e6d1ed460bce0c4.webp\",\"remainLotteryDiamonds\":890573,\"openPayDiamonds\":32708550,\"createTime\":\"2021-04-06 20:25:46\",\"name\":\"白银宝箱\",\"remainLotteryCount\":4255,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":28,\"pages\":3,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 21:40:51:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\n======本次用例运行消耗时间 01秒479毫秒======","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒479毫秒","endTime":"2021-06-28 21:40:51","id":0,"serviceId":1,"startTime":"2021-06-28 21:40:49","status":1}
[2021-06-28 21:40:51.562] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:40:51.562] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:40:51.562] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 21:40:51.563] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:40:51.563] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:40:51.563] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 21:40:51.563] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 21:40:51.563] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 21:40:51.564] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 21:40:51.564] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:40:51.564] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 21:40:51.564] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:40:51 GMT
[2021-06-28 21:40:51.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 21:40:51.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:40:51.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:40:51.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 21:40:51.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:40:51.565] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:40:52.076] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:40:52:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-06-28 21:40:52.077] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:40:52.077] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:40:52.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:40:52.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:40:52.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:40:52.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:40:52.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:40:52.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:40:52.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:40:52.165] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:40:52.165] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:40:52.165] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:40:52.165] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:40:52.166] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:40:52.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:40:52.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:40:52.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:40:52.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:40:52.232] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:40:52.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:40:52.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:40:52.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:40:52.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:40:52 GMT
[2021-06-28 21:40:52.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:40:52.233] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:40:52.234] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:40:52.234] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"bb7184bf075945d3b75a024684ba608c","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:40:52.234] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:40:52.234] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:40:52.235] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:40:52.235] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:40:52.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:40:52.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:40:52.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:40:52.315] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:40:52.316] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:40:52.316] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:40:52.316] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:40:52.316] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:40:52.316] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:40:52.316] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:40:52.316] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:40:52.316] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:40:52.382] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:40:52.382] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:40:52.382] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:40:52.383] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:40:52.383] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:40:52.383] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:40:52.383] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:40:52.383] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:40:52.383] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:40:52 GMT
[2021-06-28 21:40:52.383] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:40:52.384] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:40:52.384] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:40:52.384] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"4b5c7f59eaf544bcac3d4a27459f4082","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:40:52.384] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:40:52.385] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:40:52.385] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:40:52.386] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:40:52.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:40:52.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:40:52.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:40:52.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:40:52.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:40:52.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:4b5c7f59eaf544bcac3d4a27459f4082
[2021-06-28 21:40:52.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:40:52.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:40:52.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:40:52.449] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:40:52.449] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:40:52.449] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:40:52.449] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:40:52.639] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:40:52.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:40:52.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:40:52.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:40:52.640] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:40:52.641] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:40:52.641] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:40:52.642] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:40:52.642] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:40:52 GMT
[2021-06-28 21:40:52.642] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:40:52.642] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:40:52.642] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:40:52.643] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:40:52.643] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:40:52.644] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:40:52.653] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 21:40:52.653] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:40:52:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-06-28 21:40:52.653] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 577毫秒======
[2021-06-28 21:40:52.655] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:40:52.655] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:40:52.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:40:52.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:40:52.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:40:52.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 21:40:52.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:40:52.660] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 21:40:52.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:40:52.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 21:40:52.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:40:52.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 21:40:52.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:40:52.661] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-06-28 21:40:52:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 13:40:52 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"bb7184bf075945d3b75a024684ba608c\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 13:40:52 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"4b5c7f59eaf544bcac3d4a27459f4082\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"4b5c7f59eaf544bcac3d4a27459f4082\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&type=1&pageNum=1&useStatus=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 13:40:52 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":4,\"navigatepageNums\":[1,2,3,4],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png\",\"createTime\":\"2020-12-23 14:37:34\",\"refType\":1,\"id\":44,\"virtualProductId\":328,\"content\":\"每送1个,可增加房间热度10\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"每送1个,可增加房间热度10\",\"giftVersion\":24,\"price\":0,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png\",\"id\":328,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室热度礼物\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":69,\"virtualProductId\":314,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 14:48:40\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\\\",\\\"remark\\\":\\\"一心一意\\\"}]\",\"id\":55,\"virtualProductId\":314}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方185魅力值\",\"giftVersion\":11,\"price\":185,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":314,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":185,\"useStatus\":1,\"name\":\"超人泡泡糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-05-31 00:00:05\",\"labelUrl\":\"\",\"createTime\":\"2020-05-27 11:11:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":285,\"virtualProductId\":517,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png\",\"createTime\":\"2021-05-24 10:02:07\",\"refType\":1,\"id\":76,\"virtualProductId\":517,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":100,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png\",\"id\":517,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1001,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-24 10:02:08\",\"useStatus\":1,\"name\":\"皮皮糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"糖果制造机玩法礼物\",\"delFlag\":false,\"obtainType\":5,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-06-17 17:23:08\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-24 10:02:08\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:56:35\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":24,\"virtualProductId\":327}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可增加对方1魅力值\",\"giftVersion\":17,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":980,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"834861\",\"rangeName\":\"\",\"id\":242,\"virtualProductId\":474,\"roomType\":2,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png\",\"id\":474,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga\",\"giftType\":1,\"sort\":980,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-23 18:01:57\",\"useStatus\":1,\"name\":\"雾时牛啤\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"【雾时】聊天室专属礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-03-22 00:00:00\",\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 18:01:57\",\"endTime\":\"2021-08-22 23:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"3\",\"rangeName\":\"全部\",\"id\":244,\"virtualProductId\":476,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":128,\"remarkUrl\":\"\",\"id\":476,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-03-06 10:48:39\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"女生厅专属礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-03-06 10:48:39\"}},{\"virtualProductRange\":{\"roomRange\":\"17\",\"rangeName\":\"全部\",\"id\":260,\"virtualProductId\":492,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png\",\"createTime\":\"2021-05-13 15:42:15\",\"refType\":1,\"id\":73,\"virtualProductId\":492,\"content\":\"男生厅专属礼物\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":128,\"remarkUrl\":\"\",\"id\":492,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-04-20 12:01:04\",\"useStatus\":1,\"name\":\"游戏机\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 15:42:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-04-20 12:01:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":292,\"virtualProductId\":524,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":6,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":6,\"limitUpdateTime\":\"2021-05-28 17:21:11\",\"useStatus\":1,\"name\":\"爱心补给\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-28 18:00:32\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":293,\"virtualProductId\":525,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-06-02 13:43:36\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"66\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\\\",\\\"remark\\\":\\\"一切顺利\\\"}]\",\"id\":265,\"virtualProductId\":525}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png\",\"createTime\":\"2021-06-02 13:43:36\",\"refType\":1,\"id\":79,\"virtualProductId\":525,\"content\":\"一次性赠送66个该礼物,触发进阶动效。\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":10,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png\",\"id\":525,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":970,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-28 18:07:48\",\"useStatus\":1,\"name\":\"永远滴神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-06-02 13:49:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 18:07:48\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":97,\"virtualProductId\":220,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方21魅力值\",\"giftVersion\":10,\"price\":21,\"remarkUrl\":\"\",\"id\":220,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":960,\"charmValue\":21,\"useStatus\":1,\"name\":\"甜甜圈\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2019-08-07 16:02:15\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":34,\"pages\":4,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 21:40:52:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\n======本次用例运行消耗时间 577毫秒======","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"577毫秒","endTime":"2021-06-28 21:40:52","id":0,"serviceId":1,"startTime":"2021-06-28 21:40:52","status":1}
[2021-06-28 21:40:52.975] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:40:52.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:40:52.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 21:40:52.976] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:40:52.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:40:52.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 21:40:52.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 21:40:52.977] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 21:40:52.978] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 21:40:52.978] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:40:52.978] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 21:40:52.978] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:40:52 GMT
[2021-06-28 21:40:52.979] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 21:40:52.979] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:40:52.979] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:40:52.979] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 21:40:52.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:40:52.980] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:40:53.508] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-06-28 21:40:53.509] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 21:40:53.509] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:2
[2021-06-28 21:40:53.509] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 21:40:53.509] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 21:40:53.516] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 21:40:53.518] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 21:40:53.527] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 21:40:53.528] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:40:53.531] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:40:53.532] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:40:53.532] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 21:40:53.532] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 21:40:53.532] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:40:53.532] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 21:40:53.532] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:40:53.532] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 21:40:53.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:40:53.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 21:40:53.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:40:53.533] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"03秒996毫秒","endTime":"2021-06-28 21:40:53","env":"test(192.168.41.108)","failed":0,"id":0,"passed":2,"serviceId":1,"skipped":0,"startTime":"2021-06-28 21:40:49","status":1,"teamId":0,"total":2}
[2021-06-28 21:40:53.897] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:40:53.897] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:40:53.897] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 21:40:53.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:40:53.898] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:40:53.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 21:40:53.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 21:40:53.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 21:40:53.900] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 21:40:53.900] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:40:53.900] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 21:40:53.900] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:40:52 GMT
[2021-06-28 21:40:53.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 21:40:53.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:40:53.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:40:53.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 21:40:53.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:40:53.901] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:40:53.902] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 21:40:53:测试集结束======
[2021-06-28 21:40:53.902] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 03秒996毫秒======
[2021-06-28 21:44:13.153] [main] [INFO ] - [com.fangdd.qa.testng.TestngRetry:23] - retrycount=0
[2021-06-28 21:44:13.305] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:36] - ======2021-06-28 21:44:13:测试集开始======
[2021-06-28 21:44:13.609] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:44:13:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======
[2021-06-28 21:44:13.619] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:44:13.823] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:44:14.028] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:44:14.029] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:44:14.029] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:44:14.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:44:14.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:44:14.030] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:44:14.031] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:44:14.034] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:44:14.034] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:44:14.034] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:44:14.035] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:44:14.035] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:44:14.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:44:14.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:44:14.446] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:44:14.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:44:14.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:44:14.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:44:14.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:44:14.447] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:44:14.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:44:14 GMT
[2021-06-28 21:44:14.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:44:14.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:44:14.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:44:14.448] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"651949886e7945299c3702d8767f2274","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:44:14.449] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:44:14.450] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:44:14.452] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-06-28 21:44:14.453] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:44:14.532] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:44:14.533] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:44:14.533] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list
[2021-06-28 21:44:14.534] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:44:14.534] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:44:14.534] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:651949886e7945299c3702d8767f2274
[2021-06-28 21:44:14.535] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:44:14.535] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:44:14.536] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, activityType=1, pageNum=1}
[2021-06-28 21:44:14.536] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:44:14.537] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&activityType=1&pageNum=1
[2021-06-28 21:44:14.537] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:44:14.537] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:44:14.883] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:44:14.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:44:14.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:44:14.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:44:14.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:44:14.885] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:44:14.885] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:44:14.885] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:44:14.885] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:44:14 GMT
[2021-06-28 21:44:14.885] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:44:14.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:44:14.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:44:14.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"startRow":1,"lastPage":3,"navigatepageNums":[1,2,3],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"remark":"","openedTimes":25198,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\",\"decorationId\":365,\"decorationName\":\"萌小兔座位框\"}","lotteryRules":"[{\"amount\":210,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿瓶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5fa24da0548944d28cbd6cb2aea0617a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1427},{\"amount\":266,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1428},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1429},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1430},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/8b79080ee17d4e4f98a37dee5d6e1d25.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1431},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1432},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1433},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1434},{\"amount\":66666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-时光之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/d2db47083eaa40de9c8b324bc41ea564.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1435},{\"amount\":18888,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-爱恋之城\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/1b3cae6c924b4c8db2cf70e00435f18a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1436}]","id":189,"operatorId":25,"rewardLotteryCount":25198,"openRewardDiamonds":22563247,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:26","sort":121,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":1023301,"openPayDiamonds":0,"createTime":"2021-05-24 12:04:17","name":"梦幻糖果机","remainLotteryCount":794,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":216285,"staticUrl":"null","delFlag":false,"operatorName":"章宇","openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\",\"decorationId\":224,\"decorationName\":\"绚烂阳光座位框\"}","lotteryRules":"[{\"amount\":21,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-蓝色焰火*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1414},{\"amount\":30,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-小礼花*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1415},{\"amount\":52,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-点赞*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1416},{\"amount\":66,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-乐符*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/b436e56b9f7e4c6aab4d9318e3221362.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1417},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-水晶瓶*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/3de3e42108db46f08eecf50a073cff90.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1418},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天鹅之恋*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1419},{\"amount\":520,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-天生一对*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1420},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-一生有你*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/65e3617e22f545ec887c66f02d1a7a6f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1421},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-为你摘星*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/e19bacb19bfa46f481bb8c16dc02747e.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1422},{\"amount\":2000,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-梦幻奇遇*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/6b487a5275984ba1a779fa5436c88d19.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1423}]","id":188,"operatorId":25,"rewardLotteryCount":216285,"openRewardDiamonds":19093404,"objectGifUrl":"null","updateTime":"2021-05-24 20:58:19","sort":120,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":172431,"openPayDiamonds":0,"createTime":"2021-05-24 11:55:16","name":"甜心糖果机","remainLotteryCount":1556,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":5,"staticUrl":"null","delFlag":false,"operatorName":"admin","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小开心*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1289},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小蛋糕*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f23a2d65b84444afba2fa0c518793e48.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1290},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-小嘎嘎*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/00527efdb7514484acd8f91740244781.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1291},{\"amount\":5,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-鼓掌*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1292}]","id":157,"operatorId":34,"rewardLotteryCount":5,"openRewardDiamonds":5,"objectGifUrl":"null","updateTime":"2021-04-28 16:21:39","sort":113,"labelUrl":"null","gifUrl":"null","remainLotteryDiamonds":775,"openPayDiamonds":0,"createTime":"2021-04-28 14:38:56","name":"梦幻测试","remainLotteryCount":295,"activityType":1,"priceRules":"[{\"price\":\"2\",\"times\":\"1\"},{\"price\":\"10\",\"times\":\"5\"},{\"price\":\"20\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"","openedTimes":47,"delFlag":false,"operatorName":"章宇","coverThreshold":0,"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\",\"decorationId\":71,\"decorationName\":\"小翅膀座位框\"}","lotteryRules":"[{\"amount\":3,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-甜甜草莓*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1285},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-荧光棒*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/19/22ef4d05f54a4b3298d8c12cdb2bae19.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1286},{\"amount\":1,\"isReward\":0,\"isNotice\":1,\"name\":\"礼物-萤火虫*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1287},{\"amount\":7,\"isReward\":1,\"isNotice\":1,\"name\":\"礼物-小花朵*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1288}]","id":156,"operatorId":25,"rewardLotteryCount":47,"openRewardDiamonds":81,"sort":111,"remainLotteryDiamonds":1599,"openPayDiamonds":0,"createTime":"2021-04-28 14:37:13","name":"甜心测试","remainLotteryCount":353,"activityType":1,"priceRules":"[{\"price\":\"1\",\"times\":\"1\"},{\"price\":\"5\",\"times\":\"5\"},{\"price\":\"10\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"4/23日刷新","openedTimes":3449320,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/7c31798619334da792fff5279b8ec7bf.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/33a2ea85233149debbfcb2cfc19e0b67.png","lotteryActivityId":152,"createTime":"2021-06-16 10:06:26","id":127,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1241},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1240},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1239},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1238},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1237},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1236},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小可乐\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/9ce71421d70d47b099995395e9e330d9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1235},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-四叶草\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1234},{\"amount\":7,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小花朵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1233},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1232},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1231},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小开心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1230}]","id":152,"operatorId":34,"rewardLotteryCount":3449320,"openRewardDiamonds":34507957,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga","updateTime":"2021-06-16 10:06:26","sort":60,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e228e5a2414145809b4abc41efacbbba.webp","remainLotteryDiamonds":3420,"openPayDiamonds":34493160,"createTime":"2021-04-23 18:20:19","name":"普通宝箱","remainLotteryCount":316,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4/23日刷新","openedTimes":279590,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/717f1ee388b24e38b5888485e5299472.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c42f032ebb9f43ff81a127d8bd4b1a19.png","lotteryActivityId":153,"createTime":"2021-06-16 10:06:45","id":128,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=153&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1253},{\"amount\":1066,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-好运锦鲤\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1252},{\"amount\":990,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-心愿许愿池\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1251},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1250},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1249},{\"amount\":222,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-感恩豹豹\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1248},{\"amount\":213,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天鹅之恋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1247},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1246},{\"amount\":122,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-告白气球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1244},{\"amount\":106,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1243},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-幸运铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1242},{\"amount\":15000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-魔法城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1256},{\"amount\":10000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-暗夜城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1255},{\"amount\":3000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-星辰之钥\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1254},{\"amount\":135,\"isReward\":0,\"isNotice\":0,\"name\":\"礼物-木碗星空*\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e0549adc52ff4c1394cf3d41bad12237.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1284}]","id":153,"operatorId":34,"rewardLotteryCount":279590,"openRewardDiamonds":62638881,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga","updateTime":"2021-06-16 10:06:45","sort":59,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/bba8816d05324864bdbd80ca475525ae.webp","remainLotteryDiamonds":145334,"openPayDiamonds":58711800,"createTime":"2021-04-23 18:37:26","name":"白银宝箱","remainLotteryCount":546,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":155474,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/b97af0eb6d784dad9557d4f4c734fc2d.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da468049c9a4df7aea562239b93bdab.png","lotteryActivityId":154,"createTime":"2021-06-16 10:06:53","id":129,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=gold&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\",\"decorationId\":231,\"decorationName\":\"耀金座位框\"}","lotteryRules":"[{\"amount\":33440,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-深海精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/05b37aede2014994a3094c7ccab4e55a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1268},{\"amount\":13140,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-逐爱星辰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1267},{\"amount\":2998,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-花开万物\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6145fc5f4bb24a99a972764527999da7.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1266},{\"amount\":1314,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-环游星河\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1265},{\"amount\":999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-圆梦精灵\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/0a49819db4d542c1be74f52fe72def0f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1264},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1263},{\"amount\":666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/4/4c21272581fa4bb9aca4c0df6567a70e.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1262},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-流光溢彩\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1261},{\"amount\":520,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-天生一对\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1260},{\"amount\":406,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-林中鹿\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1259},{\"amount\":300,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-飞鸽传书\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9d32f897dcf34ff6948cff77d3ebb30c.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1258},{\"amount\":222,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-广寒月\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9f34c21030404601aaacfebea908f7ee.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1257}]","id":154,"operatorId":34,"rewardLotteryCount":155474,"openRewardDiamonds":108134265,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga","updateTime":"2021-06-16 10:06:53","sort":58,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/d31522c02db2434d9879a0f60005092b.webp","remainLotteryDiamonds":310175,"openPayDiamonds":103545684,"createTime":"2021-04-23 18:49:41","name":"黄金宝箱","remainLotteryCount":510,"activityType":1,"priceRules":"[{\"price\":\"666\",\"times\":\"1\"},{\"price\":\"3330\",\"times\":\"5\"},{\"price\":\"6660\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"423刷新","openedTimes":209616,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/ed1d7bf6ce3347a7b7d57ae1196b6e23.png","delFlag":false,"operatorName":"admin","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/873b5a8b240349fb8c310d314e6fb32b.png","lotteryActivityId":155,"createTime":"2021-06-16 10:07:01","id":130,"content":"","activityH5Url":"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=magic&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\",\"decorationId\":232,\"decorationName\":\"幻尊座位框\"}","lotteryRules":"[{\"amount\":58888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-浴火凤凰\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f6c6128dfdaf400384125602fc516504.png\",\"rewardLevel\":4,\"isNew\":0,\"lotteryId\":1280},{\"amount\":9999,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-毁灭魔法\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0b8db93fb99d445d8cd18923b759669a.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1279},{\"amount\":8888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-战神之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f3f840c6159c42ec8e25d86328d0555c.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1278},{\"amount\":6666,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恶魔之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/4e0febbdd402462b841d34a92949e667.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1277},{\"amount\":1688,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-天使之翼\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/498d1b0089e84308801095724e0593e6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1276},{\"amount\":1199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-白马王子\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/68e1039b32da4dd080a339e25529a9ff.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1275},{\"amount\":999,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-破茧成蝶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6c65021c3fab48ba949b9036b448dc1a.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1274},{\"amount\":568,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鎏金百合\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2601a655d29e4f74954aa67919557d53.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1273},{\"amount\":455,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔法手杖\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/7/21/2a8944054a554632b62c4cc7d7a076b4.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1272},{\"amount\":388,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-魔力娃娃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e6600ac593bc4ae88b95049bca873fd6.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1271},{\"amount\":299,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-万箭穿心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/5b77d17b7a9c4c75a36286771eaedac9.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1270},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-紫惊雷\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/44cf7b20185742fea258deffe6f11e45.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1269}]","id":155,"operatorId":34,"rewardLotteryCount":209616,"openRewardDiamonds":207980409,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga","updateTime":"2021-06-16 10:07:01","sort":57,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c467ccae646a4904bf580e3f2baffbb8.webp","remainLotteryDiamonds":659306,"openPayDiamonds":209406384,"createTime":"2021-04-23 19:19:29","name":"魔幻宝箱","remainLotteryCount":353,"activityType":1,"priceRules":"[{\"price\":\"999\",\"times\":\"1\"},{\"price\":\"4995\",\"times\":\"5\"},{\"price\":\"9990\",\"times\":\"10\"}]","isActivate":true,"status":1},{"remark":"4月7日刷新","openedTimes":2574673,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/7f480df733a64dbcb2e0a1d61da99295.png","delFlag":false,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/4da3ee04c91e42249905d614d2d14627.png","lotteryActivityId":149,"createTime":"2021-04-24 20:39:54","id":74,"content":"","activityH5Url":"https://h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\",\"decorationId\":229,\"decorationName\":\"尘铜座位框\"}","lotteryRules":"[{\"amount\":333,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-亲亲热热\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1185},{\"amount\":199,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1184},{\"amount\":106,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1183},{\"amount\":99,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-接放学\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1182},{\"amount\":30,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-小礼花\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1181},{\"amount\":21,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-蓝色焰火\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1180},{\"amount\":10,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-心相印\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1179},{\"amount\":8,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-许愿星\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/cb68fc35ea3e42d6bf7b4149ecb9d91b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1178},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-小心心\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/364b732988a64d1aa4c7d6e4594607fe.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1177},{\"amount\":6,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-666\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1176},{\"amount\":5,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-鼓掌\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1175},{\"amount\":3,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-甜甜草莓\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1174}]","id":149,"operatorId":139,"rewardLotteryCount":2574673,"openRewardDiamonds":25548878,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/580c3d76e85c42eaaf6cde0a4a8038fd.svga","updateTime":"2021-04-24 20:39:55","sort":53,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/a49899ab5cb44bd6a659e8244ca1d0a3.webp","remainLotteryDiamonds":13372,"openPayDiamonds":25746730,"createTime":"2021-04-07 10:49:04","name":"普通宝箱","remainLotteryCount":1288,"activityType":1,"priceRules":"[{\"price\":\"10\",\"times\":\"1\"},{\"price\":\"50\",\"times\":\"5\"},{\"price\":\"100\",\"times\":\"10\"}]","isActivate":false,"status":0},{"remark":"4月7日刷新","openedTimes":155755,"staticUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/fcdc82b7cf044a2e810dba863dfc90d3.png","delFlag":false,"operatorName":"张迪","coverThreshold":0,"lotteryActivityExt":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/8d729db7b2d34cf4a93165c3a85104ed.png","lotteryActivityId":148,"createTime":"2021-04-24 20:40:09","id":75,"content":"","activityH5Url":"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=148&dialog=1&hideNavi=1","status":1},"openType":2,"playDesc":"","decorationRules":"{\"usefulDays\":1,\"decorationUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\",\"decorationId\":230,\"decorationName\":\"璀银座位框\"}","lotteryRules":"[{\"amount\":15000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-魔法城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1173},{\"amount\":10000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-暗夜城堡\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1172},{\"amount\":3000,\"isReward\":1,\"isNotice\":1,\"name\":\"魅力值礼物-星辰之钥\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1171},{\"amount\":5200,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-恋爱星球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\",\"rewardLevel\":3,\"isNew\":0,\"lotteryId\":1170},{\"amount\":1066,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-好运锦鲤\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1169},{\"amount\":990,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-心愿许愿池\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1168},{\"amount\":888,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-发财摇铃\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\",\"rewardLevel\":2,\"isNew\":0,\"lotteryId\":1167},{\"amount\":266,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-喵克里里\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1166},{\"amount\":222,\"isReward\":0,\"isNotice\":1,\"name\":\"魅力值礼物-感恩豹豹\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1165},{\"amount\":202,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-火花闪闪\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/d54cf1d5c1e24a2c8134e0912a0489e5.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1164},{\"amount\":199,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-桃花水晶\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1163},{\"amount\":128,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-星缤乐\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/ae30fc413a3e493f86707f9eb266a6d2.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1162},{\"amount\":122,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-告白气球\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1161},{\"amount\":106,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-变瘦药水\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1160},{\"amount\":99,\"isReward\":0,\"isNotice\":0,\"name\":\"魅力值礼物-冰淇淋\",\"preUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f751d14df3f143f2956e65545a0fba0f.png\",\"rewardLevel\":1,\"isNew\":0,\"lotteryId\":1159}]","id":148,"operatorId":139,"rewardLotteryCount":155755,"openRewardDiamonds":34290329,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/7ff85fc4ff684b14819318e632b5f4a5.svga","updateTime":"2021-04-24 20:40:10","sort":52,"labelUrl":"","gifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/92989c97fd8e40319e6d1ed460bce0c4.webp","remainLotteryDiamonds":890573,"openPayDiamonds":32708550,"createTime":"2021-04-06 20:25:46","name":"白银宝箱","remainLotteryCount":4255,"activityType":1,"priceRules":"[{\"price\":\"210\",\"times\":\"1\"},{\"price\":\"1050\",\"times\":\"5\"},{\"price\":\"2100\",\"times\":\"10\"}]","isActivate":false,"status":0}],"pageNum":1,"navigatePages":8,"total":28,"pages":3,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:44:14.890] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:44:14.890] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:44:14.904] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testActivityList--Test Mthod Success
[2021-06-28 21:44:14.905] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:44:14:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======
[2021-06-28 21:44:14.905] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 01秒296毫秒======
[2021-06-28 21:44:14.946] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:44:14.946] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:44:14.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:44:14.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:44:14.952] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:44:14.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 21:44:14.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:44:14.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 21:44:14.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:44:14.953] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 21:44:14.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:44:14.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 21:44:14.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:44:14.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"幸运夺宝箱列表","caseLog":"======2021-06-28 21:44:13:用例【com.pipi.invoker.CosPlayerTest.testActivityList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 13:44:14 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"651949886e7945299c3702d8767f2274\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/lottery/activity/list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"651949886e7945299c3702d8767f2274\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"activityType\":\"1\",\"pageNum\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&activityType=1&pageNum=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 13:44:14 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"startRow\":1,\"lastPage\":3,\"navigatepageNums\":[1,2,3],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"remark\":\"\",\"openedTimes\":25198,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/1/e2557719cc714dcc903cc370d7c9b0be.png\\\",\\\"decorationId\\\":365,\\\"decorationName\\\":\\\"萌小兔座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":210,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-许愿瓶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/5fa24da0548944d28cbd6cb2aea0617a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1427},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1428},{\\\"amount\\\":406,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1429},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1430},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/8b79080ee17d4e4f98a37dee5d6e1d25.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1431},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1432},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1433},{\\\"amount\\\":13140,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1434},{\\\"amount\\\":66666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-时光之恋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/d2db47083eaa40de9c8b324bc41ea564.png\\\",\\\"rewardLevel\\\":4,\\\"isNew\\\":0,\\\"lotteryId\\\":1435},{\\\"amount\\\":18888,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-爱恋之城\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/1b3cae6c924b4c8db2cf70e00435f18a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1436}]\",\"id\":189,\"operatorId\":25,\"rewardLotteryCount\":25198,\"openRewardDiamonds\":22563247,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:26\",\"sort\":121,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":1023301,\"openPayDiamonds\":0,\"createTime\":\"2021-05-24 12:04:17\",\"name\":\"梦幻糖果机\",\"remainLotteryCount\":794,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":216285,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"章宇\",\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/8/11/e31940fe579b4f60bdeac12bb29eaaeb.png\\\",\\\"decorationId\\\":224,\\\"decorationName\\\":\\\"绚烂阳光座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-蓝色焰火*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1414},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-小礼花*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1415},{\\\"amount\\\":52,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-点赞*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/10/0747a72cbf0949f8a4ac99035fb779cc.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1416},{\\\"amount\\\":66,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-乐符*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/b436e56b9f7e4c6aab4d9318e3221362.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1417},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-水晶瓶*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/3de3e42108db46f08eecf50a073cff90.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1418},{\\\"amount\\\":213,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天鹅之恋*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1419},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-天生一对*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1420},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-一生有你*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/65e3617e22f545ec887c66f02d1a7a6f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1421},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-为你摘星*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/e19bacb19bfa46f481bb8c16dc02747e.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1422},{\\\"amount\\\":2000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-梦幻奇遇*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/6b487a5275984ba1a779fa5436c88d19.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1423}]\",\"id\":188,\"operatorId\":25,\"rewardLotteryCount\":216285,\"openRewardDiamonds\":19093404,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-05-24 20:58:19\",\"sort\":120,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":172431,\"openPayDiamonds\":0,\"createTime\":\"2021-05-24 11:55:16\",\"name\":\"甜心糖果机\",\"remainLotteryCount\":1556,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":5,\"staticUrl\":\"null\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小开心*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1289},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小蛋糕*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f23a2d65b84444afba2fa0c518793e48.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1290},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小嘎嘎*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/00527efdb7514484acd8f91740244781.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1291},{\\\"amount\\\":5,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-鼓掌*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1292}]\",\"id\":157,\"operatorId\":34,\"rewardLotteryCount\":5,\"openRewardDiamonds\":5,\"objectGifUrl\":\"null\",\"updateTime\":\"2021-04-28 16:21:39\",\"sort\":113,\"labelUrl\":\"null\",\"gifUrl\":\"null\",\"remainLotteryDiamonds\":775,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:38:56\",\"name\":\"梦幻测试\",\"remainLotteryCount\":295,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"2\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"20\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"\",\"openedTimes\":47,\"delFlag\":false,\"operatorName\":\"章宇\",\"coverThreshold\":0,\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/11/8/77fe938706df40e4a5b652d13153eee9.png\\\",\\\"decorationId\\\":71,\\\"decorationName\\\":\\\"小翅膀座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-甜甜草莓*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1285},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-荧光棒*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/19/22ef4d05f54a4b3298d8c12cdb2bae19.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1286},{\\\"amount\\\":1,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-萤火虫*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/065f98b0ab44431eb1afcd3a0140bc93.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1287},{\\\"amount\\\":7,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"礼物-小花朵*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1288}]\",\"id\":156,\"operatorId\":25,\"rewardLotteryCount\":47,\"openRewardDiamonds\":81,\"sort\":111,\"remainLotteryDiamonds\":1599,\"openPayDiamonds\":0,\"createTime\":\"2021-04-28 14:37:13\",\"name\":\"甜心测试\",\"remainLotteryCount\":353,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"1\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"5\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"4/23日刷新\",\"openedTimes\":3449320,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/7c31798619334da792fff5279b8ec7bf.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/33a2ea85233149debbfcb2cfc19e0b67.png\",\"lotteryActivityId\":152,\"createTime\":\"2021-06-16 10:06:26\",\"id\":127,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":333,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1241},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1240},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1239},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-接放学\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1238},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小礼花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1237},{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-蓝色焰火\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1236},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小可乐\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/9ce71421d70d47b099995395e9e330d9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1235},{\\\"amount\\\":8,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-四叶草\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/aca61b210ff74f70a3d690e6310154f8.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1234},{\\\"amount\\\":7,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小花朵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/8cb5e2f00a5044d5a6a34808107b40a1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1233},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1232},{\\\"amount\\\":5,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1231},{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小开心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/0f8e0239b55d490181ed2542984f646e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1230}]\",\"id\":152,\"operatorId\":34,\"rewardLotteryCount\":3449320,\"openRewardDiamonds\":34507957,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/651949676dec41fa9648ca8ab447e408.svga\",\"updateTime\":\"2021-06-16 10:06:26\",\"sort\":60,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/e228e5a2414145809b4abc41efacbbba.webp\",\"remainLotteryDiamonds\":3420,\"openPayDiamonds\":34493160,\"createTime\":\"2021-04-23 18:20:19\",\"name\":\"普通宝箱\",\"remainLotteryCount\":316,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"4/23日刷新\",\"openedTimes\":279590,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/717f1ee388b24e38b5888485e5299472.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c42f032ebb9f43ff81a127d8bd4b1a19.png\",\"lotteryActivityId\":153,\"createTime\":\"2021-06-16 10:06:45\",\"id\":128,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=153&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\\\",\\\"decorationId\\\":230,\\\"decorationName\\\":\\\"璀银座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1253},{\\\"amount\\\":1066,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-好运锦鲤\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1252},{\\\"amount\\\":990,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-心愿许愿池\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1251},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1250},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1249},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-感恩豹豹\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1248},{\\\"amount\\\":213,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-天鹅之恋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/159767cfb5194c28bf81c9e02723f6fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1247},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1246},{\\\"amount\\\":122,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-告白气球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1244},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1243},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-幸运铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e54e5085b02b48efbea6ab23b0765cfe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1242},{\\\"amount\\\":15000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-魔法城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1256},{\\\"amount\\\":10000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-暗夜城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1255},{\\\"amount\\\":3000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-星辰之钥\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1254},{\\\"amount\\\":135,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"礼物-木碗星空*\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e0549adc52ff4c1394cf3d41bad12237.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1284}]\",\"id\":153,\"operatorId\":34,\"rewardLotteryCount\":279590,\"openRewardDiamonds\":62638881,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/672a8ff1ad884ff6aea38eea7e88758b.svga\",\"updateTime\":\"2021-06-16 10:06:45\",\"sort\":59,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/bba8816d05324864bdbd80ca475525ae.webp\",\"remainLotteryDiamonds\":145334,\"openPayDiamonds\":58711800,\"createTime\":\"2021-04-23 18:37:26\",\"name\":\"白银宝箱\",\"remainLotteryCount\":546,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"423刷新\",\"openedTimes\":155474,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/b97af0eb6d784dad9557d4f4c734fc2d.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/1da468049c9a4df7aea562239b93bdab.png\",\"lotteryActivityId\":154,\"createTime\":\"2021-06-16 10:06:53\",\"id\":129,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=gold&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/9/1/1ec5742a6b2f47bfa9b463cf34e3ef8d.png\\\",\\\"decorationId\\\":231,\\\"decorationName\\\":\\\"耀金座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":33440,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-深海精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/23/05b37aede2014994a3094c7ccab4e55a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1268},{\\\"amount\\\":13140,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-逐爱星辰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/3/d9b767450047432494dc1199f4fde25b.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1267},{\\\"amount\\\":2998,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-花开万物\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6145fc5f4bb24a99a972764527999da7.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1266},{\\\"amount\\\":1314,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-环游星河\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/20/9522617a9aa84a6784568652a834380f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1265},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-圆梦精灵\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2019/10/22/0a49819db4d542c1be74f52fe72def0f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1264},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1263},{\\\"amount\\\":666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/4/4c21272581fa4bb9aca4c0df6567a70e.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1262},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-流光溢彩\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/20/98fe4490ca97451e8fc3bd785e6f1aab.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1261},{\\\"amount\\\":520,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-天生一对\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/b6d39e61857a4f8697c4ce6b77b69e43.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1260},{\\\"amount\\\":406,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-林中鹿\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/5/2b0c79a2e2854e26ab823e9546fa5b5f.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1259},{\\\"amount\\\":300,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-飞鸽传书\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9d32f897dcf34ff6948cff77d3ebb30c.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1258},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-广寒月\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/9f34c21030404601aaacfebea908f7ee.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1257}]\",\"id\":154,\"operatorId\":34,\"rewardLotteryCount\":155474,\"openRewardDiamonds\":108134265,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/31a4637256394f9ebfdda5a4b3fc2c55.svga\",\"updateTime\":\"2021-06-16 10:06:53\",\"sort\":58,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/d31522c02db2434d9879a0f60005092b.webp\",\"remainLotteryDiamonds\":310175,\"openPayDiamonds\":103545684,\"createTime\":\"2021-04-23 18:49:41\",\"name\":\"黄金宝箱\",\"remainLotteryCount\":510,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"666\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"3330\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"6660\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"423刷新\",\"openedTimes\":209616,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/ed1d7bf6ce3347a7b7d57ae1196b6e23.png\",\"delFlag\":false,\"operatorName\":\"admin\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/873b5a8b240349fb8c310d314e6fb32b.png\",\"lotteryActivityId\":155,\"createTime\":\"2021-06-16 10:07:01\",\"id\":130,\"content\":\"\",\"activityH5Url\":\"https://pre-test-h5.apeiwan.com/htm/lottery/index.html?box=magic&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/21172075a5c9422692cd4529d90d1a80.png\\\",\\\"decorationId\\\":232,\\\"decorationName\\\":\\\"幻尊座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":58888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-浴火凤凰\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f6c6128dfdaf400384125602fc516504.png\\\",\\\"rewardLevel\\\":4,\\\"isNew\\\":0,\\\"lotteryId\\\":1280},{\\\"amount\\\":9999,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-毁灭魔法\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0b8db93fb99d445d8cd18923b759669a.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1279},{\\\"amount\\\":8888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-战神之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f3f840c6159c42ec8e25d86328d0555c.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1278},{\\\"amount\\\":6666,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恶魔之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/4e0febbdd402462b841d34a92949e667.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1277},{\\\"amount\\\":1688,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-天使之翼\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/498d1b0089e84308801095724e0593e6.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1276},{\\\"amount\\\":1199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-白马王子\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/68e1039b32da4dd080a339e25529a9ff.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1275},{\\\"amount\\\":999,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-破茧成蝶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/6c65021c3fab48ba949b9036b448dc1a.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1274},{\\\"amount\\\":568,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鎏金百合\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/2601a655d29e4f74954aa67919557d53.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1273},{\\\"amount\\\":455,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-魔法手杖\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/7/21/2a8944054a554632b62c4cc7d7a076b4.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1272},{\\\"amount\\\":388,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-魔力娃娃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/e6600ac593bc4ae88b95049bca873fd6.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1271},{\\\"amount\\\":299,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-万箭穿心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/5b77d17b7a9c4c75a36286771eaedac9.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1270},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-紫惊雷\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/9/44cf7b20185742fea258deffe6f11e45.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1269}]\",\"id\":155,\"operatorId\":34,\"rewardLotteryCount\":209616,\"openRewardDiamonds\":207980409,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/cafbb47e71764273bb172c8e64570738.svga\",\"updateTime\":\"2021-06-16 10:07:01\",\"sort\":57,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/23/c467ccae646a4904bf580e3f2baffbb8.webp\",\"remainLotteryDiamonds\":659306,\"openPayDiamonds\":209406384,\"createTime\":\"2021-04-23 19:19:29\",\"name\":\"魔幻宝箱\",\"remainLotteryCount\":353,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"999\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"4995\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"9990\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":true,\"status\":1},{\"remark\":\"4月7日刷新\",\"openedTimes\":2574673,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/7f480df733a64dbcb2e0a1d61da99295.png\",\"delFlag\":false,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/4da3ee04c91e42249905d614d2d14627.png\",\"lotteryActivityId\":149,\"createTime\":\"2021-04-24 20:39:54\",\"id\":74,\"content\":\"\",\"activityH5Url\":\"https://h5.apeiwan.com/htm/lottery?hideNavi=1&box=ordinary\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/adada30dad754189afae0142db13d8e6.png\\\",\\\"decorationId\\\":229,\\\"decorationName\\\":\\\"尘铜座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":333,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-亲亲热热\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/7/50da269ad0ca48a7a5a30ee1369ec1c8.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1185},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1184},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1183},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-接放学\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/ec1613815581492abad699a4be0cea58.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1182},{\\\"amount\\\":30,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-小礼花\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/b9762148eee5495a9cc45d437ce7059a.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1181},{\\\"amount\\\":21,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-蓝色焰火\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/12ffd98a9694444aa73a6e85af69a502.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1180},{\\\"amount\\\":10,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-心相印\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/889e68e2182a478eaa024dfb751fce05.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1179},{\\\"amount\\\":8,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-许愿星\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/cb68fc35ea3e42d6bf7b4149ecb9d91b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1178},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-小心心\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/364b732988a64d1aa4c7d6e4594607fe.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1177},{\\\"amount\\\":6,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-666\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/89b13ea938644bab88424ed47c163cb2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1176},{\\\"amount\\\":5,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-鼓掌\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/fd836076c9724c1f8b8e8e0a0f903517.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1175},{\\\"amount\\\":3,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-甜甜草莓\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/35a6f9da5fe7446c90274189a2cad94c.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1174}]\",\"id\":149,\"operatorId\":139,\"rewardLotteryCount\":2574673,\"openRewardDiamonds\":25548878,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/580c3d76e85c42eaaf6cde0a4a8038fd.svga\",\"updateTime\":\"2021-04-24 20:39:55\",\"sort\":53,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/a49899ab5cb44bd6a659e8244ca1d0a3.webp\",\"remainLotteryDiamonds\":13372,\"openPayDiamonds\":25746730,\"createTime\":\"2021-04-07 10:49:04\",\"name\":\"普通宝箱\",\"remainLotteryCount\":1288,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"10\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"50\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0},{\"remark\":\"4月7日刷新\",\"openedTimes\":155755,\"staticUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/fcdc82b7cf044a2e810dba863dfc90d3.png\",\"delFlag\":false,\"operatorName\":\"张迪\",\"coverThreshold\":0,\"lotteryActivityExt\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/7/8d729db7b2d34cf4a93165c3a85104ed.png\",\"lotteryActivityId\":148,\"createTime\":\"2021-04-24 20:40:09\",\"id\":75,\"content\":\"\",\"activityH5Url\":\"https://app.apeiwan.com/lob-social-contact/lottery.html?lotteryActivityId=148&dialog=1&hideNavi=1\",\"status\":1},\"openType\":2,\"playDesc\":\"\",\"decorationRules\":\"{\\\"usefulDays\\\":1,\\\"decorationUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/9/1/fd549c9d823d4954b04d436123c021e1.png\\\",\\\"decorationId\\\":230,\\\"decorationName\\\":\\\"璀银座位框\\\"}\",\"lotteryRules\":\"[{\\\"amount\\\":15000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-魔法城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/a0242a4240b74d6184617e27c39eeedb.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1173},{\\\"amount\\\":10000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-暗夜城堡\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/988ead23d14042538f4316c510b82cdf.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1172},{\\\"amount\\\":3000,\\\"isReward\\\":1,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-星辰之钥\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/11/e27498efe41b44e488810af8a2f95615.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1171},{\\\"amount\\\":5200,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-恋爱星球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/4/589a496283614a41a8c47ade9e7d00dd.png\\\",\\\"rewardLevel\\\":3,\\\"isNew\\\":0,\\\"lotteryId\\\":1170},{\\\"amount\\\":1066,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-好运锦鲤\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/303af9a3e43e4196a14cd57a09d9a4f2.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1169},{\\\"amount\\\":990,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-心愿许愿池\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/485d2c5f13c240d9ac30ce5df5e010a9.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1168},{\\\"amount\\\":888,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-发财摇铃\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ca40bc15dd9e40d997df5fe830ce64ef.png\\\",\\\"rewardLevel\\\":2,\\\"isNew\\\":0,\\\"lotteryId\\\":1167},{\\\"amount\\\":266,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-喵克里里\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/7/d3b1b940840b4a719eb1ab8c7c3f0e2d.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1166},{\\\"amount\\\":222,\\\"isReward\\\":0,\\\"isNotice\\\":1,\\\"name\\\":\\\"魅力值礼物-感恩豹豹\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/25/053cce3535de4611908d09f879dc426b.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1165},{\\\"amount\\\":202,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-火花闪闪\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/17/d54cf1d5c1e24a2c8134e0912a0489e5.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1164},{\\\"amount\\\":199,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-桃花水晶\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/183eb56a2eec4e54b4252bb949f2a1e1.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1163},{\\\"amount\\\":128,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-星缤乐\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/11/24/ae30fc413a3e493f86707f9eb266a6d2.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1162},{\\\"amount\\\":122,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-告白气球\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f892a7c8674c4541bc5c1d5ed1d33f6e.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1161},{\\\"amount\\\":106,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-变瘦药水\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/30/ccf4111a1cc14e6594aeab4ce38af585.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1160},{\\\"amount\\\":99,\\\"isReward\\\":0,\\\"isNotice\\\":0,\\\"name\\\":\\\"魅力值礼物-冰淇淋\\\",\\\"preUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/f751d14df3f143f2956e65545a0fba0f.png\\\",\\\"rewardLevel\\\":1,\\\"isNew\\\":0,\\\"lotteryId\\\":1159}]\",\"id\":148,\"operatorId\":139,\"rewardLotteryCount\":155755,\"openRewardDiamonds\":34290329,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/7ff85fc4ff684b14819318e632b5f4a5.svga\",\"updateTime\":\"2021-04-24 20:40:10\",\"sort\":52,\"labelUrl\":\"\",\"gifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/4/6/92989c97fd8e40319e6d1ed460bce0c4.webp\",\"remainLotteryDiamonds\":890573,\"openPayDiamonds\":32708550,\"createTime\":\"2021-04-06 20:25:46\",\"name\":\"白银宝箱\",\"remainLotteryCount\":4255,\"activityType\":1,\"priceRules\":\"[{\\\"price\\\":\\\"210\\\",\\\"times\\\":\\\"1\\\"},{\\\"price\\\":\\\"1050\\\",\\\"times\\\":\\\"5\\\"},{\\\"price\\\":\\\"2100\\\",\\\"times\\\":\\\"10\\\"}]\",\"isActivate\":false,\"status\":0}],\"pageNum\":1,\"navigatePages\":8,\"total\":28,\"pages\":3,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 21:44:14:用例【com.pipi.invoker.CosPlayerTest.testActivityList】结束======\n======本次用例运行消耗时间 01秒296毫秒======","caseName":"testActivityList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"01秒296毫秒","endTime":"2021-06-28 21:44:14","id":0,"serviceId":1,"startTime":"2021-06-28 21:44:13","status":1}
[2021-06-28 21:44:15.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:44:15.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:44:15.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 21:44:15.161] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:44:15.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:44:15.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 21:44:15.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 21:44:15.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 21:44:15.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 21:44:15.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:44:15.162] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 21:44:15.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:44:15 GMT
[2021-06-28 21:44:15.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 21:44:15.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:44:15.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:44:15.163] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 21:44:15.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:44:15.164] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:44:15.675] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:43] - ======2021-06-28 21:44:15:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======
[2021-06-28 21:44:15.676] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:44:15.677] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:44:15.734] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:44:15.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:44:15.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:44:15.735] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:44:15.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:44:15.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:44:15.736] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:44:15.737] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:44:15.737] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:44:15.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:44:15.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:44:15.738] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:44:15.800] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:44:15.801] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:44:15.801] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:44:15.802] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:44:15.802] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:44:15.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:44:15.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:44:15.803] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:44:15.804] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:44:15 GMT
[2021-06-28 21:44:15.804] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:44:15.804] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:44:15.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:44:15.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"f615688dedeb4399b2c6e4d3c33fd38d","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:44:15.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:44:15.805] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:44:15.806] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:44:15.806] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:44:15.883] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:44:15.884] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:44:15.885] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/login
[2021-06-28 21:44:15.885] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:44:15.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:44:15.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:44:15.886] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:44:15.887] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {password=MXFhejJ3c3gzZWRj, username=chengjie}
[2021-06-28 21:44:15.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:44:15.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - password=MXFhejJ3c3gzZWRj&username=chengjie
[2021-06-28 21:44:15.888] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:44:15.889] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:44:15.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:44:15.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:44:15.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:44:15.954] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:44:15.955] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:44:15.955] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:44:15.955] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:44:15.955] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:787
[2021-06-28 21:44:15.955] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:44:15 GMT
[2021-06-28 21:44:15.955] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:44:15.955] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:44:15.956] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:44:15.956] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"","data":{"cancel":false,"id":75,"roleId":6,"updateTime":"2021-04-22 18:52:37","token":"74d40fa8c25f40b5a064c7cf9e692847","createTime":"2019-11-06 12:07:10","newUser":false,"name":"程杰","roleName":"开发人员","username":"chengjie","status":1},"status":200}
[2021-06-28 21:44:15.956] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:44:15.956] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:44:15.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:44:15.957] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:44:16.032] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:44:16.032] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:44:16.033] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - https://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list
[2021-06-28 21:44:16.033] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2021-06-28 21:44:16.033] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:44:16.033] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - token:74d40fa8c25f40b5a064c7cf9e692847
[2021-06-28 21:44:16.034] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2021-06-28 21:44:16.034] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:44:16.034] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {pageSize=10, type=1, pageNum=1, useStatus=1}
[2021-06-28 21:44:16.034] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:44:16.034] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - pageSize=10&type=1&pageNum=1&useStatus=1
[2021-06-28 21:44:16.034] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:44:16.035] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2021-06-28 21:44:16.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:44:16.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:44:16.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2021-06-28 21:44:16.311] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:44:16.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:44:16.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Strict-Transport-Security:max-age=15724800; includeSubDomains
[2021-06-28 21:44:16.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:44:16.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Vary:Access-Control-Request-Headers
[2021-06-28 21:44:16.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:44:16 GMT
[2021-06-28 21:44:16.312] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2021-06-28 21:44:16.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:44:16.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:44:16.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"msg":"查询成功!","data":{"startRow":1,"lastPage":4,"navigatepageNums":[1,2,3,4],"prePage":0,"hasNextPage":true,"nextPage":2,"pageSize":10,"orderBy":"sort desc","endRow":10,"list":[{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":26,"virtualProductId":328,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png","createTime":"2020-12-23 14:37:34","refType":1,"id":44,"virtualProductId":328,"content":"每送1个,可增加房间热度10","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png","type":1,"hotValue":10,"singleShow":true,"playDesc":"每送1个,可增加房间热度10","giftVersion":24,"price":0,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png","id":328,"objectGifUrl":"","giftType":2,"sort":5000,"charmValue":0,"limitUpdateTime":"2020-06-23 10:25:10","useStatus":1,"name":"小星星","isWall":true,"permissionDesc":"","remark":"聊天室热度礼物","delFlag":false,"obtainType":3,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-23 10:25:10"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":69,"virtualProductId":314,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-24 14:48:40","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\",\"remark\":\"一心一意\"}]","id":55,"virtualProductId":314}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方185魅力值","giftVersion":11,"price":185,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png","id":314,"objectGifUrl":"","giftType":1,"sort":2140,"charmValue":185,"useStatus":1,"name":"超人泡泡糖","isWall":true,"permissionDesc":"","remark":"周星","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-05-31 00:00:05","labelUrl":"","createTime":"2020-05-27 11:11:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":285,"virtualProductId":517,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png","createTime":"2021-05-24 10:02:07","refType":1,"id":76,"virtualProductId":517,"content":"","activityH5Url":"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":8,"price":100,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png","id":517,"objectGifUrl":"","giftType":1,"sort":1001,"charmValue":10,"limitUpdateTime":"2021-05-24 10:02:08","useStatus":1,"name":"皮皮糖","isWall":true,"permissionDesc":"","remark":"糖果制造机玩法礼物","delFlag":false,"obtainType":5,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-06-17 17:23:08","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-24 10:02:08"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":25,"virtualProductId":327,"roomType":1,"userRange":2},"virtualProductPlays":[{"playType":1,"createTime":"2020-06-22 17:56:35","playMethod":"[{\"chainNum\":\"1\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\",\"remark\":\"1\"}]","id":24,"virtualProductId":327}],"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可增加对方1魅力值","giftVersion":17,"price":1,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png","id":327,"objectGifUrl":"","giftType":1,"sort":980,"charmValue":1,"limitUpdateTime":"2020-06-22 18:06:48","useStatus":1,"name":"壁咚主播","receiveLimitCount":1,"isWall":true,"permissionDesc":"","remark":"新用户专属","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2020-06-22 17:56:36"}},{"virtualProductRange":{"roomRange":"834861","rangeName":"","id":242,"virtualProductId":474,"roomType":2,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":5,"price":99,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png","id":474,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga","giftType":1,"sort":980,"charmValue":99,"limitUpdateTime":"2021-02-23 18:01:57","useStatus":1,"name":"雾时牛啤","isWall":true,"permissionDesc":"","remark":"【雾时】聊天室专属礼物","delFlag":false,"obtainType":1,"startTime":"2021-03-22 00:00:00","hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2021-02-23 18:01:57","endTime":"2021-08-22 23:59:59"}},{"virtualProductRange":{"roomRange":"3","rangeName":"全部","id":244,"virtualProductId":476,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":7,"price":128,"remarkUrl":"","id":476,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-03-06 10:48:39","useStatus":1,"name":"爱你女神","isWall":true,"permissionDesc":"","remark":"女生厅专属礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-03-06 10:48:39"}},{"virtualProductRange":{"roomRange":"17","rangeName":"全部","id":260,"virtualProductId":492,"roomType":1,"userRange":1},"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png","createTime":"2021-05-13 15:42:15","refType":1,"id":73,"virtualProductId":492,"content":"男生厅专属礼物","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":128,"remarkUrl":"","id":492,"objectGifUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga","giftType":1,"sort":975,"charmValue":128,"limitUpdateTime":"2021-04-20 12:01:04","useStatus":1,"name":"游戏机","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-13 15:42:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-04-20 12:01:04"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":292,"virtualProductId":524,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":6,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png","id":524,"objectGifUrl":"","giftType":1,"sort":971,"charmValue":6,"limitUpdateTime":"2021-05-28 17:21:11","useStatus":1,"name":"爱心补给","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-05-28 18:00:32","labelUrl":"","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 17:21:11"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":293,"virtualProductId":525,"roomType":1,"userRange":1},"virtualProductPlays":[{"playType":1,"createTime":"2021-06-02 13:43:36","playMethod":"[{\"chainNum\":\"66\",\"showUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\",\"remark\":\"一切顺利\"}]","id":265,"virtualProductId":525}],"virtualProductActivity":{"backgroundUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png","createTime":"2021-06-02 13:43:36","refType":1,"id":79,"virtualProductId":525,"content":"一次性赠送66个该礼物,触发进阶动效。","activityH5Url":"","status":2},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"","giftVersion":3,"price":10,"remarkUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png","id":525,"objectGifUrl":"","giftType":1,"sort":970,"charmValue":10,"limitUpdateTime":"2021-05-28 18:07:48","useStatus":1,"name":"永远滴神","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":true,"rewardLevel":1,"updateTime":"2021-06-02 13:49:15","labelUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png","wallLabelUrl":"","wallBigUrl":"","createTime":"2021-05-28 18:07:48"}},{"virtualProductRange":{"roomRange":"","rangeName":"全部","id":97,"virtualProductId":220,"roomType":1,"userRange":1},"virtualProduct":{"isUse":true,"previewUrl":"","objectUrl":"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png","type":1,"hotValue":0,"singleShow":true,"playDesc":"每送1个,可触发动效,增加对方21魅力值","giftVersion":10,"price":21,"remarkUrl":"","id":220,"objectGifUrl":"","giftType":1,"sort":960,"charmValue":21,"useStatus":1,"name":"甜甜圈","isWall":true,"permissionDesc":"","remark":"聊天室礼物","delFlag":false,"obtainType":1,"hasAnimation":false,"rewardLevel":1,"updateTime":"2021-04-28 13:11:04","labelUrl":"","createTime":"2019-08-07 16:02:15"}}],"pageNum":1,"navigatePages":8,"total":34,"pages":4,"size":10,"firstPage":1,"isLastPage":false,"hasPreviousPage":false,"isFirstPage":true},"status":200}
[2021-06-28 21:44:16.313] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:44:16.314] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:44:16.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:56] - testGiftList--Test Mthod Success
[2021-06-28 21:44:16.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:60] - ======2021-06-28 21:44:16:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======
[2021-06-28 21:44:16.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:61] - ======本次用例运行消耗时间 642毫秒======
[2021-06-28 21:44:16.324] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:44:16.325] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:44:16.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:44:16.328] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:44:16.329] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testStatistic.json
[2021-06-28 21:44:16.329] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 21:44:16.329] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:44:16.329] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 21:44:16.329] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:44:16.329] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 21:44:16.330] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:44:16.330] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 21:44:16.330] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:44:16.330] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"buildId":0,"caseDescription":"礼物列表","caseLog":"======2021-06-28 21:44:15:用例【com.pipi.invoker.CosPlayerTest.testGiftList】开始======\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 13:44:15 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"f615688dedeb4399b2c6e4d3c33fd38d\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/login\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"password\":\"MXFhejJ3c3gzZWRj\",\"username\":\"chengjie\"}\n###Http Request queryString after URLEncoder### :\npassword=MXFhejJ3c3gzZWRj&username=chengjie\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Content-Length\":\"787\",\"Date\":\"Mon, 28 Jun 2021 13:44:15 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"\",\"data\":{\"cancel\":false,\"id\":75,\"roleId\":6,\"updateTime\":\"2021-04-22 18:52:37\",\"token\":\"74d40fa8c25f40b5a064c7cf9e692847\",\"createTime\":\"2019-11-06 12:07:10\",\"newUser\":false,\"name\":\"程杰\",\"roleName\":\"开发人员\",\"username\":\"chengjie\",\"status\":1},\"status\":200}\n===================================\n===================================\n###Http Request Url### : \nhttps://pre-test-api-admin.apeiwan.com/api/v1/virtual-product/gift-list\n###Http Request Method### : POST\n###Http Request Headers### : \n{\"token\":\"74d40fa8c25f40b5a064c7cf9e692847\",\"Content-Type\":\"application/x-www-form-urlencoded\"}\n###Http Request queryString before URLEncoder### : \n{\"pageSize\":\"10\",\"type\":\"1\",\"pageNum\":\"1\",\"useStatus\":\"1\"}\n###Http Request queryString after URLEncoder### :\npageSize=10&type=1&pageNum=1&useStatus=1\n===================================\n###Http Response Status line### : \nHTTP/1.1 200 OK\n###Http Response Headers### : \n{\"Transfer-Encoding\":\"chunked\",\"Strict-Transport-Security\":\"max-age=15724800; includeSubDomains\",\"Connection\":\"keep-alive\",\"Vary\":\"Access-Control-Request-Headers\",\"Date\":\"Mon, 28 Jun 2021 13:44:16 GMT\",\"Content-Type\":\"application/json\"}\n###Http Response Content### :\n{\"msg\":\"查询成功!\",\"data\":{\"startRow\":1,\"lastPage\":4,\"navigatepageNums\":[1,2,3,4],\"prePage\":0,\"hasNextPage\":true,\"nextPage\":2,\"pageSize\":10,\"orderBy\":\"sort desc\",\"endRow\":10,\"list\":[{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":26,\"virtualProductId\":328,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/c49a4eceb1474d5392c04806c08bdd17.png\",\"createTime\":\"2020-12-23 14:37:34\",\"refType\":1,\"id\":44,\"virtualProductId\":328,\"content\":\"每送1个,可增加房间热度10\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/17/87b078a0991b4776bab5ca1ada5580ca.webp\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/17/d92b29c9777a46658c5303de2c0694af.png\",\"type\":1,\"hotValue\":10,\"singleShow\":true,\"playDesc\":\"每送1个,可增加房间热度10\",\"giftVersion\":24,\"price\":0,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/23/391fcd549b614572835d85936669cac1.png\",\"id\":328,\"objectGifUrl\":\"\",\"giftType\":2,\"sort\":5000,\"charmValue\":0,\"limitUpdateTime\":\"2020-06-23 10:25:10\",\"useStatus\":1,\"name\":\"小星星\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室热度礼物\",\"delFlag\":false,\"obtainType\":3,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-23 10:25:10\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":69,\"virtualProductId\":314,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-24 14:48:40\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/a599100e5f7e4cc489d32977b28bf41f.svga\\\",\\\"remark\\\":\\\"一心一意\\\"}]\",\"id\":55,\"virtualProductId\":314}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/bc49bc3143b8478e8c7a2cb04822d691.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方185魅力值\",\"giftVersion\":11,\"price\":185,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/app/images/newhome/week-icon.png\",\"id\":314,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":2140,\"charmValue\":185,\"useStatus\":1,\"name\":\"超人泡泡糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"周星\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-05-31 00:00:05\",\"labelUrl\":\"\",\"createTime\":\"2020-05-27 11:11:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":285,\"virtualProductId\":517,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/5023164918ca4d0cb72a47a3a7d9ca17.png\",\"createTime\":\"2021-05-24 10:02:07\",\"refType\":1,\"id\":76,\"virtualProductId\":517,\"content\":\"\",\"activityH5Url\":\"https://pre-test-app.apeiwan.com/lob-vas/candy.html?sweetId=188&dreamId=189&dialog=1&animationName=popular\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/24/b75f989b51ae4a28993257c541164f51.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":8,\"price\":100,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/24/325a30b6b166488b84793b220942ce8c.png\",\"id\":517,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":1001,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-24 10:02:08\",\"useStatus\":1,\"name\":\"皮皮糖\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"糖果制造机玩法礼物\",\"delFlag\":false,\"obtainType\":5,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-06-17 17:23:08\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-24 10:02:08\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":25,\"virtualProductId\":327,\"roomType\":1,\"userRange\":2},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2020-06-22 17:56:35\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"1\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/7/9/9eaf3d9972cb4c95862169bf86339e1d.svga\\\",\\\"remark\\\":\\\"1\\\"}]\",\"id\":24,\"virtualProductId\":327}],\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2020/12/9/0d8b6614ce9e4b558f563fd79b199a7a.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可增加对方1魅力值\",\"giftVersion\":17,\"price\":1,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2020/12/4/47616b7102824d6a93cfc83fe18f18fc.png\",\"id\":327,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":980,\"charmValue\":1,\"limitUpdateTime\":\"2020-06-22 18:06:48\",\"useStatus\":1,\"name\":\"壁咚主播\",\"receiveLimitCount\":1,\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"新用户专属\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2020-06-22 17:56:36\"}},{\"virtualProductRange\":{\"roomRange\":\"834861\",\"rangeName\":\"\",\"id\":242,\"virtualProductId\":474,\"roomType\":2,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/40edaab9a3ac4a3fb4371da93b2ea3bc.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":5,\"price\":99,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/2/23/dad204fd37394fc181dd8db08d3ce9d5.png\",\"id\":474,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/2/23/5544a220aee34320a5e04e01f019a63d.svga\",\"giftType\":1,\"sort\":980,\"charmValue\":99,\"limitUpdateTime\":\"2021-02-23 18:01:57\",\"useStatus\":1,\"name\":\"雾时牛啤\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"【雾时】聊天室专属礼物\",\"delFlag\":false,\"obtainType\":1,\"startTime\":\"2021-03-22 00:00:00\",\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2021-02-23 18:01:57\",\"endTime\":\"2021-08-22 23:59:59\"}},{\"virtualProductRange\":{\"roomRange\":\"3\",\"rangeName\":\"全部\",\"id\":244,\"virtualProductId\":476,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/0940ac14e35445b09d18cc23c74d48ed.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":7,\"price\":128,\"remarkUrl\":\"\",\"id\":476,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/3/6/8356f437f8234067ab33ae6ae5717d8b.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-03-06 10:48:39\",\"useStatus\":1,\"name\":\"爱你女神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"女生厅专属礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-03-06 10:48:39\"}},{\"virtualProductRange\":{\"roomRange\":\"17\",\"rangeName\":\"全部\",\"id\":260,\"virtualProductId\":492,\"roomType\":1,\"userRange\":1},\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/e49c90bb59ac48afa99e43be61562f1d.png\",\"createTime\":\"2021-05-13 15:42:15\",\"refType\":1,\"id\":73,\"virtualProductId\":492,\"content\":\"男生厅专属礼物\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/bcec13db65ed444798da89e07069c06d.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":128,\"remarkUrl\":\"\",\"id\":492,\"objectGifUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/4/20/e7029523684541e6be534bc81398829a.svga\",\"giftType\":1,\"sort\":975,\"charmValue\":128,\"limitUpdateTime\":\"2021-04-20 12:01:04\",\"useStatus\":1,\"name\":\"游戏机\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-13 15:42:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/13/b7dba13400ec4ad0b9432a5df6e8ee06.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-04-20 12:01:04\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":292,\"virtualProductId\":524,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/21f8b4cee83e495088addb84afa3377e.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":6,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/482abc44e4a94a29b1c2ef98c2131498.png\",\"id\":524,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":971,\"charmValue\":6,\"limitUpdateTime\":\"2021-05-28 17:21:11\",\"useStatus\":1,\"name\":\"爱心补给\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-05-28 18:00:32\",\"labelUrl\":\"\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 17:21:11\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":293,\"virtualProductId\":525,\"roomType\":1,\"userRange\":1},\"virtualProductPlays\":[{\"playType\":1,\"createTime\":\"2021-06-02 13:43:36\",\"playMethod\":\"[{\\\"chainNum\\\":\\\"66\\\",\\\"showUrl\\\":\\\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/9a1bcd25a58d456ca115a2945ab0f265.svga\\\",\\\"remark\\\":\\\"一切顺利\\\"}]\",\"id\":265,\"virtualProductId\":525}],\"virtualProductActivity\":{\"backgroundUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/4ba3fb736eef422d9ab9d4f25699269a.png\",\"createTime\":\"2021-06-02 13:43:36\",\"refType\":1,\"id\":79,\"virtualProductId\":525,\"content\":\"一次性赠送66个该礼物,触发进阶动效。\",\"activityH5Url\":\"\",\"status\":2},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/5/28/94ec50fb1dd4496c8fffcbb29f51c00c.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"\",\"giftVersion\":3,\"price\":10,\"remarkUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/5/28/fd6a7be3566e4c9384d635e6f4824220.png\",\"id\":525,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":970,\"charmValue\":10,\"limitUpdateTime\":\"2021-05-28 18:07:48\",\"useStatus\":1,\"name\":\"永远滴神\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":true,\"rewardLevel\":1,\"updateTime\":\"2021-06-02 13:49:15\",\"labelUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/temp/2021/6/2/703b25c3f87a4df2a34b3fe17a51d2b0.png\",\"wallLabelUrl\":\"\",\"wallBigUrl\":\"\",\"createTime\":\"2021-05-28 18:07:48\"}},{\"virtualProductRange\":{\"roomRange\":\"\",\"rangeName\":\"全部\",\"id\":97,\"virtualProductId\":220,\"roomType\":1,\"userRange\":1},\"virtualProduct\":{\"isUse\":true,\"previewUrl\":\"\",\"objectUrl\":\"http://game-play.oss-cn-hangzhou.aliyuncs.com/2021/1/21/8ba5e16553b44d1893d1b063faddd256.png\",\"type\":1,\"hotValue\":0,\"singleShow\":true,\"playDesc\":\"每送1个,可触发动效,增加对方21魅力值\",\"giftVersion\":10,\"price\":21,\"remarkUrl\":\"\",\"id\":220,\"objectGifUrl\":\"\",\"giftType\":1,\"sort\":960,\"charmValue\":21,\"useStatus\":1,\"name\":\"甜甜圈\",\"isWall\":true,\"permissionDesc\":\"\",\"remark\":\"聊天室礼物\",\"delFlag\":false,\"obtainType\":1,\"hasAnimation\":false,\"rewardLevel\":1,\"updateTime\":\"2021-04-28 13:11:04\",\"labelUrl\":\"\",\"createTime\":\"2019-08-07 16:02:15\"}}],\"pageNum\":1,\"navigatePages\":8,\"total\":34,\"pages\":4,\"size\":10,\"firstPage\":1,\"isLastPage\":false,\"hasPreviousPage\":false,\"isFirstPage\":true},\"status\":200}\n===================================\n======2021-06-28 21:44:16:用例【com.pipi.invoker.CosPlayerTest.testGiftList】结束======\n======本次用例运行消耗时间 642毫秒======","caseName":"testGiftList","className":"com.pipi.invoker.CosPlayerTest","durationTime":"642毫秒","endTime":"2021-06-28 21:44:16","id":0,"serviceId":1,"startTime":"2021-06-28 21:44:15","status":1}
[2021-06-28 21:44:16.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:44:16.578] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:44:16.579] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 21:44:16.579] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:44:16.579] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:44:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 21:44:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 21:44:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 21:44:16.580] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 21:44:16.581] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:44:16.581] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 21:44:16.581] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:44:16 GMT
[2021-06-28 21:44:16.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 21:44:16.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:44:16.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:44:16.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 21:44:16.582] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:44:16.583] [TestNG] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:44:17.316] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testActivityList
[2021-06-28 21:44:17.316] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:159] - PassedTests = testGiftList
[2021-06-28 21:44:17.316] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:233] - passed tests count:2
[2021-06-28 21:44:17.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:234] - failed tests count:0
[2021-06-28 21:44:17.317] [TestNG] [INFO ] - [com.fangdd.qa.testng.TestngListener:235] - skipped tests count:0
[2021-06-28 21:44:17.328] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:155] - 开始生成文件
[2021-06-28 21:44:17.330] [main] [INFO ] - [com.fangdd.qa.framework.utils.common.FileUtil:164] - 生成文件成功
[2021-06-28 21:44:17.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 21:44:17.344] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2021-06-28 21:44:17.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2021-06-28 21:44:17.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2021-06-28 21:44:17.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://10.1.10.21:9090/pipi-test-center/report/testSuiteStatistic.json
[2021-06-28 21:44:17.347] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : PUT
[2021-06-28 21:44:17.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2021-06-28 21:44:17.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2021-06-28 21:44:17.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2021-06-28 21:44:17.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2021-06-28 21:44:17.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2021-06-28 21:44:17.348] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2021-06-28 21:44:17.349] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2021-06-28 21:44:17.349] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"departmentId":0,"durationTime":"04秒014毫秒","endTime":"2021-06-28 21:44:17","env":"test(192.168.41.108)","failed":0,"id":0,"passed":2,"serviceId":1,"skipped":0,"startTime":"2021-06-28 21:44:13","status":1,"teamId":0,"total":2}
[2021-06-28 21:44:17.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2021-06-28 21:44:17.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2021-06-28 21:44:17.689] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200
[2021-06-28 21:44:17.689] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2021-06-28 21:44:17.690] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Transfer-Encoding:chunked
[2021-06-28 21:44:17.690] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Keep-Alive:timeout=20
[2021-06-28 21:44:17.691] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Origin:*
[2021-06-28 21:44:17.691] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS
[2021-06-28 21:44:17.691] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Credentials:true
[2021-06-28 21:44:17.691] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Connection:keep-alive
[2021-06-28 21:44:17.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Access-Control-Allow-Headers:Content-Type,X-Token
[2021-06-28 21:44:17.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Date:Mon, 28 Jun 2021 13:44:17 GMT
[2021-06-28 21:44:17.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json;charset=UTF-8
[2021-06-28 21:44:17.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2021-06-28 21:44:17.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2021-06-28 21:44:17.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"code":200,"data":true}
[2021-06-28 21:44:17.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2021-06-28 21:44:17.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2021-06-28 21:44:17.693] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:80] - ======2021-06-28 21:44:17:测试集结束======
[2021-06-28 21:44:17.694] [main] [INFO ] - [com.fangdd.qa.testng.TestngSuiteListener:81] - ======本次测试集运行消耗时间 04秒014毫秒======