2022-09-16.log
458 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
2022-09-16 10:31:34,456 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:31:34,457 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:31:34,655 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:31:34,655 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": "1","platformType": "1"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:31:34,656 - root - INFO - 参数处理完毕!!!
2022-09-16 10:31:34,656 - root - INFO - 请求参数为:{'type': '1', 'platformType': '1'}
2022-09-16 10:31:34,966 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:31:34,967 - root - INFO - 断言处理结束!!!
2022-09-16 10:31:34,970 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:31:34,970 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:31:34,971 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:31:34,971 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:31:34,971 - root - INFO - 参数处理完毕!!!
2022-09-16 10:31:34,972 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:31:34,972 - root - INFO - 参数处理完毕!!!
2022-09-16 10:31:34,972 - root - INFO - 请求参数为:{'type': '#1.formId', 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:31:35,074 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:35:23,338 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:35:23,340 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:35:23,516 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:35:23,526 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": "1","platformType": "1"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:35:23,526 - root - INFO - 参数处理完毕!!!
2022-09-16 10:35:23,526 - root - INFO - 请求参数为:{'type': '1', 'platformType': '1'}
2022-09-16 10:35:23,788 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:35:23,789 - root - INFO - 断言处理结束!!!
2022-09-16 10:35:23,791 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:35:23,792 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:35:23,793 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:35:23,794 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:35:23,795 - root - INFO - 参数处理完毕!!!
2022-09-16 10:35:23,796 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:35:23,797 - root - INFO - 参数处理完毕!!!
2022-09-16 10:35:23,797 - root - INFO - 请求参数为:28b1574d15be0c6ced58106da2dc2a49
2022-09-16 10:35:23,914 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:36:02,446 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:36:02,448 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:36:02,617 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:36:02,617 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": "1","platformType": "1"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:36:02,618 - root - INFO - 参数处理完毕!!!
2022-09-16 10:36:02,618 - root - INFO - 请求参数为:{'type': '1', 'platformType': '1'}
2022-09-16 10:36:02,761 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:36:02,762 - root - INFO - 断言处理结束!!!
2022-09-16 10:36:02,764 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:36:02,765 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:36:02,765 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:36:02,766 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:36:02,766 - root - INFO - 参数处理完毕!!!
2022-09-16 10:36:02,766 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:36:02,766 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:36:02,767 - root - INFO - 参数处理完毕!!!
2022-09-16 10:36:02,767 - root - INFO - 请求参数为:28b1574d15be0c6ced58106da2dc2a49
2022-09-16 10:36:02,862 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:47:36,480 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:47:36,482 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:47:36,645 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:47:36,645 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": "1","platformType": "1"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:47:36,646 - root - INFO - 参数处理完毕!!!
2022-09-16 10:47:36,646 - root - INFO - 请求参数为:{"type": "1","platformType": "1"}
2022-09-16 10:47:36,823 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:47:36,826 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:47:36,827 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:47:36,827 - root - INFO - 参数处理完毕!!!
2022-09-16 10:47:36,828 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:47:36,829 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:47:36,830 - root - INFO - 参数处理完毕!!!
2022-09-16 10:47:36,832 - root - INFO - 请求参数为:{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}
2022-09-16 10:47:36,834 - root - INFO - 接口测试结果为:{'code': 1, 'result': "post请求出错,出错原因:'str' object has no attribute 'items'"}
2022-09-16 10:50:16,029 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:50:16,030 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:50:16,205 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:50:16,206 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:50:16,210 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:50:16,210 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:50:16,211 - root - INFO - 参数处理完毕!!!
2022-09-16 10:50:16,211 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:50:16,212 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:50:16,212 - root - INFO - 参数处理完毕!!!
2022-09-16 10:50:16,213 - root - INFO - 请求参数为:{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}
2022-09-16 10:50:16,217 - root - INFO - 接口测试结果为:{'code': 1, 'result': "post请求出错,出错原因:'str' object has no attribute 'items'"}
2022-09-16 10:50:52,098 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:50:52,100 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:50:52,272 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:50:52,273 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:50:52,273 - root - INFO - 参数处理完毕!!!
2022-09-16 10:50:52,274 - root - INFO - 请求参数为:{"type": 1,"platformType": 1}
2022-09-16 10:50:52,435 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:50:52,441 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:50:52,441 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:50:52,441 - root - INFO - 参数处理完毕!!!
2022-09-16 10:50:52,442 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:50:52,442 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:50:52,442 - root - INFO - 参数处理完毕!!!
2022-09-16 10:50:52,443 - root - INFO - 请求参数为:{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}
2022-09-16 10:50:52,445 - root - INFO - 接口测试结果为:{'code': 1, 'result': "post请求出错,出错原因:'str' object has no attribute 'items'"}
2022-09-16 10:52:10,031 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:52:10,033 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:52:10,187 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:52:10,187 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:52:10,188 - root - INFO - 参数处理完毕!!!
2022-09-16 10:52:10,188 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 10:52:10,420 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:52:10,421 - root - INFO - 断言处理结束!!!
2022-09-16 10:52:10,423 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:52:10,424 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:52:10,425 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:52:10,426 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:52:10,427 - root - INFO - 参数处理完毕!!!
2022-09-16 10:52:10,427 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:52:10,429 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:52:10,429 - root - INFO - 参数处理完毕!!!
2022-09-16 10:52:10,430 - root - INFO - 请求参数为:{'type': '#1.formId', 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:52:10,642 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:53:14,828 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:53:14,830 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:53:14,981 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:53:14,982 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:53:14,982 - root - INFO - 参数处理完毕!!!
2022-09-16 10:53:14,983 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 10:53:15,240 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:53:15,241 - root - INFO - 断言处理结束!!!
2022-09-16 10:53:15,243 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:53:15,244 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:53:15,245 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:53:15,246 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:53:15,246 - root - INFO - 参数处理完毕!!!
2022-09-16 10:53:15,248 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:53:15,249 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:53:15,254 - root - INFO - 参数处理完毕!!!
2022-09-16 10:53:15,254 - root - INFO - 请求参数为:{'type': '#1.formId', 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:53:15,343 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:53:58,518 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:53:58,520 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:53:58,695 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:53:58,696 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:53:58,696 - root - INFO - 参数处理完毕!!!
2022-09-16 10:53:58,696 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 10:53:59,123 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:53:59,124 - root - INFO - 断言处理结束!!!
2022-09-16 10:53:59,126 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:53:59,126 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:53:59,128 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:53:59,128 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:53:59,129 - root - INFO - 参数处理完毕!!!
2022-09-16 10:53:59,129 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:53:59,130 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:53:59,131 - root - INFO - 字典格式处理!!!
2022-09-16 10:53:59,133 - root - INFO - 字典格式处理!!!
2022-09-16 10:53:59,135 - root - INFO - 参数处理完毕!!!
2022-09-16 10:53:59,136 - root - INFO - 请求参数为:{'type': '#1.formId', 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:53:59,330 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:55:10,532 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:55:10,534 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:55:10,702 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:55:10,703 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:55:10,703 - root - INFO - 参数处理完毕!!!
2022-09-16 10:55:10,704 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 10:55:10,938 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:55:10,938 - root - INFO - 断言处理结束!!!
2022-09-16 10:55:10,941 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:55:10,942 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:55:10,942 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:55:10,943 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:55:10,943 - root - INFO - 参数处理完毕!!!
2022-09-16 10:55:10,943 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:55:10,944 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:55:10,944 - root - INFO - 字典格式处理!!!
2022-09-16 10:55:10,944 - root - INFO - 字典格式处理!!!
2022-09-16 10:55:10,945 - root - INFO - 参数处理完毕!!!
2022-09-16 10:55:10,945 - root - INFO - 请求参数为:{'type': '#1.formId', 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:55:11,041 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:55:59,806 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:55:59,807 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:55:59,965 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:55:59,966 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:55:59,967 - root - INFO - 参数处理完毕!!!
2022-09-16 10:55:59,968 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 10:56:00,096 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:56:00,097 - root - INFO - 断言处理结束!!!
2022-09-16 10:56:00,099 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:56:00,100 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:56:00,101 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:56:00,101 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:56:00,102 - root - INFO - 参数处理完毕!!!
2022-09-16 10:56:00,102 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:56:00,103 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:56:00,103 - root - INFO - 字典格式处理!!!
2022-09-16 10:56:00,105 - root - INFO - 字典格式处理!!!
2022-09-16 10:56:00,106 - root - INFO - 参数处理完毕!!!
2022-09-16 10:56:00,106 - root - INFO - 请求参数为:{'type': '#1.formId', 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:56:00,216 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:57:08,005 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:57:08,007 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:57:08,170 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:57:08,171 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:57:08,172 - root - INFO - 参数处理完毕!!!
2022-09-16 10:57:08,172 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 10:57:08,414 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:57:08,415 - root - INFO - 断言处理结束!!!
2022-09-16 10:57:08,416 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:57:08,417 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:57:08,418 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:57:08,418 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:57:08,419 - root - INFO - 参数处理完毕!!!
2022-09-16 10:57:08,420 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:57:08,421 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:57:08,422 - root - INFO - 字典格式处理!!!
2022-09-16 10:57:08,423 - root - INFO - 字典格式处理!!!
2022-09-16 10:57:08,425 - root - INFO - 参数处理完毕!!!
2022-09-16 10:57:08,425 - root - INFO - 请求参数为:{'type': '#1.formId', 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:57:08,522 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 10:57:34,956 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:57:34,957 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:57:35,065 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:57:35,066 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:57:35,067 - root - INFO - 参数处理完毕!!!
2022-09-16 10:57:35,068 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 10:57:35,205 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:57:35,206 - root - INFO - 断言处理结束!!!
2022-09-16 10:57:35,207 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:57:35,207 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:57:35,208 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:57:35,208 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:57:35,209 - root - INFO - 参数处理完毕!!!
2022-09-16 10:57:35,209 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:57:35,210 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:57:35,211 - root - INFO - 字典格式处理!!!
2022-09-16 10:57:35,212 - root - INFO - 字典格式处理!!!
2022-09-16 10:57:35,212 - root - INFO - 参数处理完毕!!!
2022-09-16 10:57:35,213 - root - INFO - 请求参数为:{'type': 5, 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:57:35,364 - root - INFO - 接口测试结果为:{'code': 10003, 'msg': '表单配置获取失败', 'success': False, 'result': None}
2022-09-16 10:58:46,818 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:58:46,819 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:58:46,928 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:58:46,929 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:58:46,930 - root - INFO - 参数处理完毕!!!
2022-09-16 10:58:46,931 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 10:58:47,198 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:58:47,199 - root - INFO - 断言处理结束!!!
2022-09-16 10:58:47,201 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:58:47,201 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:58:47,202 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:58:47,202 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:58:47,202 - root - INFO - 参数处理完毕!!!
2022-09-16 10:58:47,203 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:58:47,203 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:58:47,204 - root - INFO - 字典格式处理!!!
2022-09-16 10:58:47,205 - root - INFO - 字典格式处理!!!
2022-09-16 10:58:47,206 - root - INFO - 参数处理完毕!!!
2022-09-16 10:58:47,207 - root - INFO - 请求参数为:{'type': 5, 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:58:47,349 - root - INFO - 接口测试结果为:{'code': 10003, 'msg': '表单配置获取失败', 'success': False, 'result': None}
2022-09-16 10:58:56,073 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 10:58:56,074 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 10:58:56,183 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 10:58:56,184 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 10:58:56,185 - root - INFO - 参数处理完毕!!!
2022-09-16 10:58:56,186 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 10:58:56,301 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 10:58:56,302 - root - INFO - 断言处理结束!!!
2022-09-16 10:58:56,303 - root - INFO - 响应信息存储完毕!!!
2022-09-16 10:58:56,304 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 10:58:56,305 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 10:58:56,305 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 10:58:56,305 - root - INFO - 参数处理完毕!!!
2022-09-16 10:58:56,306 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 10:58:56,306 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 10:58:56,306 - root - INFO - 字典格式处理!!!
2022-09-16 10:58:56,307 - root - INFO - 字典格式处理!!!
2022-09-16 10:58:56,307 - root - INFO - 参数处理完毕!!!
2022-09-16 10:58:56,307 - root - INFO - 请求参数为:{'type': 5, 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 10:58:56,414 - root - INFO - 接口测试结果为:{'code': 10003, 'msg': '表单配置获取失败', 'success': False, 'result': None}
2022-09-16 11:00:20,176 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:00:20,178 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:00:20,203 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/citic_user_role.yaml 文件加载中......
2022-09-16 11:00:20,207 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/citic_user_role.yaml 文件加载成功......
2022-09-16 11:00:20,332 - root - INFO - 操作MySQL出现错误,错误原因:(1050, "Table 'citic_user_role' already exists")
2022-09-16 11:00:20,464 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:00:20,464 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 11:00:20,464 - root - INFO - 参数处理完毕!!!
2022-09-16 11:00:20,464 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 11:00:20,694 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:00:20,694 - root - INFO - 断言处理结束!!!
2022-09-16 11:00:20,697 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:00:20,697 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:00:20,698 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:00:20,699 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json",\n "X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 11:00:20,699 - root - INFO - 参数处理完毕!!!
2022-09-16 11:00:20,699 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 11:00:20,700 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:00:20,700 - root - INFO - 字典格式处理!!!
2022-09-16 11:00:20,701 - root - INFO - 字典格式处理!!!
2022-09-16 11:00:20,702 - root - INFO - 参数处理完毕!!!
2022-09-16 11:00:20,702 - root - INFO - 请求参数为:{'type': 5, 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:00:20,833 - root - INFO - 接口测试结果为:{'code': 10003, 'msg': '表单配置获取失败', 'success': False, 'result': None}
2022-09-16 11:01:26,162 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:01:26,163 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:01:26,182 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/citic_user_role.yaml 文件加载中......
2022-09-16 11:01:26,183 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/citic_user_role.yaml 文件加载成功......
2022-09-16 11:01:26,185 - root - INFO - 操作MySQL出现错误,错误原因:(1050, "Table 'citic_user_role' already exists")
2022-09-16 11:01:26,303 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:01:26,304 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 11:01:26,304 - root - INFO - 参数处理完毕!!!
2022-09-16 11:01:26,304 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 11:01:26,568 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:01:26,568 - root - INFO - 断言处理结束!!!
2022-09-16 11:01:26,572 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:01:26,572 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:01:26,573 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:01:26,573 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "#1.formId","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 11:01:26,573 - root - INFO - 参数处理完毕!!!
2022-09-16 11:01:26,574 - root - INFO - 需要替换的变量信息为:['#1.formId', '#1.md5']
2022-09-16 11:01:26,574 - root - INFO - 可变参数的信息为:{'#1.formId': 5, '#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:01:26,574 - root - INFO - 字典格式处理!!!
2022-09-16 11:01:26,574 - root - INFO - 字典格式处理!!!
2022-09-16 11:01:26,575 - root - INFO - 参数处理完毕!!!
2022-09-16 11:01:26,575 - root - INFO - 请求参数为:{'type': 5, 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:01:26,696 - root - INFO - 接口测试结果为:{'code': 10003, 'msg': '表单配置获取失败', 'success': False, 'result': None}
2022-09-16 11:02:10,184 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:02:10,185 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:02:10,208 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/citic_user_role.yaml 文件加载中......
2022-09-16 11:02:10,210 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/citic_user_role.yaml 文件加载成功......
2022-09-16 11:02:10,212 - root - INFO - 操作MySQL出现错误,错误原因:(1050, "Table 'citic_user_role' already exists")
2022-09-16 11:02:10,324 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:02:10,325 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 11:02:10,325 - root - INFO - 参数处理完毕!!!
2022-09-16 11:02:10,326 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 11:02:10,469 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:02:10,470 - root - INFO - 断言处理结束!!!
2022-09-16 11:02:10,472 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:02:10,472 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:02:10,473 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:02:10,473 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 11:02:10,473 - root - INFO - 参数处理完毕!!!
2022-09-16 11:02:10,474 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:02:10,475 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:02:10,476 - root - INFO - 字典格式处理!!!
2022-09-16 11:02:10,476 - root - INFO - 参数处理完毕!!!
2022-09-16 11:02:10,477 - root - INFO - 请求参数为:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:02:11,739 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:04:48,193 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:04:48,195 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:04:48,221 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/citic_user_role.yaml 文件加载中......
2022-09-16 11:04:48,222 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/citic_user_role.yaml 文件加载成功......
2022-09-16 11:04:48,226 - root - INFO - 操作MySQL出现错误,错误原因:(1050, "Table 'citic_user_role' already exists")
2022-09-16 11:04:48,355 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:04:48,355 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 11:04:48,356 - root - INFO - 参数处理完毕!!!
2022-09-16 11:04:48,356 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 11:04:48,590 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:04:48,590 - root - INFO - 断言处理结束!!!
2022-09-16 11:04:48,593 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:04:48,594 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:04:48,594 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:04:48,594 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 11:04:48,595 - root - INFO - 参数处理完毕!!!
2022-09-16 11:04:48,595 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:04:48,595 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:04:48,595 - root - INFO - 字典格式处理!!!
2022-09-16 11:04:48,595 - root - INFO - 参数处理完毕!!!
2022-09-16 11:04:48,596 - root - INFO - 请求参数为:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:04:49,828 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:07:14,147 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:07:14,149 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:07:14,275 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:07:14,275 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 11:07:14,275 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 11:07:14,474 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:07:14,475 - root - INFO - 断言处理结束!!!
2022-09-16 11:07:14,478 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:07:14,478 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:07:14,479 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:07:14,479 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 11:07:14,479 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:07:14,479 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:07:14,480 - root - INFO - 可变参数替换完毕!!!
2022-09-16 11:07:14,480 - root - INFO - 请求参数为:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:07:15,685 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:10:43,784 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:10:43,785 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:10:43,916 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:10:43,917 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 11:10:43,917 - root - INFO - 请求头:
2022-09-16 11:10:43,917 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:10:44,207 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:10:44,207 - root - INFO - 断言处理结束!!!
2022-09-16 11:10:44,210 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:10:44,210 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:10:44,211 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:10:44,211 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 11:10:44,211 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe23159b'}
2022-09-16 11:10:44,211 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:10:44,212 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:10:44,212 - root - INFO - 可变参数替换完毕!!!{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:10:44,212 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:10:45,442 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:15:44,854 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:15:44,856 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:15:45,040 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:15:45,040 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 11:15:45,041 - root - INFO - 请求头:
2022-09-16 11:15:45,041 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:15:45,311 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:15:45,320 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:15:45,320 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 11:15:45,322 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe23159b'}
2022-09-16 11:15:45,323 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:15:45,325 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:15:45,326 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:15:45,327 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:15:46,532 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:15:55,186 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:15:55,187 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:15:55,352 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:15:55,352 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 11:15:55,353 - root - INFO - 请求头:
2022-09-16 11:15:55,353 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:15:55,511 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:15:55,514 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:15:55,515 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 11:15:55,515 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe23159b'}
2022-09-16 11:15:55,516 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:15:55,516 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:15:55,517 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:15:55,517 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:15:55,667 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:16:06,405 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:16:06,406 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:16:06,586 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:16:06,586 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5', 'response_time': '200ms'}
2022-09-16 11:16:06,587 - root - INFO - 请求头:
2022-09-16 11:16:06,588 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:16:06,757 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:16:06,760 - root - INFO - 断言处理结束!!!
2022-09-16 11:16:06,765 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:16:06,766 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:16:06,768 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:16:06,768 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': '', 'response_time': '200ms'}
2022-09-16 11:16:06,769 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe23159b'}
2022-09-16 11:16:06,770 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:16:06,772 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:16:06,773 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:16:06,774 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:16:06,964 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:23:53,542 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:23:53,543 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:23:53,713 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:23:53,713 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:23:53,714 - root - INFO - 请求头:
2022-09-16 11:23:53,714 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:23:53,843 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:23:53,844 - root - INFO - 断言处理结束!!!
2022-09-16 11:23:53,847 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:23:53,848 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:23:53,849 - root - INFO - ***************【登录--账号为激活】接口测试开始***************
2022-09-16 11:23:53,849 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号为激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:23:53,849 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe23159b'}
2022-09-16 11:23:53,850 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:23:53,851 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:23:53,851 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:23:53,852 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:23:54,005 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:23:54,010 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:23:54,011 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe23159b"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:23:54,011 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe23159b'}
2022-09-16 11:23:54,011 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:23:54,012 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:23:54,012 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:23:54,012 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:23:54,175 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:25:36,011 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:25:36,014 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:25:36,181 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:25:36,182 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:25:36,182 - root - INFO - 请求头:
2022-09-16 11:25:36,182 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:25:36,417 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:25:36,418 - root - INFO - 断言处理结束!!!
2022-09-16 11:25:36,422 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:25:36,423 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:25:36,423 - root - INFO - ***************【登录--账号为激活】接口测试开始***************
2022-09-16 11:25:36,424 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号为激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:25:36,424 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:25:36,425 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:25:36,425 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:25:36,425 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:25:36,426 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:25:37,660 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:25:37,664 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:25:37,665 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:25:37,665 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:25:37,665 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:25:37,666 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:25:37,666 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:25:37,666 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:25:38,880 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:26:56,196 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:26:56,198 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:26:56,473 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:26:56,473 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:26:56,474 - root - INFO - 请求头:
2022-09-16 11:26:56,474 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:26:56,729 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:26:56,730 - root - INFO - 断言处理结束!!!
2022-09-16 11:26:56,735 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:26:56,736 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:26:56,737 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:26:56,738 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:26:56,739 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:26:56,740 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:26:56,740 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:26:56,741 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:26:56,741 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:26:57,976 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:26:57,981 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:26:57,982 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:26:57,982 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:26:57,983 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:26:57,983 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:26:57,984 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:26:57,984 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:26:59,186 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:28:53,087 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:28:53,089 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:28:53,246 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:28:53,246 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:28:53,246 - root - INFO - 请求头:
2022-09-16 11:28:53,247 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:28:53,500 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:28:53,500 - root - INFO - 断言处理结束!!!
2022-09-16 11:28:53,503 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:28:53,504 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:28:53,504 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:28:53,505 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:28:53,505 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:28:53,505 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:28:53,505 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:28:53,505 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:28:53,505 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:28:54,717 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 11:28:54,721 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:28:54,722 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:28:54,722 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:28:54,722 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:28:54,722 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:28:54,723 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:28:54,723 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:28:54,844 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:30:33,051 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:30:33,052 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:30:33,174 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:30:33,174 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:30:33,175 - root - INFO - 请求头:
2022-09-16 11:30:33,175 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:30:33,411 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:30:33,411 - root - INFO - 断言处理结束!!!
2022-09-16 11:30:33,413 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:30:33,413 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:30:33,413 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:30:33,414 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:30:33,414 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:30:33,414 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:30:33,414 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:30:33,415 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:30:33,415 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:30:33,569 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:30:33,573 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:30:33,573 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:30:33,573 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:30:33,573 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:30:33,574 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:30:33,574 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:30:33,574 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:30:33,731 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:32:11,921 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:32:11,922 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:32:12,052 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:32:12,053 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:32:12,053 - root - INFO - 请求头:
2022-09-16 11:32:12,053 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:32:12,285 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:32:12,285 - root - INFO - 断言处理结束!!!
2022-09-16 11:32:12,288 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:32:12,288 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:32:12,288 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:32:12,288 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:32:12,289 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:32:12,289 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:32:12,289 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:32:12,289 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:32:12,289 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:32:12,441 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:32:12,445 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:32:12,446 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:32:12,446 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:32:12,446 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:32:12,446 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:32:12,446 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:32:12,447 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:32:12,577 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:41:33,841 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:41:33,843 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:41:33,972 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:41:33,972 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:41:33,972 - root - INFO - 请求头:
2022-09-16 11:41:33,972 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:41:34,245 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:41:34,246 - root - INFO - 断言处理结束!!!
2022-09-16 11:41:34,248 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:41:34,248 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:41:34,248 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:41:34,249 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:41:34,249 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:41:34,249 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:41:34,250 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:41:34,250 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:41:34,250 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:41:34,395 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:41:34,399 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:41:34,399 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:41:34,400 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:41:34,400 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:41:34,400 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:41:34,400 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:41:34,400 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:41:34,598 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:43:08,152 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:43:08,153 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:43:08,231 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:43:08,232 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:43:08,232 - root - INFO - 请求头:
2022-09-16 11:43:08,232 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:43:08,432 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:43:08,433 - root - INFO - 断言处理结束!!!
2022-09-16 11:43:08,434 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:43:08,434 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:43:08,435 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:43:08,435 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:43:08,435 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:43:08,435 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:43:08,435 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:43:08,436 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:43:08,436 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:43:08,609 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:43:08,611 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:43:08,611 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:43:08,611 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:43:08,612 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:43:08,612 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:43:08,612 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:43:08,612 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:43:08,762 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:53:35,894 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:53:35,896 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:53:36,045 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:53:36,045 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:53:36,045 - root - INFO - 请求头:
2022-09-16 11:53:36,046 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:53:36,312 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:53:36,312 - root - INFO - 断言处理结束!!!
2022-09-16 11:53:36,315 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:53:36,315 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:53:36,316 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:53:36,316 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:53:36,316 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:53:36,316 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:53:36,317 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:53:36,317 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:53:36,317 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:53:36,458 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:53:36,461 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:53:36,461 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:53:36,462 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:53:36,462 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:53:36,462 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:53:36,462 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:53:36,463 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:53:36,621 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:53:46,977 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:53:46,978 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:53:47,070 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:53:47,071 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:53:47,071 - root - INFO - 请求头:
2022-09-16 11:53:47,072 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:53:47,217 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:53:47,217 - root - INFO - 断言处理结束!!!
2022-09-16 11:53:47,218 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:53:47,219 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:53:47,220 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:53:47,220 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:53:47,221 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:53:47,221 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:53:47,222 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:53:47,222 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:53:47,222 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:53:47,352 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:53:47,353 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:53:47,353 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:53:47,353 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:53:47,354 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:53:47,354 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:53:47,354 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:53:47,354 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:53:47,487 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:54:13,925 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:54:13,926 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:54:14,023 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:54:14,023 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:54:14,024 - root - INFO - 请求头:
2022-09-16 11:54:14,024 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:54:14,390 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:54:14,390 - root - INFO - 断言处理结束!!!
2022-09-16 11:54:14,391 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:54:14,392 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:54:14,392 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:54:14,392 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:54:14,392 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:54:14,393 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:54:14,393 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:54:14,393 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:54:14,394 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:54:14,549 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:54:14,550 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:54:14,551 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:54:14,552 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:54:14,552 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:54:14,553 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:54:14,553 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:54:14,553 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:54:14,785 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:56:09,766 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:56:09,767 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:56:09,891 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:56:09,891 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:56:09,891 - root - INFO - 请求头:
2022-09-16 11:56:09,892 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:56:10,270 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:56:10,270 - root - INFO - 断言处理结束!!!
2022-09-16 11:56:10,273 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:56:10,273 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:56:10,273 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:56:10,274 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:56:10,274 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:56:10,274 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:56:10,274 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:56:10,274 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:56:10,274 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:56:10,439 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:56:10,442 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:56:10,442 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:56:10,442 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:56:10,443 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:56:10,443 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:56:10,443 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:56:10,443 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:56:10,795 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:57:21,071 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 11:57:21,072 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 11:57:21,203 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 11:57:21,203 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 11:57:21,203 - root - INFO - 请求头:
2022-09-16 11:57:21,203 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 11:57:21,534 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 11:57:21,534 - root - INFO - 断言处理结束!!!
2022-09-16 11:57:21,537 - root - INFO - 响应信息存储完毕!!!
2022-09-16 11:57:21,537 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 11:57:21,538 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 11:57:21,538 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:57:21,538 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:57:21,538 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:57:21,539 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:57:21,539 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:57:21,539 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 11:57:21,752 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 11:57:21,756 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 11:57:21,756 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 11:57:21,756 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 11:57:21,757 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 11:57:21,757 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 11:57:21,757 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:57:21,757 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 11:57:21,926 - root - INFO - 接口测试结果为:{'code': 2926, 'msg': '设备已被锁定1小时,您可通过点击忘记密码,重置密码解锁设备', 'success': False, 'result': None}
2022-09-16 13:57:04,241 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 13:57:04,243 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 13:57:04,439 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 13:57:04,439 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 13:57:04,439 - root - INFO - 请求头:
2022-09-16 13:57:04,440 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 13:57:04,765 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 13:57:04,766 - root - INFO - 断言处理结束!!!
2022-09-16 13:57:04,771 - root - INFO - 响应信息存储完毕!!!
2022-09-16 13:57:04,773 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 13:57:04,774 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 13:57:04,775 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 13:57:04,776 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 13:57:04,777 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 13:57:04,778 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 13:57:04,778 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 13:57:04,779 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 13:57:06,032 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 13:57:06,035 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 13:57:06,036 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 13:57:06,036 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 13:57:06,036 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 13:57:06,036 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 13:57:06,037 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 13:57:06,037 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 13:57:07,249 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 14:25:32,263 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 14:25:32,265 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 14:25:32,518 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 14:25:32,519 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 14:25:32,519 - root - INFO - 请求头:
2022-09-16 14:25:32,519 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 14:25:32,855 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 14:25:32,857 - root - INFO - 断言处理结束!!!
2022-09-16 14:25:32,862 - root - INFO - 响应信息存储完毕!!!
2022-09-16 14:25:32,863 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 14:25:32,864 - root - INFO - ***************【登录--账号未激活】接口测试开始***************
2022-09-16 14:25:32,865 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 14:25:32,866 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 14:25:32,866 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 14:25:32,867 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 14:25:32,867 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 14:25:32,868 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 14:25:34,064 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 14:25:34,070 - root - INFO - ***************【登录】接口测试开始***************
2022-09-16 14:25:34,070 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': '登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "自动化测试","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 14:25:34,070 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 14:25:34,071 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 14:25:34,071 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 14:25:34,071 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 14:25:34,072 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '自动化测试', 'password': 'situ1234'}
2022-09-16 14:25:35,366 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 14:33:32,052 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 14:33:32,054 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 14:33:32,120 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/speech_variable.yaml 文件加载中......
2022-09-16 14:33:32,123 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/speech_variable.yaml 文件加载成功......
2022-09-16 15:52:10,166 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 15:52:10,168 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 15:52:10,478 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 15:52:10,478 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 15:52:10,479 - root - INFO - 请求头:
2022-09-16 15:52:10,479 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 15:52:10,960 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 5, 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'list': [{'componetId': 7, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 8, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3038, 'type': 'left_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_5402e92a-482a-412d-b985-258f00fa0f3g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 3039, 'type': 'right_deck', 'title': '', 'key': '', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/image/appimage/origin_img_v2_3a10310c-597c-42da-ae2e-dbe48896e78g.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 21, 'type': 'text_01', 'title': '用户名', 'key': 'username', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/d30dfefeea1d4344b6f8a6f1f3d1a144.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 22, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'http://sanheyi-stg-1305056770.cos.ap-beijing.myqcloud.com/image/appimage/25d848c9844b4243b3230e1c9d21cac7.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 15:52:10,961 - root - INFO - 断言处理结束!!!
2022-09-16 15:52:10,965 - root - INFO - 响应信息存储完毕!!!
2022-09-16 15:52:10,967 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 15:52:10,968 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 15:52:10,969 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 15:52:10,969 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 15:52:10,970 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 15:52:10,972 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 15:52:10,973 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1200002681', 'password': '12345678'}
2022-09-16 15:52:10,973 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1200002681', 'password': '12345678'}
2022-09-16 15:52:12,164 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 15:52:12,173 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 15:52:12,174 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 15:52:12,175 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 15:52:12,176 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 15:52:12,177 - root - INFO - 可变参数的信息为:{'#1.md5': '28b1574d15be0c6ced58106da2dc2a49'}
2022-09-16 15:52:12,177 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 15:52:12,178 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '28b1574d15be0c6ced58106da2dc2a49', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 15:52:13,355 - root - INFO - 接口测试结果为:{'code': 2930, 'msg': '该工号尚未激活,请先激活账号', 'success': False, 'result': None}
2022-09-16 15:53:36,030 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 15:53:36,031 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 15:53:36,253 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 15:53:36,254 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 15:53:36,254 - root - INFO - 请求头:
2022-09-16 15:53:36,254 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 15:53:36,435 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 15:53:36,437 - root - INFO - 断言处理结束!!!
2022-09-16 15:53:36,441 - root - INFO - 响应信息存储完毕!!!
2022-09-16 15:53:36,442 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 15:53:36,443 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 15:53:36,444 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 15:53:36,444 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 15:53:36,445 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 15:53:36,446 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 15:53:36,446 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 15:53:36,447 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 15:53:36,931 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': 'c5d2e7beacde48deaac58f3925c5e3fd', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 15:53:36,933 - root - INFO - 断言处理结束!!!
2022-09-16 15:53:36,935 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 15:53:36,937 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 15:53:36,939 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 15:53:36,940 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 15:53:36,942 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 15:53:36,944 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 15:53:36,944 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 15:53:36,945 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 15:53:37,375 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '52cf8259d9164f5f96e324fc52bd5f32', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 15:53:37,376 - root - INFO - 断言处理结束!!!
2022-09-16 15:53:37,377 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 15:56:12,124 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 15:56:12,125 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 15:56:12,294 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 15:56:12,295 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 4,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 15:56:12,295 - root - INFO - 请求头:
2022-09-16 15:56:12,296 - root - INFO - 请求参数:{'type': 4, 'platformType': 1}
2022-09-16 15:56:12,395 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 6, 'md5': '3ff7aebfca1a04af7fbe1d4c472a1464', 'list': [{'componetId': 2390, 'type': 'input_01', 'title': '扫码入件', 'key': 'scan_order', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/25d80bfaf3e54d31bf59b6bdf8ddb32e.png', 'backgroundUrl': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/74c2faad1c10436ba7e33aeb588adb64.png', 'data': [{'key': '新契约业务', 'value': '1', 'property': 'businessType'}, {'key': '保全业务', 'value': '2', 'property': 'businessType'}], 'value': '新契约业务', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2392, 'type': 'input_01', 'title': '纸质入件', 'key': 'hand_order', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/c79d887c64ac46f0a34126ead3648d20.png', 'backgroundUrl': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/993505a4878c4eafa9a42dedd1a7b9ef.png', 'data': [{'key': '新契约业务', 'value': '1', 'property': 'businessType'}, {'key': '保全业务', 'value': '2', 'property': 'businessType'}], 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2393, 'type': 'listbox', 'title': '待录制列表', 'key': 'wait_record', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/4d00c6f775f14e94bad2192608e1488c.png', 'backgroundUrl': '', 'data': None, 'value': '条待录制,请及时录制', 'placeholder': '条待录制,请及时录制', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2394, 'type': 'listbox', 'title': '待上传列表', 'key': 'wait_upload', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/86fc9e0f0e084e9e81c8950ec4fa466f.png', 'backgroundUrl': '', 'data': None, 'value': '条待上传,请及时上传', 'placeholder': '条待上传,请及时上传', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2395, 'type': 'listbox', 'title': '待审核列表', 'key': 'wait_quality_audit', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/7039dd1a80134c68843db0de03dcf004.png', 'backgroundUrl': '', 'data': None, 'value': '条待审核,正在进行中', 'placeholder': '条待审核,正在进行中', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2396, 'type': 'listbox', 'title': '已驳回列表', 'key': 'rejected', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/596320eeb06948f7ad2fb6dac4de3424.png', 'backgroundUrl': '', 'data': None, 'value': '单被驳回,请及时处理', 'placeholder': '单被驳回,请及时处理', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2397, 'type': 'listbox', 'title': '已完成列表', 'key': 'completed', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/af0a03d96a1d438faeab56ec4be2eef9.png', 'backgroundUrl': '', 'data': None, 'value': '单已完成,请继续加油', 'placeholder': '单已完成,请继续加油', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2942, 'type': 'input_02', 'title': '首页单模块背景图', 'key': 'home_single_image', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/a9ca579f43aa4396b221b2ed5692d874.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 100, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2943, 'type': 'input_02', 'title': '首页双模块背景图一', 'key': 'home_double_image_1', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/032762afebc947b28b1544e9297b65df.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 100, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2944, 'type': 'input_02', 'title': '首页双模块背景图二', 'key': 'home_double_image_2', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/3eed4e29ca7c4cd39b7bb9d750a33aec.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 100, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 15:56:12,396 - root - INFO - 断言处理结束!!!
2022-09-16 15:56:12,398 - root - INFO - 响应信息存储完毕!!!
2022-09-16 15:56:12,398 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 15:56:12,399 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 15:56:12,399 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 15:56:12,399 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 15:56:12,400 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 15:56:12,400 - root - INFO - 可变参数的信息为:{'#1.md5': '3ff7aebfca1a04af7fbe1d4c472a1464'}
2022-09-16 15:56:12,402 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '3ff7aebfca1a04af7fbe1d4c472a1464', 'username': '1200002681', 'password': '12345678'}
2022-09-16 15:56:12,403 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '3ff7aebfca1a04af7fbe1d4c472a1464', 'username': '1200002681', 'password': '12345678'}
2022-09-16 15:56:12,472 - root - INFO - 接口测试结果为:{'code': 10001, 'msg': '表单验证未通过', 'success': False, 'result': {'formId': 1, 'list': [{'backgroundUrl': '', 'componetId': 2967, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': 'left_deck', 'length': 0, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '', 'regex': '', 'required': 0, 'showValue': None, 'title': '', 'type': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'value': ''}, {'backgroundUrl': '', 'componetId': 2968, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': 'right_deck', 'length': 0, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '', 'regex': '', 'required': 0, 'showValue': None, 'title': '', 'type': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'value': ''}, {'backgroundUrl': '', 'componetId': 2969, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': '', 'length': 0, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '', 'regex': '', 'required': 0, 'showValue': None, 'title': '忘记密码', 'type': 'reset_pwd', 'url': '', 'value': ''}, {'backgroundUrl': '', 'componetId': 2970, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': '', 'length': 0, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '', 'regex': '', 'required': 0, 'showValue': None, 'title': '账号激活', 'type': 'active_account', 'url': '', 'value': ''}, {'backgroundUrl': '', 'componetId': 4, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': 'username', 'length': 30, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '请输入您的工号', 'regex': '', 'required': 1, 'showValue': None, 'title': '工号/账号', 'type': 'text_01', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'value': ''}, {'backgroundUrl': '', 'componetId': 5, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': 'password', 'length': 30, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '请输入您的密码', 'regex': '', 'required': 1, 'showValue': None, 'title': '密码', 'type': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'value': ''}], 'md5': '24e345fbfb20881bdbd73b2e5a19a775'}}
2022-09-16 15:56:12,477 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 15:56:12,477 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": "1","platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 15:56:12,478 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 15:56:12,478 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 15:56:12,479 - root - INFO - 可变参数的信息为:{'#1.md5': '3ff7aebfca1a04af7fbe1d4c472a1464'}
2022-09-16 15:56:12,479 - root - INFO - 可变参数替换完毕:{'type': '1', 'platformType': '1', 'md5': '3ff7aebfca1a04af7fbe1d4c472a1464', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 15:56:12,479 - root - INFO - 请求参数:{'type': '1', 'platformType': '1', 'md5': '3ff7aebfca1a04af7fbe1d4c472a1464', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 15:56:12,539 - root - INFO - 接口测试结果为:{'code': 10001, 'msg': '表单验证未通过', 'success': False, 'result': {'formId': 1, 'list': [{'backgroundUrl': '', 'componetId': 2967, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': 'left_deck', 'length': 0, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '', 'regex': '', 'required': 0, 'showValue': None, 'title': '', 'type': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'value': ''}, {'backgroundUrl': '', 'componetId': 2968, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': 'right_deck', 'length': 0, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '', 'regex': '', 'required': 0, 'showValue': None, 'title': '', 'type': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'value': ''}, {'backgroundUrl': '', 'componetId': 2969, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': '', 'length': 0, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '', 'regex': '', 'required': 0, 'showValue': None, 'title': '忘记密码', 'type': 'reset_pwd', 'url': '', 'value': ''}, {'backgroundUrl': '', 'componetId': 2970, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': '', 'length': 0, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '', 'regex': '', 'required': 0, 'showValue': None, 'title': '账号激活', 'type': 'active_account', 'url': '', 'value': ''}, {'backgroundUrl': '', 'componetId': 4, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': 'username', 'length': 30, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '请输入您的工号', 'regex': '', 'required': 1, 'showValue': None, 'title': '工号/账号', 'type': 'text_01', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'value': ''}, {'backgroundUrl': '', 'componetId': 5, 'data': None, 'hideComponetId': 0, 'hintMsg': '', 'key': 'password', 'length': 30, 'lengthHintMsg': '', 'minLength': 0, 'nonHintMsg': '', 'placeholder': '请输入您的密码', 'regex': '', 'required': 1, 'showValue': None, 'title': '密码', 'type': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'value': ''}], 'md5': '24e345fbfb20881bdbd73b2e5a19a775'}}
2022-09-16 16:16:15,685 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:16:15,693 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:16:15,959 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:16:15,959 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:16:15,960 - root - INFO - 请求头:
2022-09-16 16:16:15,960 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:16:16,102 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:16:16,104 - root - INFO - 断言处理结束!!!
2022-09-16 16:16:16,109 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:16:16,110 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:16:16,111 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:16:16,112 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 16:16:16,113 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:16:16,114 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:16:16,115 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:16:16,117 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 16:16:16,118 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 16:16:16,560 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': 'a73b5736a4e7416aa25a5195973f0ede', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:16:16,561 - root - INFO - 断言处理结束!!!
2022-09-16 16:16:16,562 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:16:16,564 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:16:16,564 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:16:16,565 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:16:16,567 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:16:16,570 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:16:16,570 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:16:16,571 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:16:16,969 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'd2babfea439f495baf37eb6f379a7f81', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:16:16,970 - root - INFO - 断言处理结束!!!
2022-09-16 16:16:16,971 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:16:16,972 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:18:15,616 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:18:15,618 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:18:15,849 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:18:15,851 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:18:15,851 - root - INFO - 请求头:
2022-09-16 16:18:15,852 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:18:15,982 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:18:15,983 - root - INFO - 断言处理结束!!!
2022-09-16 16:18:15,986 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:18:15,987 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:18:15,989 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:18:15,991 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 16:18:15,992 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:18:15,993 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:18:15,994 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:18:15,995 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 16:18:15,996 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 16:18:16,433 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': 'b6c8e272147348abb02b59d7defa57ff', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:18:16,435 - root - INFO - 断言处理结束!!!
2022-09-16 16:18:16,436 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:18:16,438 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:18:16,438 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:18:16,439 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:18:16,441 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:18:16,442 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:18:16,443 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:18:16,444 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:18:16,850 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'dbff7dd23b25491e9fad8b18eb35858a', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:18:16,851 - root - INFO - 断言处理结束!!!
2022-09-16 16:18:16,853 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:18:16,853 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:19:28,283 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:19:28,284 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:19:28,474 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:19:28,475 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:19:28,476 - root - INFO - 请求头:
2022-09-16 16:19:28,476 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:19:28,590 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:19:28,592 - root - INFO - 断言处理结束!!!
2022-09-16 16:19:28,597 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:19:28,598 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:19:28,600 - root - INFO - ***************【APP登录--账号未激活】接口测试开始***************
2022-09-16 16:19:28,601 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': 'APP登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 16:19:28,601 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:19:28,602 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:19:28,603 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:19:28,605 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 16:19:28,606 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 16:19:29,110 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': 'f5a2602f324f447f8f2b5c5f77839764', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:19:29,111 - root - INFO - 断言处理结束!!!
2022-09-16 16:19:29,112 - root - INFO - ***************【APP登录--账号未激活】接口测试结束***************
2022-09-16 16:19:29,113 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:19:29,114 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:19:29,114 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:19:29,115 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:19:29,115 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:19:29,116 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:19:29,117 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:19:29,514 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'ac68ec34afc14a11b667c28053abd56d', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:19:29,515 - root - INFO - 断言处理结束!!!
2022-09-16 16:19:29,516 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:19:29,517 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:21:10,150 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:21:10,152 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:21:10,309 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:21:10,309 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:21:10,310 - root - INFO - 请求头:
2022-09-16 16:21:10,310 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:21:10,424 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:21:10,425 - root - INFO - 断言处理结束!!!
2022-09-16 16:21:10,429 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:21:10,429 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:21:10,430 - root - INFO - ***************【APP登录--账号未激活】接口测试开始***************
2022-09-16 16:21:10,430 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '否', 'desc': 'APP登录--账号未激活', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 16:21:10,431 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:21:10,431 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:21:10,432 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:21:10,432 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 16:21:10,432 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 16:21:10,854 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': 'a149346fc5814832bab7ddfd51b32101', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:21:10,855 - root - INFO - 断言处理结束!!!
2022-09-16 16:21:10,855 - root - INFO - ***************【APP登录--账号未激活】接口测试结束***************
2022-09-16 16:21:10,856 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:21:10,857 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:21:10,857 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:21:10,858 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:21:10,858 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:21:10,858 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:21:10,859 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:21:11,253 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '239e2205f59542668a548aa95336fd33', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:21:11,254 - root - INFO - 断言处理结束!!!
2022-09-16 16:21:11,255 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:21:11,256 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:21:56,518 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:21:56,519 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:21:56,618 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:21:56,618 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:21:56,619 - root - INFO - 请求头:
2022-09-16 16:21:56,619 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:21:56,693 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:21:56,694 - root - INFO - 断言处理结束!!!
2022-09-16 16:21:56,696 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:21:56,697 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:21:56,698 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:21:56,699 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:21:56,699 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:21:56,699 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:21:56,700 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:21:56,701 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:21:56,701 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:21:57,159 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'b38ec881efd7400abf5fa3cd09bf02b0', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:21:57,160 - root - INFO - 断言处理结束!!!
2022-09-16 16:21:57,161 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:21:57,162 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:29:10,116 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:29:10,118 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:29:10,288 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:29:10,289 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:29:10,289 - root - INFO - 请求头:
2022-09-16 16:29:10,289 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:29:10,397 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:29:10,398 - root - INFO - 断言处理结束!!!
2022-09-16 16:29:10,404 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:29:10,406 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:29:10,407 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:29:10,408 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:29:10,408 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:29:10,409 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:29:10,410 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:29:10,410 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:29:10,411 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:29:10,813 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '0ac5f361b88f46cdbdcb29c779cda5e8', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:29:10,814 - root - INFO - 断言处理结束!!!
2022-09-16 16:29:10,815 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:29:10,817 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:29:10,818 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 16:29:10,818 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"', 'params': '=DISPIMG("ID_C8FEA964D836456AB24585FFBFC22DE1",1)', 'response_assert': '{"orderSource":"1"}', 'save_args': 'orderSource,data'}
2022-09-16 16:34:07,205 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:34:07,208 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:34:07,249 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/speech_variable.yaml 文件加载中......
2022-09-16 16:34:07,252 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/sql/speech_variable.yaml 文件加载成功......
2022-09-16 16:34:07,396 - root - INFO - 操作MySQL出现错误,错误原因:(1050, "Table 'speech_variable' already exists")
2022-09-16 16:34:16,754 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:34:16,755 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:34:16,960 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:34:16,960 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:34:16,961 - root - INFO - 请求头:
2022-09-16 16:34:16,962 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:34:17,309 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:34:17,310 - root - INFO - 断言处理结束!!!
2022-09-16 16:34:17,315 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:34:17,316 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:34:17,317 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:34:17,317 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:34:17,318 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:34:17,319 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:34:17,319 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:34:17,320 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:34:17,320 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:34:17,766 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'b1f19fd0c3dc436389d5699f132cf9cb', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:34:17,768 - root - INFO - 断言处理结束!!!
2022-09-16 16:34:17,769 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:34:17,771 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:34:17,772 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 16:34:17,773 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"', 'params': '=DISPIMG("ID_C8FEA964D836456AB24585FFBFC22DE1",1)', 'response_assert': '{"orderSource":"1"}', 'save_args': 'orderSource,data'}
2022-09-16 16:42:27,884 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:42:27,886 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:42:28,082 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:42:28,083 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:42:28,084 - root - INFO - 请求头:
2022-09-16 16:42:28,085 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:42:28,211 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:42:28,212 - root - INFO - 断言处理结束!!!
2022-09-16 16:42:28,219 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:42:28,220 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:42:28,222 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:42:28,223 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:42:28,223 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:42:28,225 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:42:28,226 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:42:28,227 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:42:28,228 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:42:28,680 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '351a8351fcd348c1ada3bd8c9847cc0a', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:42:28,682 - root - INFO - 断言处理结束!!!
2022-09-16 16:42:28,683 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:42:28,684 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:42:28,686 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 16:42:28,687 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"', 'params': '=DISPIMG("ID_C8FEA964D836456AB24585FFBFC22DE1",1)', 'response_assert': '{"orderSource":"1"}', 'save_args': 'orderSource,data'}
2022-09-16 16:53:03,020 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:53:03,022 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:53:03,232 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:53:03,232 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:53:03,233 - root - INFO - 请求头:
2022-09-16 16:53:03,233 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:53:03,595 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:53:03,597 - root - INFO - 断言处理结束!!!
2022-09-16 16:53:03,602 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:53:03,604 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:53:03,605 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:53:03,606 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:53:03,607 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:53:03,608 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:53:03,611 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:53:03,612 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:53:03,613 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:53:04,061 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'c687fa7d153449c88af2ec7598ec1e97', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:53:04,062 - root - INFO - 断言处理结束!!!
2022-09-16 16:53:04,064 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:53:04,065 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:53:04,066 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 16:53:04,067 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"', 'params': '=DISPIMG("ID_C8FEA964D836456AB24585FFBFC22DE1",1)', 'response_assert': '{"orderSource":"1"}', 'save_args': 'orderSource,data'}
2022-09-16 16:54:05,032 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:54:05,034 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:54:05,232 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:54:05,234 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:54:05,235 - root - INFO - 请求头:
2022-09-16 16:54:05,236 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:54:05,369 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:54:05,371 - root - INFO - 断言处理结束!!!
2022-09-16 16:54:05,378 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:54:05,379 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:54:05,380 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:54:05,381 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:54:05,382 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:54:05,383 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:54:05,385 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:54:05,385 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:54:05,386 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:54:05,889 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'e30aef6241a644779d20b59894291d47', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:54:05,890 - root - INFO - 断言处理结束!!!
2022-09-16 16:54:05,892 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:54:05,892 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:54:05,894 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 16:54:05,894 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"', 'params': '=DISPIMG("ID_C8FEA964D836456AB24585FFBFC22DE1",1)', 'response_assert': '{"orderSource":"1"}', 'save_args': 'orderSource,data'}
2022-09-16 16:55:11,540 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:55:11,542 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:55:11,753 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:55:11,754 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:55:11,755 - root - INFO -
2022-09-16 16:55:11,756 - root - INFO - 请求头:
2022-09-16 16:55:11,757 - root - INFO - {"type": 1,"platformType": 1}
2022-09-16 16:55:11,758 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:55:11,882 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:55:11,884 - root - INFO - 断言处理结束!!!
2022-09-16 16:55:11,891 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:55:11,893 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:55:11,894 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:55:11,895 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:55:11,896 - root - INFO - {"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}
2022-09-16 16:55:11,896 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:55:11,897 - root - INFO - {"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}
2022-09-16 16:55:11,898 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:55:11,899 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:55:11,900 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:55:11,900 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:55:12,316 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'ac3a78a0663d4c52ab7ef685f2fe0d44', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:55:12,318 - root - INFO - 断言处理结束!!!
2022-09-16 16:55:12,319 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:55:12,320 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:55:12,321 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 16:55:12,321 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"', 'params': '=DISPIMG("ID_C8FEA964D836456AB24585FFBFC22DE1",1)', 'response_assert': '{"orderSource":"1"}', 'save_args': 'orderSource,data'}
2022-09-16 16:55:12,322 - root - INFO - {"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"
2022-09-16 16:55:54,604 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:55:54,606 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:55:54,796 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:55:54,796 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:55:54,798 - root - INFO - 请求头:
2022-09-16 16:55:54,799 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:55:55,108 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:55:55,109 - root - INFO - 断言处理结束!!!
2022-09-16 16:55:55,114 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:55:55,115 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:55:55,116 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:55:55,117 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:55:55,118 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:55:55,119 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:55:55,120 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:55:55,121 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:55:55,123 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:55:55,543 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '6c2c1e393e364205839486f335f2a503', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:55:55,545 - root - INFO - 断言处理结束!!!
2022-09-16 16:55:55,546 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:55:55,548 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:55:55,550 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 16:55:55,551 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '=DISPIMG("ID_C8FEA964D836456AB24585FFBFC22DE1",1)', 'response_assert': '{"orderSource":"1"}', 'save_args': 'orderSource,data'}
2022-09-16 16:55:55,553 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 16:55:55,554 - root - INFO - 可变参数的信息为:{'#2.token': '6c2c1e393e364205839486f335f2a503'}
2022-09-16 16:55:55,555 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '6c2c1e393e364205839486f335f2a503'}
2022-09-16 16:55:55,556 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '6c2c1e393e364205839486f335f2a503'}
2022-09-16 16:59:49,123 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 16:59:49,125 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 16:59:49,326 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 16:59:49,326 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 16:59:49,326 - root - INFO - 请求头:
2022-09-16 16:59:49,327 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 16:59:49,440 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 16:59:49,442 - root - INFO - 断言处理结束!!!
2022-09-16 16:59:49,447 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:59:49,447 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 16:59:49,449 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 16:59:49,449 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 16:59:49,450 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 16:59:49,450 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 16:59:49,451 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 16:59:49,452 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:59:49,454 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 16:59:49,958 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '8269ff1fe61343439115dc6f54d72d9e', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 16:59:49,959 - root - INFO - 断言处理结束!!!
2022-09-16 16:59:49,960 - root - INFO - 响应信息存储完毕!!!
2022-09-16 16:59:49,961 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 16:59:49,962 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 16:59:49,962 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"', 'params': '', 'response_assert': '{"orderSource":"1"}', 'save_args': 'orderSource,data'}
2022-09-16 17:05:46,156 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 17:05:46,158 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 17:05:46,340 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 17:05:46,341 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 17:05:46,342 - root - INFO - 请求头:
2022-09-16 17:05:46,342 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 17:05:46,467 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 17:05:46,469 - root - INFO - 断言处理结束!!!
2022-09-16 17:05:46,474 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:05:46,475 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 17:05:46,476 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 17:05:46,477 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 17:05:46,478 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 17:05:46,478 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 17:05:46,479 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 17:05:46,480 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:05:46,481 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:05:47,019 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'dbad1d1782484421a3ee6c4d2485ba49', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 17:05:47,019 - root - INFO - 断言处理结束!!!
2022-09-16 17:05:47,021 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:05:47,022 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 17:05:47,024 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 17:05:47,024 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"', 'params': '{"orderSource": "1",data:"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 17:06:13,752 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 17:06:13,753 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 17:06:13,945 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 17:06:13,946 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 17:06:13,946 - root - INFO - 请求头:
2022-09-16 17:06:13,947 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 17:06:14,053 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 17:06:14,054 - root - INFO - 断言处理结束!!!
2022-09-16 17:06:14,057 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:06:14,058 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 17:06:14,059 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 17:06:14,060 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 17:06:14,061 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 17:06:14,063 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 17:06:14,064 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 17:06:14,065 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:06:14,065 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:06:14,474 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '3dd662df1ed04eb0a560e09f3b7d3a5c', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 17:06:14,475 - root - INFO - 断言处理结束!!!
2022-09-16 17:06:14,475 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:06:14,476 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 17:06:14,477 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 17:06:14,477 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource": "1",data:"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 17:06:14,478 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 17:06:14,478 - root - INFO - 可变参数的信息为:{'#2.token': '3dd662df1ed04eb0a560e09f3b7d3a5c'}
2022-09-16 17:06:14,479 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '3dd662df1ed04eb0a560e09f3b7d3a5c'}
2022-09-16 17:06:14,480 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '3dd662df1ed04eb0a560e09f3b7d3a5c'}
2022-09-16 17:10:11,517 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 17:10:11,519 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 17:10:11,727 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 17:10:11,727 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 17:10:11,729 - root - INFO - 请求头:
2022-09-16 17:10:11,730 - root - INFO - 请求参数:
2022-09-16 17:10:12,071 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 17:10:12,077 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 17:10:12,078 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 17:10:12,078 - root - INFO - 请求头:
2022-09-16 17:10:12,079 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 17:10:12,080 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 17:10:12,080 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:10:12,081 - root - INFO - 请求参数:
2022-09-16 17:10:12,171 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 17:10:12,188 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 17:10:12,189 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource": "1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 17:10:12,189 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 17:10:12,190 - root - INFO - 可变参数的信息为:{'#2.token': '3dd662df1ed04eb0a560e09f3b7d3a5c'}
2022-09-16 17:10:12,192 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '3dd662df1ed04eb0a560e09f3b7d3a5c'}
2022-09-16 17:10:12,194 - root - INFO - 请求头:
2022-09-16 17:10:12,195 - root - INFO - 请求参数:{'code': 1, 'result': '参数格式异常,请检查'}
2022-09-16 17:10:12,224 - root - INFO - 接口测试结果为:{'code': 1, 'result': "请求异常:HTTPSConnectionPool(host='aidrs-st.sunlife-everbright.comcl', port=443): Max retries exceeded with url: /order/or/code (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f82f53d1a50>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known'))"}
2022-09-16 17:10:41,296 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 17:10:41,298 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 17:10:41,506 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 17:10:41,506 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 17:10:41,507 - root - INFO - 请求头:
2022-09-16 17:10:41,507 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 17:10:41,643 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 17:10:41,645 - root - INFO - 断言处理结束!!!
2022-09-16 17:10:41,651 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:10:41,652 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 17:10:41,654 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 17:10:41,654 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 17:10:41,656 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 17:10:41,657 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 17:10:41,659 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 17:10:41,660 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:10:41,660 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:10:42,169 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '9bcdfe15d3194da88f916d565aa4496f', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 17:10:42,170 - root - INFO - 断言处理结束!!!
2022-09-16 17:10:42,172 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:10:42,173 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 17:10:42,174 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 17:10:42,174 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource": "1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 17:10:42,175 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 17:10:42,175 - root - INFO - 可变参数的信息为:{'#2.token': '9bcdfe15d3194da88f916d565aa4496f'}
2022-09-16 17:10:42,176 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '9bcdfe15d3194da88f916d565aa4496f'}
2022-09-16 17:10:42,177 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '9bcdfe15d3194da88f916d565aa4496f'}
2022-09-16 17:10:42,178 - root - INFO - 请求参数:{'code': 1, 'result': '参数格式异常,请检查'}
2022-09-16 17:10:42,189 - root - INFO - 接口测试结果为:{'code': 1, 'result': "请求异常:HTTPSConnectionPool(host='aidrs-st.sunlife-everbright.comcl', port=443): Max retries exceeded with url: /order/or/code (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f7e3c416b50>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known'))"}
2022-09-16 17:11:10,821 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 17:11:10,823 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 17:11:10,993 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 17:11:10,993 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 17:11:10,993 - root - INFO - 请求头:
2022-09-16 17:11:10,994 - root - INFO - 请求参数:{'type': 1, 'platformType': 1}
2022-09-16 17:11:11,145 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 17:11:11,146 - root - INFO - 断言处理结束!!!
2022-09-16 17:11:11,148 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:11:11,149 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 17:11:11,150 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 17:11:11,150 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 17:11:11,151 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 17:11:11,151 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 17:11:11,151 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 17:11:11,152 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:11:11,152 - root - INFO - 请求参数:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:11:11,667 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '5e5c828da46e48f09e14d4a1b9745bb0', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 17:11:11,668 - root - INFO - 断言处理结束!!!
2022-09-16 17:11:11,669 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:11:11,670 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 17:11:11,671 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 17:11:11,671 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource": "1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 17:11:11,671 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 17:11:11,672 - root - INFO - 可变参数的信息为:{'#2.token': '5e5c828da46e48f09e14d4a1b9745bb0'}
2022-09-16 17:11:11,672 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '5e5c828da46e48f09e14d4a1b9745bb0'}
2022-09-16 17:11:11,673 - root - INFO - 请求头:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '5e5c828da46e48f09e14d4a1b9745bb0'}
2022-09-16 17:11:11,674 - root - INFO - 请求参数:{'code': 1, 'result': '参数格式异常,请检查'}
2022-09-16 17:11:11,681 - root - INFO - 接口测试结果为:{'code': 1, 'result': "请求异常:HTTPSConnectionPool(host='aidrs-st.sunlife-everbright.comcl', port=443): Max retries exceeded with url: /order/or/code (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f9cc3e02e50>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known'))"}
2022-09-16 17:13:39,473 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 17:13:39,474 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 17:13:39,627 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 17:13:39,628 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 17:13:39,628 - root - INFO - 处理的参数为:{'type': 1, 'platformType': 1}
2022-09-16 17:13:39,774 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 17:13:39,775 - root - INFO - 断言处理结束!!!
2022-09-16 17:13:39,778 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:13:39,779 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 17:13:39,780 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 17:13:39,781 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 17:13:39,781 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 17:13:39,781 - root - INFO - 处理的参数为:{'type': 1, 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:13:39,782 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 17:13:39,782 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 17:13:39,783 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 17:13:40,216 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '7fd52b8a035643328f2e04375ae7e22c', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 17:13:40,216 - root - INFO - 断言处理结束!!!
2022-09-16 17:13:40,218 - root - INFO - 响应信息存储完毕!!!
2022-09-16 17:13:40,219 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 17:13:40,220 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 17:13:40,221 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource": "1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 17:13:40,221 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '#2.token'}
2022-09-16 17:13:40,222 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 17:13:40,223 - root - INFO - 可变参数的信息为:{'#2.token': '7fd52b8a035643328f2e04375ae7e22c'}
2022-09-16 17:13:40,224 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '7fd52b8a035643328f2e04375ae7e22c'}
2022-09-16 17:13:40,233 - root - INFO - 接口测试结果为:{'code': 1, 'result': "请求异常:HTTPSConnectionPool(host='aidrs-st.sunlife-everbright.comcl', port=443): Max retries exceeded with url: /order/or/code (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fd470e01410>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known'))"}
2022-09-16 18:25:45,659 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:25:45,661 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:25:45,877 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:25:45,878 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:25:45,878 - root - INFO - 处理的参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:25:45,994 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:25:45,995 - root - INFO - 断言处理结束!!!
2022-09-16 18:25:45,997 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:25:45,998 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:25:45,999 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:25:45,999 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:25:45,999 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:25:46,000 - root - INFO - 处理的参数为:{'type': 1, 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 18:25:46,000 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:25:46,001 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:25:46,001 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 18:25:46,567 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'e9e5a72bfab74b6fb43a3fc1edbecdb3', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:25:46,568 - root - INFO - 断言处理结束!!!
2022-09-16 18:25:46,569 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:25:46,570 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:25:46,571 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:25:46,571 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource": "1","data":{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:25:46,572 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '#2.token'}
2022-09-16 18:25:46,572 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:25:46,573 - root - INFO - 可变参数的信息为:{'#2.token': 'e9e5a72bfab74b6fb43a3fc1edbecdb3'}
2022-09-16 18:25:46,573 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'e9e5a72bfab74b6fb43a3fc1edbecdb3'}
2022-09-16 18:25:46,574 - root - INFO - 处理的参数为:{'orderSource': '1', 'data': {'prtNo': 'M1201F0002454A88', 'orderCode': '539b4dd2177b41f890cd8b6a5038386f', 'scanTime': 1662536957045, 'sysType': '1'}}
2022-09-16 18:25:46,583 - root - INFO - 接口测试结果为:{'code': 1, 'result': "请求异常:HTTPSConnectionPool(host='aidrs-st.sunlife-everbright.comcl', port=443): Max retries exceeded with url: /order/or/code (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fbdfbe02350>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known'))"}
2022-09-16 18:26:48,262 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:26:48,264 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:26:48,417 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:26:48,417 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:26:48,417 - root - INFO - 处理的参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:26:48,536 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:26:48,539 - root - INFO - 断言处理结束!!!
2022-09-16 18:26:48,567 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:26:48,567 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:26:48,568 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:26:48,568 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:26:48,568 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:26:48,569 - root - INFO - 处理的参数为:{'type': 1, 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 18:26:48,569 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:26:48,569 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:26:48,570 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 18:26:49,254 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': 'c96e557f6adf46dea236a3fb416d7169', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:26:49,255 - root - INFO - 断言处理结束!!!
2022-09-16 18:26:49,257 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:26:49,258 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:26:49,260 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:26:49,260 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource":"1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:26:49,261 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '#2.token'}
2022-09-16 18:26:49,261 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:26:49,262 - root - INFO - 可变参数的信息为:{'#2.token': 'c96e557f6adf46dea236a3fb416d7169'}
2022-09-16 18:26:49,262 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'c96e557f6adf46dea236a3fb416d7169'}
2022-09-16 18:26:49,271 - root - INFO - 接口测试结果为:{'code': 1, 'result': "请求异常:HTTPSConnectionPool(host='aidrs-st.sunlife-everbright.comcl', port=443): Max retries exceeded with url: /order/or/code (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fbc2d602610>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known'))"}
2022-09-16 18:28:31,802 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:28:31,803 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:28:31,990 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:28:31,991 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:28:31,991 - root - INFO - 处理的参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:28:32,153 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:28:32,154 - root - INFO - 断言处理结束!!!
2022-09-16 18:28:32,158 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:28:32,159 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:28:32,159 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:28:32,160 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:28:32,160 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:28:32,161 - root - INFO - 处理的参数为:{'type': 1, 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 18:28:32,161 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:28:32,162 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:28:32,162 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 18:28:32,600 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '522c28997c344a8f8311e555b096f4c3', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:28:32,600 - root - INFO - 断言处理结束!!!
2022-09-16 18:28:32,601 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:28:32,602 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:28:32,603 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:28:32,603 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{\n "orderSource": "1",\n "data": "{\\"prtNo\\":\\"M1201F0002454A88\\",\\"orderCode\\":\\"539b4dd2177b41f890cd8b6a5038386f\\",\\"scanTime\\":1662536957045,\\"sysType\\":\\"1\\"}"\n}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:28:32,604 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '#2.token'}
2022-09-16 18:28:32,604 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:28:32,605 - root - INFO - 可变参数的信息为:{'#2.token': '522c28997c344a8f8311e555b096f4c3'}
2022-09-16 18:28:32,605 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '522c28997c344a8f8311e555b096f4c3'}
2022-09-16 18:28:32,606 - root - INFO - 处理的参数为:{'orderSource': '1', 'data': '{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}'}
2022-09-16 18:28:32,615 - root - INFO - 接口测试结果为:{'code': 1, 'result': "请求异常:HTTPSConnectionPool(host='aidrs-st.sunlife-everbright.comcl', port=443): Max retries exceeded with url: /order/or/code (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f9d06f252d0>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known'))"}
2022-09-16 18:28:32,621 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:28:32,622 - root - INFO - 接口测试用例为:{'id': 4.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': 'cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource":"1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:28:32,622 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '#2.token'}
2022-09-16 18:28:32,623 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:28:32,623 - root - INFO - 可变参数的信息为:{'#2.token': '522c28997c344a8f8311e555b096f4c3'}
2022-09-16 18:28:32,623 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '522c28997c344a8f8311e555b096f4c3'}
2022-09-16 18:28:32,629 - root - INFO - 接口测试结果为:{'code': 1, 'result': "请求异常:HTTPSConnectionPool(host='aidrs-st.sunlife-everbright.comcl', port=443): Max retries exceeded with url: /order/or/code (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f9d06f2b750>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known'))"}
2022-09-16 18:30:54,701 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:30:54,703 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:30:54,857 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:30:54,857 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:30:54,858 - root - INFO - 处理的参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:30:54,966 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:30:54,967 - root - INFO - 断言处理结束!!!
2022-09-16 18:30:54,968 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:30:54,969 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:30:54,969 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:30:54,969 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1343936821","password": "situ1234"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:30:54,970 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:30:54,970 - root - INFO - 处理的参数为:{'type': 1, 'platformType': '1', 'md5': '#1.md5', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 18:30:54,970 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:30:54,970 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:30:54,970 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1343936821', 'password': 'situ1234'}
2022-09-16 18:30:55,935 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '许威', 'token': '0c8b10c6bc8744ecb984765db1a2a778', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 5, 'branchName': '北京分公司', 'subBranchId': 66, 'subBranchName': '北京', 'directlyAgencyName': '北京', 'directlyAgencyId': 66, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:30:55,935 - root - INFO - 断言处理结束!!!
2022-09-16 18:30:55,937 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:30:55,938 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:30:55,939 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:30:55,939 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{\n "orderSource": "1",\n "data": "{\\"prtNo\\":\\"M1201F0002454A88\\",\\"orderCode\\":\\"539b4dd2177b41f890cd8b6a5038386f\\",\\"scanTime\\":1662536957045,\\"sysType\\":\\"1\\"}"\n}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:30:55,939 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '#2.token'}
2022-09-16 18:30:55,940 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:30:55,940 - root - INFO - 可变参数的信息为:{'#2.token': '0c8b10c6bc8744ecb984765db1a2a778'}
2022-09-16 18:30:55,941 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '0c8b10c6bc8744ecb984765db1a2a778'}
2022-09-16 18:30:55,941 - root - INFO - 处理的参数为:{'orderSource': '1', 'data': '{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}'}
2022-09-16 18:30:56,475 - root - INFO - 接口测试结果为:{'code': 2800, 'msg': '营销员工号与二维码信息不符合', 'success': False, 'result': None}
2022-09-16 18:30:56,481 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:30:56,481 - root - INFO - 接口测试用例为:{'id': 4.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource":"1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:30:56,482 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '#2.token'}
2022-09-16 18:30:56,482 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:30:56,483 - root - INFO - 可变参数的信息为:{'#2.token': '0c8b10c6bc8744ecb984765db1a2a778'}
2022-09-16 18:30:56,483 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '0c8b10c6bc8744ecb984765db1a2a778'}
2022-09-16 18:30:56,853 - root - INFO - 接口测试结果为:{'code': -4, 'msg': '二维码解析失败', 'success': False, 'result': None}
2022-09-16 18:31:41,786 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:31:41,787 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:31:41,952 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:31:41,953 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:31:41,953 - root - INFO - 处理的参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:31:42,077 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:31:42,078 - root - INFO - 断言处理结束!!!
2022-09-16 18:31:42,080 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:31:42,081 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:31:42,081 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:31:42,081 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:31:42,082 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:31:42,082 - root - INFO - 处理的参数为:{'type': 1, 'platformType': '1', 'md5': '#1.md5', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:31:42,082 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:31:42,083 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:31:42,083 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:31:42,478 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': '494f2c7937d143d0bb228526b8f61a2f', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:31:42,479 - root - INFO - 断言处理结束!!!
2022-09-16 18:31:42,480 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:31:42,481 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:31:42,482 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:31:42,482 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource":"1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:31:42,483 - root - INFO - 处理的参数为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '#2.token'}
2022-09-16 18:31:42,483 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:31:42,484 - root - INFO - 可变参数的信息为:{'#2.token': '494f2c7937d143d0bb228526b8f61a2f'}
2022-09-16 18:31:42,484 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '494f2c7937d143d0bb228526b8f61a2f'}
2022-09-16 18:31:42,569 - root - INFO - 接口测试结果为:{'code': -4, 'msg': '二维码解析失败', 'success': False, 'result': None}
2022-09-16 18:34:09,498 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:34:09,500 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:34:09,648 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:34:09,649 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:34:09,773 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:34:09,774 - root - INFO - 断言处理结束!!!
2022-09-16 18:34:09,777 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:34:09,777 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:34:09,778 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:34:09,778 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:34:09,778 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:34:09,779 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:34:09,779 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:34:10,200 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': '9394ed3269524e03995d67781c59e8b3', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:34:10,201 - root - INFO - 断言处理结束!!!
2022-09-16 18:34:10,202 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:34:10,202 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:34:10,203 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:34:10,203 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource":"1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:34:10,203 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:34:10,204 - root - INFO - 可变参数的信息为:{'#2.token': '9394ed3269524e03995d67781c59e8b3'}
2022-09-16 18:34:10,204 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '9394ed3269524e03995d67781c59e8b3'}
2022-09-16 18:34:10,270 - root - INFO - 接口测试结果为:{'code': -4, 'msg': '二维码解析失败', 'success': False, 'result': None}
2022-09-16 18:35:33,247 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:35:33,249 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:35:33,385 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:35:33,386 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:35:33,386 - root - INFO - 请求头为:
2022-09-16 18:35:33,386 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:35:33,489 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:35:33,490 - root - INFO - 断言处理结束!!!
2022-09-16 18:35:33,493 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:35:33,494 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:35:33,495 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:35:33,495 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:35:33,496 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:35:33,496 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:35:33,497 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:35:33,497 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:35:33,497 - root - INFO - 请求参数为:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:35:33,913 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': 'd6fa1cbc98764c648c3a582f6e3340e2', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:35:33,913 - root - INFO - 断言处理结束!!!
2022-09-16 18:35:33,915 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:35:33,916 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:35:33,917 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:35:33,918 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource":"1","data":"{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:35:33,918 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:35:33,919 - root - INFO - 可变参数的信息为:{'#2.token': 'd6fa1cbc98764c648c3a582f6e3340e2'}
2022-09-16 18:35:33,919 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'd6fa1cbc98764c648c3a582f6e3340e2'}
2022-09-16 18:35:33,920 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'd6fa1cbc98764c648c3a582f6e3340e2'}
2022-09-16 18:35:33,921 - root - INFO - 请求参数为:{'code': 1, 'result': '参数格式异常,请检查'}
2022-09-16 18:35:34,017 - root - INFO - 接口测试结果为:{'code': -4, 'msg': '二维码解析失败', 'success': False, 'result': None}
2022-09-16 18:36:40,345 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:36:40,347 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:36:40,508 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:36:40,508 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:36:40,508 - root - INFO - 请求头为:
2022-09-16 18:36:40,509 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:36:40,629 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:36:40,630 - root - INFO - 断言处理结束!!!
2022-09-16 18:36:40,633 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:36:40,634 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:36:40,635 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:36:40,635 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:36:40,636 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:36:40,636 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:36:40,636 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:36:40,637 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:36:40,637 - root - INFO - 请求参数为:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:36:41,143 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': '34c5bf78d9914f67bedb9446fa510fd8', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:36:41,143 - root - INFO - 断言处理结束!!!
2022-09-16 18:36:41,144 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:36:41,145 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:36:41,146 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:36:41,146 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{"orderSource":"1","data":{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:36:41,147 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:36:41,148 - root - INFO - 可变参数的信息为:{'#2.token': '34c5bf78d9914f67bedb9446fa510fd8'}
2022-09-16 18:36:41,148 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '34c5bf78d9914f67bedb9446fa510fd8'}
2022-09-16 18:36:41,149 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '34c5bf78d9914f67bedb9446fa510fd8'}
2022-09-16 18:36:41,149 - root - INFO - 请求参数为:{'orderSource': '1', 'data': {'prtNo': 'M1201F0002454A88', 'orderCode': '539b4dd2177b41f890cd8b6a5038386f', 'scanTime': 1662536957045, 'sysType': '1'}}
2022-09-16 18:36:41,220 - root - INFO - 接口测试结果为:{'code': -1, 'msg': '未知异常', 'success': False, 'result': None}
2022-09-16 18:43:40,104 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:43:40,106 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:43:40,322 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:43:40,323 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:43:40,323 - root - INFO - 请求头为:
2022-09-16 18:43:40,323 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:43:40,426 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:43:40,427 - root - INFO - 断言处理结束!!!
2022-09-16 18:43:40,431 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:43:40,432 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:43:40,433 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:43:40,433 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:43:40,434 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:43:40,434 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:43:40,435 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:43:40,435 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:43:40,436 - root - INFO - 请求参数为:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:43:41,170 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': '7f96d489e67748caa925e6b4900d0d20', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:43:41,170 - root - INFO - 断言处理结束!!!
2022-09-16 18:43:41,171 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:43:41,173 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:43:41,174 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:43:41,174 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{\n "orderSource": "1",\n "data": "{\\"prtNo\\":\\"M1201F0002454A88\\",\\"orderCode\\":\\"539b4dd2177b41f890cd8b6a5038386f\\",\\"scanTime\\":1662536957045,\\"sysType\\":\\"1\\"}"\n}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId'}
2022-09-16 18:43:41,175 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:43:41,175 - root - INFO - 可变参数的信息为:{'#2.token': '7f96d489e67748caa925e6b4900d0d20'}
2022-09-16 18:43:41,176 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '7f96d489e67748caa925e6b4900d0d20'}
2022-09-16 18:43:41,176 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '7f96d489e67748caa925e6b4900d0d20'}
2022-09-16 18:43:41,177 - root - INFO - 请求参数为:{'orderSource': '1', 'data': '{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}'}
2022-09-16 18:43:41,636 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'taskId': '1e98b135c9dc4e6582391dc0ec916235', 'orderSource': 1, 'systemSource': '', 'orderDetails': [{'title': '销售人员信息', 'key': '', 'content': [{'title': '销售人员姓名', 'key': '', 'content': '天津测试', 'show': 1}, {'title': '销售人员工号', 'key': '', 'content': '1200002681', 'show': 1}, {'title': '销售人员所属机构名称', 'key': '', 'content': '天津', 'show': 1}, {'title': '机构类型', 'key': '', 'content': '保险公司', 'show': 1}, {'title': '保险公司名称', 'key': '', 'content': '光大永明人寿保险有限公司', 'show': 1}, {'title': '公司名称', 'key': '', 'content': '光大永明人寿保险有限公司天津分公司', 'show': 1}], 'show': 0}, {'title': '投保人信息', 'key': '', 'content': [{'title': '投保人姓名', 'key': '', 'content': '天津测试', 'show': 1}, {'title': '投保人性别', 'key': '', 'content': '男', 'show': 1}, {'title': '投保人尊称', 'key': '', 'content': '先生', 'show': 1}, {'title': '投保人年龄', 'key': '', 'content': 60, 'show': 1}, {'title': '投保人职业', 'key': '', 'content': '党政机关、企事业单位负责人和行政管理人员', 'show': 1}, {'title': '投保人出生日期', 'key': '', 'content': '1962-06-01', 'show': 1}, {'title': '投保人证件类型', 'key': '', 'content': '身份证', 'show': 1}, {'title': '投保人证件号码', 'key': '', 'content': '120101196206010017', 'show': 1}, {'title': '投保人有效通讯地址', 'key': '', 'content': '天津天津市和平233水电费规范化234', 'show': 1}, {'title': '投保人电话号码', 'key': '', 'content': '15236547788', 'show': 1}], 'show': 0}, {'title': '订单基本信息', 'key': '', 'content': [{'title': '投保单号', 'key': '', 'content': 'M1201F0002454A88', 'show': 1}, {'title': '保单类型', 'key': '', 'content': '非自保件', 'show': 1}, {'title': '订单来源', 'key': '', 'content': '扫码入件', 'show': 1}, {'title': '双录创建时间', 'key': '', 'content': '2022-09-16', 'show': 1}, {'title': '销售渠道', 'key': '', 'content': '个险渠道', 'show': 1}, {'title': '机构名称', 'key': '', 'content': '天津', 'show': 1}, {'title': '第一年末现金价值', 'key': '', 'content': '0', 'show': 1}, {'title': '机构代码', 'key': '', 'content': '861200', 'show': 1}, {'title': '签名方式', 'key': '', 'content': '电子签名', 'show': 1}], 'show': 0}, {'title': '投保基本信息1', 'key': '', 'content': [{'title': '产品名称', 'key': '', 'content': '光大永明增利宝(庆典版)终身寿险(万能型)', 'show': 1}, {'title': '产品代码', 'key': '', 'content': 'LWU006', 'show': 1}, {'title': '产品种类', 'key': '', 'content': '主险', 'show': 1}, {'title': '缴费方式', 'key': '', 'content': '趸缴', 'show': 1}, {'title': '缴费期限', 'key': '', 'content': '趸交', 'show': 1}, {'title': '保险期限', 'key': '', 'content': '保终身', 'show': 1}, {'title': '每期缴费金额', 'key': '', 'content': '', 'show': 1}, {'title': '产品类型', 'key': '', 'content': '万能型', 'show': 1}, {'title': '缴费频次', 'key': '', 'content': '趸', 'show': 1}, {'title': '首年保费总计', 'key': '', 'content': '100.00', 'show': 1}, {'title': '保费', 'key': '', 'content': '100.00', 'show': 1}, {'title': '被保人姓名', 'key': '', 'content': '天津测试', 'show': 1}, {'title': '被保人性别', 'key': '', 'content': '男', 'show': 1}, {'title': '被保人尊称', 'key': '', 'content': '先生', 'show': 1}, {'title': '被保人出生日期', 'key': '', 'content': '1962-06-01', 'show': 1}, {'title': '被保人年龄', 'key': '', 'content': '60', 'show': 1}, {'title': '被保人职业', 'key': '', 'content': '党政机关、企事业单位负责人和行政管理人员', 'show': 1}, {'title': '被保人证件类型', 'key': '', 'content': '身份证', 'show': 1}, {'title': '被保人证件号码', 'key': '', 'content': '120101196206010017', 'show': 1}, {'title': '被保人电话号码', 'key': '', 'content': '15236547788', 'show': 1}, {'title': '被保人有效通讯地址', 'key': '', 'content': '天津天津市和平233水电费规范化234', 'show': 1}, {'title': '被保人与投保人关系', 'key': '', 'content': '本人', 'show': 1}], 'show': 0}]}}
2022-09-16 18:43:41,637 - root - INFO - 断言处理结束!!!
2022-09-16 18:43:41,639 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:43:41,640 - root - INFO - ***************【扫码入件】接口测试结束***************
2022-09-16 18:44:41,434 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:44:41,436 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:44:41,600 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:44:41,600 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:44:41,601 - root - INFO - 请求头为:
2022-09-16 18:44:41,601 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:44:41,716 - root - INFO - 接口测试结果为:{'code': -6, 'msg': '系统内部错误,请稍后重试', 'success': False}
2022-09-16 18:44:41,722 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:44:41,723 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:44:41,723 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:44:41,723 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:44:41,724 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:44:41,725 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:44:41,725 - root - INFO - 请求参数为:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:44:42,879 - root - INFO - 接口测试结果为:{'code': -6, 'msg': '系统内部错误,请稍后重试', 'success': False}
2022-09-16 18:44:42,880 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:44:42,881 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{\n "orderSource": "1",\n "data": "{\\"prtNo\\":\\"M1201F0002454A88\\",\\"orderCode\\":\\"539b4dd2177b41f890cd8b6a5038386f\\",\\"scanTime\\":1662536957045,\\"sysType\\":\\"1\\"}"\n}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId,orderSource,systemSource'}
2022-09-16 18:44:42,881 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:44:42,882 - root - INFO - 可变参数的信息为:{'#2.token': '7f96d489e67748caa925e6b4900d0d20'}
2022-09-16 18:44:42,883 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '7f96d489e67748caa925e6b4900d0d20'}
2022-09-16 18:44:42,883 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': '7f96d489e67748caa925e6b4900d0d20'}
2022-09-16 18:44:42,884 - root - INFO - 请求参数为:{'orderSource': '1', 'data': '{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}'}
2022-09-16 18:44:42,957 - root - INFO - 接口测试结果为:{'code': -6, 'msg': '系统内部错误,请稍后重试', 'success': False}
2022-09-16 18:46:58,993 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 18:46:58,995 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 18:46:59,183 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 18:46:59,183 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 18:46:59,184 - root - INFO - 请求头为:
2022-09-16 18:46:59,184 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 18:47:00,945 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 18:47:00,946 - root - INFO - 断言处理结束!!!
2022-09-16 18:47:00,951 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:47:00,952 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 18:47:00,954 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 18:47:00,954 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 18:47:00,955 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 18:47:00,955 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 18:47:00,956 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 18:47:00,956 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:47:00,957 - root - INFO - 请求参数为:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 18:47:01,589 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': 'ea46b3ef461641d5a3c33fe74fbbc843', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 18:47:01,590 - root - INFO - 断言处理结束!!!
2022-09-16 18:47:01,590 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:47:01,591 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 18:47:01,592 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 18:47:01,592 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{\n "orderSource": "1",\n "data": "{\\"prtNo\\":\\"M1201F0002454A88\\",\\"orderCode\\":\\"539b4dd2177b41f890cd8b6a5038386f\\",\\"scanTime\\":1662536957045,\\"sysType\\":\\"1\\"}"\n}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId,orderSource,systemSource'}
2022-09-16 18:47:01,592 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:47:01,592 - root - INFO - 可变参数的信息为:{'#2.token': 'ea46b3ef461641d5a3c33fe74fbbc843'}
2022-09-16 18:47:01,593 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'ea46b3ef461641d5a3c33fe74fbbc843'}
2022-09-16 18:47:01,593 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'ea46b3ef461641d5a3c33fe74fbbc843'}
2022-09-16 18:47:01,593 - root - INFO - 请求参数为:{'orderSource': '1', 'data': '{"prtNo":"M1201F0002454A88","orderCode":"539b4dd2177b41f890cd8b6a5038386f","scanTime":1662536957045,"sysType":"1"}'}
2022-09-16 18:47:04,127 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'taskId': 'b9063991a1984e44a67bd74ab85da186', 'orderSource': 1, 'systemSource': '', 'orderDetails': [{'title': '销售人员信息', 'key': '', 'content': [{'title': '销售人员姓名', 'key': '', 'content': '天津测试', 'show': 1}, {'title': '销售人员工号', 'key': '', 'content': '1200002681', 'show': 1}, {'title': '销售人员所属机构名称', 'key': '', 'content': '天津', 'show': 1}, {'title': '机构类型', 'key': '', 'content': '保险公司', 'show': 1}, {'title': '保险公司名称', 'key': '', 'content': '光大永明人寿保险有限公司', 'show': 1}, {'title': '公司名称', 'key': '', 'content': '光大永明人寿保险有限公司天津分公司', 'show': 1}], 'show': 0}, {'title': '投保人信息', 'key': '', 'content': [{'title': '投保人姓名', 'key': '', 'content': '天津测试', 'show': 1}, {'title': '投保人性别', 'key': '', 'content': '男', 'show': 1}, {'title': '投保人尊称', 'key': '', 'content': '先生', 'show': 1}, {'title': '投保人年龄', 'key': '', 'content': 60, 'show': 1}, {'title': '投保人职业', 'key': '', 'content': '党政机关、企事业单位负责人和行政管理人员', 'show': 1}, {'title': '投保人出生日期', 'key': '', 'content': '1962-06-01', 'show': 1}, {'title': '投保人证件类型', 'key': '', 'content': '身份证', 'show': 1}, {'title': '投保人证件号码', 'key': '', 'content': '120101196206010017', 'show': 1}, {'title': '投保人有效通讯地址', 'key': '', 'content': '天津天津市和平233水电费规范化234', 'show': 1}, {'title': '投保人电话号码', 'key': '', 'content': '15236547788', 'show': 1}], 'show': 0}, {'title': '订单基本信息', 'key': '', 'content': [{'title': '投保单号', 'key': '', 'content': 'M1201F0002454A88', 'show': 1}, {'title': '保单类型', 'key': '', 'content': '非自保件', 'show': 1}, {'title': '订单来源', 'key': '', 'content': '扫码入件', 'show': 1}, {'title': '双录创建时间', 'key': '', 'content': '2022-09-16', 'show': 1}, {'title': '销售渠道', 'key': '', 'content': '个险渠道', 'show': 1}, {'title': '机构名称', 'key': '', 'content': '天津', 'show': 1}, {'title': '第一年末现金价值', 'key': '', 'content': '0', 'show': 1}, {'title': '机构代码', 'key': '', 'content': '861200', 'show': 1}, {'title': '签名方式', 'key': '', 'content': '电子签名', 'show': 1}], 'show': 0}, {'title': '投保基本信息1', 'key': '', 'content': [{'title': '产品名称', 'key': '', 'content': '光大永明增利宝(庆典版)终身寿险(万能型)', 'show': 1}, {'title': '产品代码', 'key': '', 'content': 'LWU006', 'show': 1}, {'title': '产品种类', 'key': '', 'content': '主险', 'show': 1}, {'title': '缴费方式', 'key': '', 'content': '趸缴', 'show': 1}, {'title': '缴费期限', 'key': '', 'content': '趸交', 'show': 1}, {'title': '保险期限', 'key': '', 'content': '保终身', 'show': 1}, {'title': '每期缴费金额', 'key': '', 'content': '', 'show': 1}, {'title': '产品类型', 'key': '', 'content': '万能型', 'show': 1}, {'title': '缴费频次', 'key': '', 'content': '趸', 'show': 1}, {'title': '首年保费总计', 'key': '', 'content': '100.00', 'show': 1}, {'title': '保费', 'key': '', 'content': '100.00', 'show': 1}, {'title': '被保人姓名', 'key': '', 'content': '天津测试', 'show': 1}, {'title': '被保人性别', 'key': '', 'content': '男', 'show': 1}, {'title': '被保人尊称', 'key': '', 'content': '先生', 'show': 1}, {'title': '被保人出生日期', 'key': '', 'content': '1962-06-01', 'show': 1}, {'title': '被保人年龄', 'key': '', 'content': '60', 'show': 1}, {'title': '被保人职业', 'key': '', 'content': '党政机关、企事业单位负责人和行政管理人员', 'show': 1}, {'title': '被保人证件类型', 'key': '', 'content': '身份证', 'show': 1}, {'title': '被保人证件号码', 'key': '', 'content': '120101196206010017', 'show': 1}, {'title': '被保人电话号码', 'key': '', 'content': '15236547788', 'show': 1}, {'title': '被保人有效通讯地址', 'key': '', 'content': '天津天津市和平233水电费规范化234', 'show': 1}, {'title': '被保人与投保人关系', 'key': '', 'content': '本人', 'show': 1}], 'show': 0}]}}
2022-09-16 18:47:04,128 - root - INFO - 断言处理结束!!!
2022-09-16 18:47:04,130 - root - INFO - 响应信息存储完毕!!!
2022-09-16 18:47:04,131 - root - INFO - ***************【扫码入件】接口测试结束***************
2022-09-16 18:47:04,132 - root - INFO - ***************【创建订单】接口测试开始***************
2022-09-16 18:47:04,132 - root - INFO - 接口测试用例为:{'id': 4.0, 'depend_id': 3.0, 'positive_case': '是', 'desc': '创建订单', 'uri': '/cl/order/add', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{\n "taskId": "#3.taskId",\n "orderSource": "#3.orderSource",\n "systemSource": "#3.systemSource"\n}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 18:47:04,133 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 18:47:04,133 - root - INFO - 可变参数的信息为:{'#2.token': 'ea46b3ef461641d5a3c33fe74fbbc843'}
2022-09-16 18:47:04,134 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'ea46b3ef461641d5a3c33fe74fbbc843'}
2022-09-16 18:47:04,134 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'ea46b3ef461641d5a3c33fe74fbbc843'}
2022-09-16 18:47:04,135 - root - INFO - 需要替换的变量信息为:['#3.taskId', '#3.orderSource', '#3.systemSource']
2022-09-16 18:47:04,136 - root - INFO - 可变参数的信息为:{'#3.taskId': 'b9063991a1984e44a67bd74ab85da186', '#3.orderSource': 1, '#3.systemSource': ''}
2022-09-16 18:47:04,136 - root - INFO - 可变参数替换完毕:{'taskId': 'b9063991a1984e44a67bd74ab85da186', 'orderSource': 1, 'systemSource': ''}
2022-09-16 18:47:04,137 - root - INFO - 请求参数为:{'taskId': 'b9063991a1984e44a67bd74ab85da186', 'orderSource': 1, 'systemSource': ''}
2022-09-16 18:47:04,675 - root - INFO - 接口测试结果为:{'code': 2969, 'msg': '话术未上架', 'success': False, 'result': None}
2022-09-16 19:10:21,192 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载中......
2022-09-16 19:10:21,193 - root - INFO - /Users/jingyuxiang/Desktop/code/python/SituApiSupport/config/db.ini 文件加载成功......
2022-09-16 19:10:21,386 - root - INFO - ***************【查询表单配置】接口测试开始***************
2022-09-16 19:10:21,387 - root - INFO - 接口测试用例为:{'id': 1.0, 'depend_id': 0.0, 'positive_case': '是', 'desc': '查询表单配置', 'uri': '/cl/formconf/form', 'method': 'GET', 'headers': '', 'params': '{"type": 1,"platformType": 1}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'formId,md5'}
2022-09-16 19:10:21,387 - root - INFO - 请求头为:
2022-09-16 19:10:21,387 - root - INFO - 请求参数为:{'type': 1, 'platformType': 1}
2022-09-16 19:10:21,520 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'formId': 1, 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'list': [{'componetId': 2967, 'type': 'left_deck', 'title': '', 'key': 'left_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/520ba7b14fdb46399bad7a667cab20b8.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2968, 'type': 'right_deck', 'title': '', 'key': 'right_deck', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/ede6445cf3dc44f4a7292c7250c18c14.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2969, 'type': 'reset_pwd', 'title': '忘记密码', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 2970, 'type': 'active_account', 'title': '账号激活', 'key': '', 'url': '', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '', 'required': 0, 'minLength': 0, 'length': 0, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 4, 'type': 'text_01', 'title': '工号/账号', 'key': 'username', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/6fca88ed2e6b4ffe8104638cb18ee343.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的工号', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}, {'componetId': 5, 'type': 'password', 'title': '密码', 'key': 'password', 'url': 'https://product-component-dev.oss-cn-beijing.aliyuncs.com/product-component-dev/image/appimage/2d909e5db39145d2a202485f18d62335.png', 'backgroundUrl': '', 'data': None, 'value': '', 'placeholder': '请输入您的密码', 'required': 1, 'minLength': 0, 'length': 30, 'hideComponetId': 0, 'showValue': None, 'regex': '', 'hintMsg': '', 'lengthHintMsg': '', 'nonHintMsg': ''}]}}
2022-09-16 19:10:21,521 - root - INFO - 断言处理结束!!!
2022-09-16 19:10:21,523 - root - INFO - 响应信息存储完毕!!!
2022-09-16 19:10:21,524 - root - INFO - ***************【查询表单配置】接口测试结束***************
2022-09-16 19:10:21,524 - root - INFO - ***************【APP登录】接口测试开始***************
2022-09-16 19:10:21,524 - root - INFO - 接口测试用例为:{'id': 2.0, 'depend_id': 1.0, 'positive_case': '是', 'desc': 'APP登录', 'uri': '/cl/auth/login', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592"}', 'params': '{"type": 1,"platformType": "1","md5": "#1.md5","username": "1200002681","password": "12345678"}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'token'}
2022-09-16 19:10:21,525 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592'}
2022-09-16 19:10:21,525 - root - INFO - 需要替换的变量信息为:['#1.md5']
2022-09-16 19:10:21,525 - root - INFO - 可变参数的信息为:{'#1.md5': '24e345fbfb20881bdbd73b2e5a19a775'}
2022-09-16 19:10:21,525 - root - INFO - 可变参数替换完毕:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 19:10:21,526 - root - INFO - 请求参数为:{'type': 1, 'platformType': '1', 'md5': '24e345fbfb20881bdbd73b2e5a19a775', 'username': '1200002681', 'password': '12345678'}
2022-09-16 19:10:22,016 - root - INFO - 接口测试结果为:{'code': 0, 'msg': 'OK', 'success': True, 'result': {'name': '天津测试', 'token': 'fa0c907880eb431aa6d10e8bf6be54d1', 'role': 32, 'marketingChannel': '个险渠道', 'branchId': 14, 'branchName': '天津分公司', 'subBranchId': 83, 'subBranchName': '天津', 'directlyAgencyName': '天津', 'directlyAgencyId': 83, 'reset': 0, 'phoneNum': '', 'idCardType': 0, 'idCardNo': '', 'employeeId': '', 'licensed': ''}}
2022-09-16 19:10:22,016 - root - INFO - 断言处理结束!!!
2022-09-16 19:10:22,017 - root - INFO - 响应信息存储完毕!!!
2022-09-16 19:10:22,018 - root - INFO - ***************【APP登录】接口测试结束***************
2022-09-16 19:10:22,019 - root - INFO - ***************【扫码入件】接口测试开始***************
2022-09-16 19:10:22,019 - root - INFO - 接口测试用例为:{'id': 3.0, 'depend_id': 2.0, 'positive_case': '是', 'desc': '扫码入件', 'uri': '/cl/order/or/code', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{\n"prtNo": "M3101F00021A4A88",\n"orderCode": "27f3c549b0da4d6c8be27cfa359da563",\n"scanTime": 1660547943601,\n"sysType": "1"\n}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': 'taskId,orderSource,systemSource'}
2022-09-16 19:10:22,020 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 19:10:22,021 - root - INFO - 可变参数的信息为:{'#2.token': 'fa0c907880eb431aa6d10e8bf6be54d1'}
2022-09-16 19:10:22,021 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'fa0c907880eb431aa6d10e8bf6be54d1'}
2022-09-16 19:10:22,022 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'fa0c907880eb431aa6d10e8bf6be54d1'}
2022-09-16 19:10:22,022 - root - INFO - 请求参数为:{'prtNo': 'M3101F00021A4A88', 'orderCode': '27f3c549b0da4d6c8be27cfa359da563', 'scanTime': 1660547943601, 'sysType': '1'}
2022-09-16 19:10:22,158 - root - INFO - 接口测试结果为:{'code': -4, 'msg': '二维码解析失败', 'success': False, 'result': None}
2022-09-16 19:10:22,164 - root - INFO - ***************【创建订单】接口测试开始***************
2022-09-16 19:10:22,164 - root - INFO - 接口测试用例为:{'id': 4.0, 'depend_id': 3.0, 'positive_case': '是', 'desc': '创建订单', 'uri': '/cl/order/add', 'method': 'POST', 'headers': '{"Content-Type": "application/json","X-Device-Num": "5f647684-f1f9-41ef-8775-921afe231592","X-Auth-Token":"#2.token"}', 'params': '{\n "taskId": "#3.taskId",\n "orderSource": "#3.orderSource",\n "systemSource": "#3.systemSource"\n}', 'response_assert': '{"code":0,"msg":"OK"}', 'save_args': ''}
2022-09-16 19:10:22,165 - root - INFO - 需要替换的变量信息为:['#2.token']
2022-09-16 19:10:22,165 - root - INFO - 可变参数的信息为:{'#2.token': 'fa0c907880eb431aa6d10e8bf6be54d1'}
2022-09-16 19:10:22,166 - root - INFO - 可变参数替换完毕:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'fa0c907880eb431aa6d10e8bf6be54d1'}
2022-09-16 19:10:22,166 - root - INFO - 请求头为:{'Content-Type': 'application/json', 'X-Device-Num': '5f647684-f1f9-41ef-8775-921afe231592', 'X-Auth-Token': 'fa0c907880eb431aa6d10e8bf6be54d1'}
2022-09-16 19:10:22,166 - root - INFO - 需要替换的变量信息为:['#3.taskId', '#3.orderSource', '#3.systemSource']
2022-09-16 19:10:22,167 - root - INFO - 可变参数的信息为:{'#3.taskId': 'b9063991a1984e44a67bd74ab85da186', '#3.orderSource': 1, '#3.systemSource': ''}
2022-09-16 19:10:22,167 - root - INFO - 可变参数替换完毕:{'taskId': 'b9063991a1984e44a67bd74ab85da186', 'orderSource': 1, 'systemSource': ''}
2022-09-16 19:10:22,167 - root - INFO - 请求参数为:{'taskId': 'b9063991a1984e44a67bd74ab85da186', 'orderSource': 1, 'systemSource': ''}
2022-09-16 19:10:24,090 - root - INFO - 接口测试结果为:{'code': 2969, 'msg': '话术未上架', 'success': False, 'result': None}