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
2023-07-24 18:06:53,451 - [test_01_login.py-->line:61] - ERROR: 用例标题登陆成功,通过
2023-07-24 18:06:53,710 - [test_01_login.py-->line:61] - ERROR: 用例标题手机号填写错误的,通过
2023-07-24 18:06:53,934 - [test_01_login.py-->line:61] - ERROR: 用例标题手机号不进行填写,通过
2023-07-24 18:06:54,340 - [test_01_login.py-->line:61] - ERROR: 用例标题密码填写错误,通过
2023-07-24 18:06:54,596 - [test_01_login.py-->line:61] - ERROR: 用例标题密码不进行填写,通过
2023-07-24 18:06:55,368 - [test_02_system_management.py-->line:95] - INFO: 用例新增院系成功,执行通过
2023-07-24 18:06:55,694 - [test_02_system_management.py-->line:95] - INFO: 用例院系名称未填写,执行通过
2023-07-24 18:06:56,037 - [test_02_system_management.py-->line:95] - INFO: 用例院系名称重复,执行通过
2023-07-24 18:06:56,361 - [test_02_system_management.py-->line:95] - INFO: 用例院系名称长度不可大于30位,执行通过
2023-07-24 18:06:56,652 - [test_02_system_management.py-->line:95] - INFO: 用例院系代码重复,执行通过
2023-07-24 18:06:56,962 - [test_02_system_management.py-->line:95] - INFO: 用例院系代码不能为空,执行通过
2023-07-24 18:06:57,283 - [test_02_system_management.py-->line:95] - INFO: 用例院系代码长度不可大于30,执行通过
2023-07-24 18:06:57,624 - [test_02_system_management.py-->line:95] - INFO: 用例新增院系成功,执行通过
2023-07-24 18:06:57,953 - [test_02_system_management.py-->line:135] - INFO: 用例查看院系列表,执行通过
2023-07-24 18:07:00,025 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业成功,执行通过
2023-07-24 18:07:01,543 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,院系未填写,执行通过
2023-07-24 18:07:03,174 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,院系不存在,执行通过
2023-07-24 18:07:04,780 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业名称未填写,执行通过
2023-07-24 18:07:06,420 - [test_02_system_management.py-->line:209] - INFO: 用例专业名称长度不能大于30,执行通过
2023-07-24 18:07:07,945 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业名称重复,执行通过
2023-07-24 18:07:09,645 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业代码重复,执行通过
2023-07-24 18:07:11,218 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业代码未填写,执行通过
2023-07-24 18:07:12,761 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业代码长度不能大于30,执行通过
2023-07-24 18:07:14,306 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,学科门类未填写,执行通过
2023-07-24 18:07:15,982 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,学科门类填写错误,执行通过
2023-07-24 18:07:17,826 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业成功,执行通过
2023-07-24 18:07:18,567 - [test_02_system_management.py-->line:275] - INFO: 用例新增学年学期成功,执行通过
2023-07-24 18:07:18,882 - [test_02_system_management.py-->line:275] - INFO: 用例学年名称不可超过30字,执行通过
2023-07-24 18:07:19,281 - [test_02_system_management.py-->line:275] - INFO: 用例学年学期开始时间和结束时间不可交叉,执行通过
2023-07-24 18:07:19,818 - [test_02_system_management.py-->line:275] - INFO: 用例学年未填写,执行通过
2023-07-24 18:07:20,207 - [test_02_system_management.py-->line:275] - INFO: 用例学期未填写,执行通过
2023-07-24 18:07:20,565 - [test_02_system_management.py-->line:275] - INFO: 用例学期开始时间未填写,执行通过
2023-07-24 18:07:20,898 - [test_02_system_management.py-->line:275] - INFO: 用例学期结束时间未填写,执行通过
2023-07-24 18:07:21,242 - [test_02_system_management.py-->line:275] - INFO: 用例学期不可超过5个学期,执行通过
2023-07-24 18:07:21,568 - [test_02_system_management.py-->line:275] - INFO: 用例新增学年学期成功,执行通过
2023-07-24 18:07:24,316 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例新增教师,执行通过
2023-07-24 18:07:24,683 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师姓名不能为空,执行通过
2023-07-24 18:07:24,996 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师手机号不能为空,执行通过
2023-07-24 18:07:25,299 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师证件类型不能为空,执行通过
2023-07-24 18:07:25,614 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师证件号码不能为空,执行通过
2023-07-24 18:07:26,108 - [test_03_teaching_affairs.py-->line:100] - ERROR: 用例标题教师角色不能为空,不通过
2023-07-24 18:07:26,108 - [test_03_teaching_affairs.py-->line:101] - ERROR: '教师角色不能为空' != 'success'
- 教师角色不能为空
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_03_teaching_affairs.py", line 95, in test_add_teacher_info
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '教师角色不能为空' != 'success'
- 教师角色不能为空
+ success

2023-07-24 18:07:26,604 - [test_03_teaching_affairs.py-->line:100] - ERROR: 用例标题教师角色不能为空,不通过
2023-07-24 18:07:26,604 - [test_03_teaching_affairs.py-->line:101] - ERROR: '教师角色不能为空' != '该身份证号已存在,请确认'
- 教师角色不能为空
+ 该身份证号已存在,请确认
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_03_teaching_affairs.py", line 95, in test_add_teacher_info
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '教师角色不能为空' != '该身份证号已存在,请确认'
- 教师角色不能为空
+ 该身份证号已存在,请确认

2023-07-24 18:07:27,087 - [test_03_teaching_affairs.py-->line:100] - ERROR: 用例标题教师角色不能为空,不通过
2023-07-24 18:07:27,087 - [test_03_teaching_affairs.py-->line:101] - ERROR: '教师角色不能为空' != '该身份证号已存在,请确认'
- 教师角色不能为空
+ 该身份证号已存在,请确认
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_03_teaching_affairs.py", line 95, in test_add_teacher_info
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '教师角色不能为空' != '该身份证号已存在,请确认'
- 教师角色不能为空
+ 该身份证号已存在,请确认

2023-07-24 18:07:27,588 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师性别为空,添加成功,执行通过
2023-07-24 18:07:28,054 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师入职时间为空,添加成功,执行通过
2023-07-24 18:07:28,611 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师邮箱为空,添加成功,执行通过
2023-07-24 18:07:29,099 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师工号为空,添加成功,执行通过
2023-07-24 18:07:29,574 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例新增教师,执行通过
2023-07-24 18:07:33,512 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例新增班级,执行通过
2023-07-24 18:07:33,824 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例班级名称已存在,执行通过
2023-07-24 18:07:34,150 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例学制填写错误,最多为10年,执行通过
2023-07-24 18:07:34,456 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例学制填写错误,最多为10年,执行通过
2023-07-24 18:07:34,767 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例入学年份未填写,执行通过
2023-07-24 18:07:35,090 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例专业未填写,执行通过
2023-07-24 18:07:35,409 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例专业填写错误,执行通过
2023-07-24 18:07:35,776 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例院系可以为空,执行通过
2023-07-24 18:07:36,086 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例院系下没有该专业,执行通过
2023-07-24 18:07:36,422 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例教师未填写,添加成功,执行通过
2023-07-24 18:07:36,787 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例教师填写错误,执行通过
2023-07-24 18:07:37,130 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例新增班级,执行通过
2023-07-24 18:07:40,631 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例新增课程,执行通过
2023-07-24 18:07:40,946 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例课程名称不能为空,执行通过
2023-07-24 18:07:41,248 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例课程名称不能超过30字,执行通过
2023-07-24 18:07:41,556 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例实践类型不能为空,执行通过
2023-07-24 18:07:41,864 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例院系不能为空,执行通过
2023-07-24 18:07:42,185 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例院系不能为空,执行通过
2023-07-24 18:07:42,507 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例学分不能为空,执行通过
2023-07-24 18:07:42,826 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例修读性质不能为空,执行通过
2023-07-24 18:07:43,117 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例修读性质填写错误,执行通过
2023-07-24 18:07:43,425 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例学时(周数)不能为空,执行通过
2023-07-24 18:07:43,738 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例学期不能为空,执行通过
2023-07-24 18:07:44,053 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例专业不能为空,执行通过
2023-07-24 18:07:44,365 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例专业填写错误,执行通过
2023-07-24 18:07:44,703 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例新增课程,执行通过
2023-07-24 18:07:49,006 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例新增学生成功,执行通过
2023-07-24 18:07:49,293 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例学生姓名未填写失败,执行通过
2023-07-24 18:07:49,622 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例学生学号未填写失败,执行通过
2023-07-24 18:07:50,012 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例手机号未填写,添加成功,执行通过
2023-07-24 18:07:50,310 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例入学年份未填写,添加失败,执行通过
2023-07-24 18:07:50,642 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例班级未填写,添加失败,执行通过
2023-07-24 18:07:50,988 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例证件类型和证件号码都没填写,添加成功,执行通过
2023-07-24 18:07:51,275 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例证件类型未填,证件号码填写,添加失败,执行通过
2023-07-24 18:07:51,604 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例证件类型填写,证件号码未填写,添加失败,执行通过
2023-07-24 18:07:52,000 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例性别未填写,添加成功,执行通过
2023-07-24 18:07:52,551 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例学籍状态未填写,添加成功,执行通过
2023-07-24 18:07:52,941 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例培养方向未填写,添加成功,执行通过
2023-07-24 18:07:53,282 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例其他-备注未填写,添加成功,执行通过
2023-07-24 18:07:53,776 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例院系ID未填写,添加失败,执行通过
2023-07-24 18:07:54,094 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例专业ID未填写添加失败,执行通过
2023-07-24 18:07:54,432 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例新增学生成功,执行通过
2023-07-24 18:08:00,793 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例新增计划成功,执行通过
2023-07-24 18:08:01,140 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例计划名称不能为空,执行通过
2023-07-24 18:08:01,450 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例计划名称不能大于30位,执行通过
2023-07-24 18:08:01,739 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例课程不能为空,执行通过
2023-07-24 18:08:02,153 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例课程不存在,执行通过
2023-07-24 18:08:02,489 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例计划开始时间不能为空,执行通过
2023-07-24 18:08:02,806 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例计划结束时间不能为空,执行通过
2023-07-24 18:08:03,159 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习目的为空,添加成功,执行通过
2023-07-24 18:08:03,466 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习目的不能超过100位,执行通过
2023-07-24 18:08:03,845 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例其他(备注)未填写,添加成功,执行通过
2023-07-24 18:08:04,150 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例其他(备注)长度不能超过200位,执行通过
2023-07-24 18:08:04,489 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习形式不能为空,执行通过
2023-07-24 18:08:04,840 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习形式为集中,添加成功--集中,执行通过
2023-07-24 18:08:05,167 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习形式为自主,添加成功--自主,执行通过
2023-07-24 18:08:05,473 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习报告提交开始时间不能为空,执行通过
2023-07-24 18:08:05,774 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习报告提交结束时间不能为空,执行通过
2023-07-24 18:08:06,133 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例报告模块路径为空,添加成功,执行通过
2023-07-24 18:08:06,481 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习内容为空,添加成功,执行通过
2023-07-24 18:08:06,782 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习内容长度不能大于500位,执行通过
2023-07-24 18:08:07,087 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例院系不能为空,执行通过
2023-07-24 18:08:07,413 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例专业填写为空,添加成功,执行通过
2023-07-24 18:08:07,715 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例学期不能为空,执行通过
2023-07-24 18:08:08,069 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例学期填写错误,执行通过
2023-07-24 18:08:08,430 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例新增计划成功,执行通过
2023-07-24 18:08:08,794 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例创建计划,方便使用的数据,自主,执行通过
2023-07-24 18:08:10,158 - [test_04_Internship_preparation.py-->line:209] - INFO: 用例发布计划,执行通过
2023-07-24 18:08:13,118 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(需要报名审核-允许自行填报企业信息),执行通过
2023-07-24 18:08:13,507 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(需要报名审核-不允许自行填报企业信息),执行通过
2023-07-24 18:08:13,932 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(不需要报名审核-允许自行填报企业信息),执行通过
2023-07-24 18:08:14,417 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(不需要报名审核-不允许自行填报企业信息),执行通过
2023-07-24 18:08:14,759 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例项目名称不能为空,执行通过
2023-07-24 18:08:15,060 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例项目名称不能大于30位,执行通过
2023-07-24 18:08:15,401 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习计划不能为空,执行通过
2023-07-24 18:08:15,709 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习计划不匹配,执行通过
2023-07-24 18:08:16,016 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习形式不能为空,执行通过
2023-07-24 18:08:16,380 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习形式填写错误,执行通过
2023-07-24 18:08:16,778 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习要求不填写,添加成功,执行通过
2023-07-24 18:08:17,192 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习要求不能大于500,执行通过
2023-07-24 18:08:17,554 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习开始时间不能为空,执行通过
2023-07-24 18:08:17,891 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习结束时间不能为空,执行通过
2023-07-24 18:08:18,235 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例项目开始日期需早于项目结束日期,执行通过
2023-07-24 18:08:18,592 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:18,592 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核填写错误' != 'success'
- 报名审核填写错误
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核填写错误' != 'success'
- 报名审核填写错误
+ success

2023-07-24 18:08:19,084 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:19,084 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核填写错误' != '项目名称已存在'
- 报名审核填写错误
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核填写错误' != '项目名称已存在'
- 报名审核填写错误
+ 项目名称已存在

2023-07-24 18:08:19,562 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:19,562 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核填写错误' != '项目名称已存在'
- 报名审核填写错误
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核填写错误' != '项目名称已存在'
- 报名审核填写错误
+ 项目名称已存在

2023-07-24 18:08:20,333 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:20,333 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核不能为空' != 'success'
- 报名审核不能为空
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核不能为空' != 'success'
- 报名审核不能为空
+ success

2023-07-24 18:08:20,879 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:20,879 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核不能为空' != '项目名称已存在'
- 报名审核不能为空
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核不能为空' != '项目名称已存在'
- 报名审核不能为空
+ 项目名称已存在

2023-07-24 18:08:21,366 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:21,366 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核不能为空' != '项目名称已存在'
- 报名审核不能为空
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核不能为空' != '项目名称已存在'
- 报名审核不能为空
+ 项目名称已存在

2023-07-24 18:08:21,707 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:21,708 - [test_04_Internship_preparation.py-->line:293] - ERROR: '实习计划不匹配' != 'success'
- 实习计划不匹配
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '实习计划不匹配' != 'success'
- 实习计划不匹配
+ success

2023-07-24 18:08:22,185 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:22,185 - [test_04_Internship_preparation.py-->line:293] - ERROR: '实习计划不匹配' != '项目名称已存在'
- 实习计划不匹配
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '实习计划不匹配' != '项目名称已存在'
- 实习计划不匹配
+ 项目名称已存在

2023-07-24 18:08:22,677 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:22,677 - [test_04_Internship_preparation.py-->line:293] - ERROR: '实习计划不匹配' != '项目名称已存在'
- 实习计划不匹配
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '实习计划不匹配' != '项目名称已存在'
- 实习计划不匹配
+ 项目名称已存在

2023-07-24 18:08:23,219 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:23,220 - [test_04_Internship_preparation.py-->line:293] - ERROR: '自行填报企业信息不能为空' != 'success'
- 自行填报企业信息不能为空
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '自行填报企业信息不能为空' != 'success'
- 自行填报企业信息不能为空
+ success

2023-07-24 18:08:23,722 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:23,722 - [test_04_Internship_preparation.py-->line:293] - ERROR: '自行填报企业信息不能为空' != '项目名称已存在'
- 自行填报企业信息不能为空
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '自行填报企业信息不能为空' != '项目名称已存在'
- 自行填报企业信息不能为空
+ 项目名称已存在

2023-07-24 18:08:24,221 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-24 18:08:24,222 - [test_04_Internship_preparation.py-->line:293] - ERROR: '自行填报企业信息不能为空' != '项目名称已存在'
- 自行填报企业信息不能为空
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '自行填报企业信息不能为空' != '项目名称已存在'
- 自行填报企业信息不能为空
+ 项目名称已存在

2023-07-24 18:08:24,558 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例参与学生不能为空,执行通过
2023-07-24 18:08:24,889 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例参与学生填写错误,执行通过
2023-07-24 18:08:25,270 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例关联指定老师不填写,添加成功,执行通过
2023-07-24 18:08:25,615 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例关联指定老师填写错误,执行通过
2023-07-24 18:08:26,041 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例推荐岗位不能为空,执行通过
2023-07-24 18:08:26,497 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例推荐岗位填写错误,执行通过
2023-07-24 18:08:26,944 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(需要报名审核-允许自行填报企业信息),执行通过
2023-07-24 18:08:27,339 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例创建项目,方便使用的数据,执行通过
2023-07-24 18:08:27,720 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例创建项目,方便使用的数据,执行通过
2023-07-24 18:08:29,500 - [test_04_Internship_preparation.py-->line:363] - INFO: 用例发布项目,执行通过
2023-07-24 18:08:31,237 - [test_05_student_practice.py-->line:64] - ERROR: 用例标题查看全部实习,不通过
2023-07-24 18:08:31,237 - [test_05_student_practice.py-->line:65] - ERROR: 'success' != '请求异常!'
- success
+ 请求异常!
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_05_student_practice.py", line 59, in test01select_allpatice
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: 'success' != '请求异常!'
- success
+ 请求异常!

2023-07-24 18:08:32,196 - [test_05_student_practice.py-->line:71] - INFO: 用例查看全部实习,执行通过
2023-07-24 18:08:34,722 - [test_05_student_practice.py-->line:129] - INFO: 用例学生提交报名岗位,执行通过
2023-07-24 18:08:35,837 - [test_06_internship_manage.py-->line:71] - INFO: 用例查看学校报名审核-待审核,执行通过
2023-07-24 18:08:37,691 - [test_06_internship_manage.py-->line:127] - INFO: 用例审核成功(学校),执行通过
2023-07-24 18:08:39,592 - [test_06_internship_manage.py-->line:290] - INFO: 用例学生填写开始实习时间成功,执行通过
2023-07-24 18:08:40,872 - [test_06_internship_manage.py-->line:349] - INFO: 用例实习申请审核成功(学校),执行通过
2023-07-24 18:08:42,589 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-日志标题不能为空,执行通过
2023-07-24 18:08:43,750 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-日志标题不能超过30位,执行通过
2023-07-24 18:08:44,977 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-实习单不存在,执行通过
2023-07-24 18:08:46,346 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-实习单不能为空,执行通过
2023-07-24 18:08:47,662 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-周日志种类不能为空,执行通过
2023-07-24 18:08:48,873 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-周日志时间不能为空,执行通过
2023-07-24 18:08:50,139 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-周志标题不能为空,执行通过
2023-07-24 18:08:51,651 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-周志标题不能超过30位,执行通过
2023-07-24 18:08:52,881 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-周志)-实习单不存在,执行通过
2023-07-24 18:08:54,242 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-实习单不能为空,执行通过
2023-07-24 18:08:55,371 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-周日志种类不能为空,执行通过
2023-07-24 18:08:56,622 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-周日志时间不能为空,执行通过
2023-07-24 18:08:57,893 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-月志标题不能为空,执行通过
2023-07-24 18:08:59,188 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-月志标题不能超过30位,执行通过
2023-07-24 18:09:00,489 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-实习单不存在,执行通过
2023-07-24 18:09:01,808 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-实习单不能为空,执行通过
2023-07-24 18:09:03,040 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-周日志种类不能为空,执行通过
2023-07-24 18:09:04,329 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-周日志时间不能为空,执行通过
2023-07-24 18:09:05,705 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-成功,执行通过
2023-07-24 18:09:06,983 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-成功,执行通过
2023-07-24 18:09:08,498 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-成功,执行通过
2023-07-24 18:09:11,338 - [test_06_internship_manage.py-->line:489] - INFO: 用例学校端批阅-(日志)-成功,执行通过
2023-07-24 18:09:13,858 - [test_06_internship_manage.py-->line:489] - INFO: 用例学校端批阅-(周志)-成功,执行通过
2023-07-24 18:09:16,030 - [test_06_internship_manage.py-->line:489] - INFO: 用例学校端批阅-(月志)-成功,执行通过
2023-07-24 18:09:17,864 - [test_06_internship_manage.py-->line:546] - INFO: 用例学生签到打卡成功,执行通过
2023-07-24 18:09:19,609 - [test_06_internship_manage.py-->line:607] - INFO: 用例学生填写请假申请(调休)成功,执行通过
2023-07-24 18:09:21,247 - [test_06_internship_manage.py-->line:669] - INFO: 用例教师审批请假申请通过,执行通过
2023-07-25 17:04:57,256 - [test_01_login.py-->line:61] - ERROR: 用例标题登陆成功,通过
2023-07-25 17:04:57,529 - [test_01_login.py-->line:61] - ERROR: 用例标题手机号填写错误的,通过
2023-07-25 17:04:57,827 - [test_01_login.py-->line:61] - ERROR: 用例标题手机号不进行填写,通过
2023-07-25 17:04:58,143 - [test_01_login.py-->line:61] - ERROR: 用例标题密码填写错误,通过
2023-07-25 17:04:58,389 - [test_01_login.py-->line:61] - ERROR: 用例标题密码不进行填写,通过
2023-07-25 17:04:59,036 - [test_02_system_management.py-->line:95] - INFO: 用例新增院系成功,执行通过
2023-07-25 17:04:59,359 - [test_02_system_management.py-->line:95] - INFO: 用例院系名称未填写,执行通过
2023-07-25 17:04:59,663 - [test_02_system_management.py-->line:95] - INFO: 用例院系名称重复,执行通过
2023-07-25 17:04:59,961 - [test_02_system_management.py-->line:95] - INFO: 用例院系名称长度不可大于30位,执行通过
2023-07-25 17:05:00,269 - [test_02_system_management.py-->line:95] - INFO: 用例院系代码重复,执行通过
2023-07-25 17:05:00,559 - [test_02_system_management.py-->line:95] - INFO: 用例院系代码不能为空,执行通过
2023-07-25 17:05:00,870 - [test_02_system_management.py-->line:95] - INFO: 用例院系代码长度不可大于30,执行通过
2023-07-25 17:05:01,198 - [test_02_system_management.py-->line:95] - INFO: 用例新增院系成功,执行通过
2023-07-25 17:05:01,560 - [test_02_system_management.py-->line:135] - INFO: 用例查看院系列表,执行通过
2023-07-25 17:05:03,193 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业成功,执行通过
2023-07-25 17:05:04,324 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,院系未填写,执行通过
2023-07-25 17:05:05,470 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,院系不存在,执行通过
2023-07-25 17:05:06,642 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业名称未填写,执行通过
2023-07-25 17:05:07,781 - [test_02_system_management.py-->line:209] - INFO: 用例专业名称长度不能大于30,执行通过
2023-07-25 17:05:09,050 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业名称重复,执行通过
2023-07-25 17:05:10,189 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业代码重复,执行通过
2023-07-25 17:05:11,319 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业代码未填写,执行通过
2023-07-25 17:05:12,653 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,专业代码长度不能大于30,执行通过
2023-07-25 17:05:13,833 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,学科门类未填写,执行通过
2023-07-25 17:05:15,091 - [test_02_system_management.py-->line:209] - INFO: 用例新增专业失败,学科门类填写错误,执行通过
2023-07-25 17:05:16,422 - [test_02_system_management.py-->line:201] - ERROR: 用例标题新增专业成功,不通过
2023-07-25 17:05:16,423 - [test_02_system_management.py-->line:202] - ERROR: 'success' != '专业名称已存在,请确认'
- success
+ 专业名称已存在,请确认
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_02_system_management.py", line 197, in test_add_specialty
    self.assertEqual(expected["msg"], res["msg"])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: 'success' != '专业名称已存在,请确认'
- success
+ 专业名称已存在,请确认

2023-07-25 17:05:17,645 - [test_02_system_management.py-->line:201] - ERROR: 用例标题新增专业成功,不通过
2023-07-25 17:05:17,646 - [test_02_system_management.py-->line:202] - ERROR: 'success' != '专业名称已存在,请确认'
- success
+ 专业名称已存在,请确认
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_02_system_management.py", line 197, in test_add_specialty
    self.assertEqual(expected["msg"], res["msg"])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: 'success' != '专业名称已存在,请确认'
- success
+ 专业名称已存在,请确认

2023-07-25 17:05:18,984 - [test_02_system_management.py-->line:201] - ERROR: 用例标题新增专业成功,不通过
2023-07-25 17:05:18,984 - [test_02_system_management.py-->line:202] - ERROR: 'success' != '专业名称已存在,请确认'
- success
+ 专业名称已存在,请确认
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_02_system_management.py", line 197, in test_add_specialty
    self.assertEqual(expected["msg"], res["msg"])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: 'success' != '专业名称已存在,请确认'
- success
+ 专业名称已存在,请确认

2023-07-25 17:05:19,900 - [test_02_system_management.py-->line:275] - INFO: 用例新增学年学期成功,执行通过
2023-07-25 17:05:20,205 - [test_02_system_management.py-->line:275] - INFO: 用例学年名称不可超过30字,执行通过
2023-07-25 17:05:20,513 - [test_02_system_management.py-->line:275] - INFO: 用例学年学期开始时间和结束时间不可交叉,执行通过
2023-07-25 17:05:20,816 - [test_02_system_management.py-->line:275] - INFO: 用例学年未填写,执行通过
2023-07-25 17:05:21,164 - [test_02_system_management.py-->line:275] - INFO: 用例学期未填写,执行通过
2023-07-25 17:05:21,481 - [test_02_system_management.py-->line:275] - INFO: 用例学期开始时间未填写,执行通过
2023-07-25 17:05:21,839 - [test_02_system_management.py-->line:275] - INFO: 用例学期结束时间未填写,执行通过
2023-07-25 17:05:22,414 - [test_02_system_management.py-->line:275] - INFO: 用例学期不可超过5个学期,执行通过
2023-07-25 17:05:23,025 - [test_02_system_management.py-->line:275] - INFO: 用例新增学年学期成功,执行通过
2023-07-25 17:05:25,648 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例新增教师,执行通过
2023-07-25 17:05:26,154 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师姓名不能为空,执行通过
2023-07-25 17:05:26,492 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师手机号不能为空,执行通过
2023-07-25 17:05:26,885 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师证件类型不能为空,执行通过
2023-07-25 17:05:27,285 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师证件号码不能为空,执行通过
2023-07-25 17:05:28,154 - [test_03_teaching_affairs.py-->line:100] - ERROR: 用例标题教师角色不能为空,不通过
2023-07-25 17:05:28,154 - [test_03_teaching_affairs.py-->line:101] - ERROR: '教师角色不能为空' != 'success'
- 教师角色不能为空
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_03_teaching_affairs.py", line 95, in test_add_teacher_info
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '教师角色不能为空' != 'success'
- 教师角色不能为空
+ success

2023-07-25 17:05:28,816 - [test_03_teaching_affairs.py-->line:100] - ERROR: 用例标题教师角色不能为空,不通过
2023-07-25 17:05:28,816 - [test_03_teaching_affairs.py-->line:101] - ERROR: '教师角色不能为空' != '该身份证号已存在,请确认'
- 教师角色不能为空
+ 该身份证号已存在,请确认
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_03_teaching_affairs.py", line 95, in test_add_teacher_info
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '教师角色不能为空' != '该身份证号已存在,请确认'
- 教师角色不能为空
+ 该身份证号已存在,请确认

2023-07-25 17:05:29,264 - [test_03_teaching_affairs.py-->line:100] - ERROR: 用例标题教师角色不能为空,不通过
2023-07-25 17:05:29,264 - [test_03_teaching_affairs.py-->line:101] - ERROR: '教师角色不能为空' != '该身份证号已存在,请确认'
- 教师角色不能为空
+ 该身份证号已存在,请确认
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_03_teaching_affairs.py", line 95, in test_add_teacher_info
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '教师角色不能为空' != '该身份证号已存在,请确认'
- 教师角色不能为空
+ 该身份证号已存在,请确认

2023-07-25 17:05:29,709 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师性别为空,添加成功,执行通过
2023-07-25 17:05:30,173 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师入职时间为空,添加成功,执行通过
2023-07-25 17:05:30,693 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师邮箱为空,添加成功,执行通过
2023-07-25 17:05:31,205 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例教师工号为空,添加成功,执行通过
2023-07-25 17:05:31,737 - [test_03_teaching_affairs.py-->line:108] - INFO: 用例新增教师,执行通过
2023-07-25 17:05:35,174 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例新增班级,执行通过
2023-07-25 17:05:35,586 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例班级名称已存在,执行通过
2023-07-25 17:05:35,953 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例学制填写错误,最多为10年,执行通过
2023-07-25 17:05:36,331 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例学制填写错误,最多为10年,执行通过
2023-07-25 17:05:36,612 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例入学年份未填写,执行通过
2023-07-25 17:05:36,987 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例专业未填写,执行通过
2023-07-25 17:05:37,374 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例专业填写错误,执行通过
2023-07-25 17:05:37,714 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例院系可以为空,执行通过
2023-07-25 17:05:38,614 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例院系下没有该专业,执行通过
2023-07-25 17:05:38,900 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例教师未填写,添加成功,执行通过
2023-07-25 17:05:39,235 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例教师填写错误,执行通过
2023-07-25 17:05:39,627 - [test_03_teaching_affairs.py-->line:196] - INFO: 用例新增班级,执行通过
2023-07-25 17:05:42,350 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例新增课程,执行通过
2023-07-25 17:05:42,638 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例课程名称不能为空,执行通过
2023-07-25 17:05:42,944 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例课程名称不能超过30字,执行通过
2023-07-25 17:05:43,229 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例实践类型不能为空,执行通过
2023-07-25 17:05:43,531 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例院系不能为空,执行通过
2023-07-25 17:05:43,823 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例院系不能为空,执行通过
2023-07-25 17:05:44,120 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例学分不能为空,执行通过
2023-07-25 17:05:44,425 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例修读性质不能为空,执行通过
2023-07-25 17:05:44,728 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例修读性质填写错误,执行通过
2023-07-25 17:05:45,029 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例学时(周数)不能为空,执行通过
2023-07-25 17:05:45,337 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例学期不能为空,执行通过
2023-07-25 17:05:45,642 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例专业不能为空,执行通过
2023-07-25 17:05:45,938 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例专业填写错误,执行通过
2023-07-25 17:05:46,265 - [test_03_teaching_affairs.py-->line:288] - INFO: 用例新增课程,执行通过
2023-07-25 17:05:49,922 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例新增学生成功,执行通过
2023-07-25 17:05:50,258 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例学生姓名未填写失败,执行通过
2023-07-25 17:05:50,575 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例学生学号未填写失败,执行通过
2023-07-25 17:05:51,235 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例手机号未填写,添加成功,执行通过
2023-07-25 17:05:51,561 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例入学年份未填写,添加失败,执行通过
2023-07-25 17:05:51,863 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例班级未填写,添加失败,执行通过
2023-07-25 17:05:52,220 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例证件类型和证件号码都没填写,添加成功,执行通过
2023-07-25 17:05:52,561 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例证件类型未填,证件号码填写,添加失败,执行通过
2023-07-25 17:05:52,866 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例证件类型填写,证件号码未填写,添加失败,执行通过
2023-07-25 17:05:53,275 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例性别未填写,添加成功,执行通过
2023-07-25 17:05:53,632 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例学籍状态未填写,添加成功,执行通过
2023-07-25 17:05:54,034 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例培养方向未填写,添加成功,执行通过
2023-07-25 17:05:54,406 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例其他-备注未填写,添加成功,执行通过
2023-07-25 17:05:54,717 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例院系ID未填写,添加失败,执行通过
2023-07-25 17:05:55,037 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例专业ID未填写添加失败,执行通过
2023-07-25 17:05:55,411 - [test_03_teaching_affairs.py-->line:394] - INFO: 用例新增学生成功,执行通过
2023-07-25 17:06:02,056 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例新增计划成功,执行通过
2023-07-25 17:06:02,389 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例计划名称不能为空,执行通过
2023-07-25 17:06:02,716 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例计划名称不能大于30位,执行通过
2023-07-25 17:06:03,066 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例课程不能为空,执行通过
2023-07-25 17:06:03,487 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例课程不存在,执行通过
2023-07-25 17:06:03,878 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例计划开始时间不能为空,执行通过
2023-07-25 17:06:04,234 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例计划结束时间不能为空,执行通过
2023-07-25 17:06:04,580 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习目的为空,添加成功,执行通过
2023-07-25 17:06:04,924 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习目的不能超过100位,执行通过
2023-07-25 17:06:05,261 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例其他(备注)未填写,添加成功,执行通过
2023-07-25 17:06:05,600 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例其他(备注)长度不能超过200位,执行通过
2023-07-25 17:06:05,951 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习形式不能为空,执行通过
2023-07-25 17:06:06,344 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习形式为集中,添加成功--集中,执行通过
2023-07-25 17:06:06,709 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习形式为自主,添加成功--自主,执行通过
2023-07-25 17:06:07,023 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习报告提交开始时间不能为空,执行通过
2023-07-25 17:06:07,350 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习报告提交结束时间不能为空,执行通过
2023-07-25 17:06:07,688 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例报告模块路径为空,添加成功,执行通过
2023-07-25 17:06:08,014 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习内容为空,添加成功,执行通过
2023-07-25 17:06:08,346 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例实习内容长度不能大于500位,执行通过
2023-07-25 17:06:08,668 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例院系不能为空,执行通过
2023-07-25 17:06:09,009 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例专业填写为空,添加成功,执行通过
2023-07-25 17:06:09,351 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例学期不能为空,执行通过
2023-07-25 17:06:09,740 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例学期填写错误,执行通过
2023-07-25 17:06:10,074 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例新增计划成功,执行通过
2023-07-25 17:06:10,406 - [test_04_Internship_preparation.py-->line:146] - INFO: 用例创建计划,方便使用的数据,自主,执行通过
2023-07-25 17:06:11,929 - [test_04_Internship_preparation.py-->line:209] - INFO: 用例发布计划,执行通过
2023-07-25 17:06:15,192 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(需要报名审核-允许自行填报企业信息),执行通过
2023-07-25 17:06:15,606 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(需要报名审核-不允许自行填报企业信息),执行通过
2023-07-25 17:06:16,012 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(不需要报名审核-允许自行填报企业信息),执行通过
2023-07-25 17:06:16,406 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(不需要报名审核-不允许自行填报企业信息),执行通过
2023-07-25 17:06:16,743 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例项目名称不能为空,执行通过
2023-07-25 17:06:17,087 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例项目名称不能大于30位,执行通过
2023-07-25 17:06:17,397 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习计划不能为空,执行通过
2023-07-25 17:06:17,749 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习计划不匹配,执行通过
2023-07-25 17:06:18,253 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习形式不能为空,执行通过
2023-07-25 17:06:18,589 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习形式填写错误,执行通过
2023-07-25 17:06:19,038 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习要求不填写,添加成功,执行通过
2023-07-25 17:06:19,330 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习要求不能大于500,执行通过
2023-07-25 17:06:19,675 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习开始时间不能为空,执行通过
2023-07-25 17:06:20,108 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例实习结束时间不能为空,执行通过
2023-07-25 17:06:20,539 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例项目开始日期需早于项目结束日期,执行通过
2023-07-25 17:06:21,003 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:21,003 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核填写错误' != 'success'
- 报名审核填写错误
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核填写错误' != 'success'
- 报名审核填写错误
+ success

2023-07-25 17:06:21,494 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:21,494 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核填写错误' != '项目名称已存在'
- 报名审核填写错误
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核填写错误' != '项目名称已存在'
- 报名审核填写错误
+ 项目名称已存在

2023-07-25 17:06:21,995 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:21,995 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核填写错误' != '项目名称已存在'
- 报名审核填写错误
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核填写错误' != '项目名称已存在'
- 报名审核填写错误
+ 项目名称已存在

2023-07-25 17:06:22,382 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:22,382 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核不能为空' != 'success'
- 报名审核不能为空
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核不能为空' != 'success'
- 报名审核不能为空
+ success

2023-07-25 17:06:22,878 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:22,879 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核不能为空' != '项目名称已存在'
- 报名审核不能为空
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核不能为空' != '项目名称已存在'
- 报名审核不能为空
+ 项目名称已存在

2023-07-25 17:06:23,369 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题报名审核不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:23,369 - [test_04_Internship_preparation.py-->line:293] - ERROR: '报名审核不能为空' != '项目名称已存在'
- 报名审核不能为空
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '报名审核不能为空' != '项目名称已存在'
- 报名审核不能为空
+ 项目名称已存在

2023-07-25 17:06:23,907 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:23,907 - [test_04_Internship_preparation.py-->line:293] - ERROR: '实习计划不匹配' != 'success'
- 实习计划不匹配
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '实习计划不匹配' != 'success'
- 实习计划不匹配
+ success

2023-07-25 17:06:24,422 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:24,422 - [test_04_Internship_preparation.py-->line:293] - ERROR: '实习计划不匹配' != '项目名称已存在'
- 实习计划不匹配
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '实习计划不匹配' != '项目名称已存在'
- 实习计划不匹配
+ 项目名称已存在

2023-07-25 17:06:24,910 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息填写错误(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:24,911 - [test_04_Internship_preparation.py-->line:293] - ERROR: '实习计划不匹配' != '项目名称已存在'
- 实习计划不匹配
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '实习计划不匹配' != '项目名称已存在'
- 实习计划不匹配
+ 项目名称已存在

2023-07-25 17:06:25,306 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:25,306 - [test_04_Internship_preparation.py-->line:293] - ERROR: '自行填报企业信息不能为空' != 'success'
- 自行填报企业信息不能为空
+ success
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '自行填报企业信息不能为空' != 'success'
- 自行填报企业信息不能为空
+ success

2023-07-25 17:06:25,800 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:25,800 - [test_04_Internship_preparation.py-->line:293] - ERROR: '自行填报企业信息不能为空' != '项目名称已存在'
- 自行填报企业信息不能为空
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '自行填报企业信息不能为空' != '项目名称已存在'
- 自行填报企业信息不能为空
+ 项目名称已存在

2023-07-25 17:06:26,454 - [test_04_Internship_preparation.py-->line:292] - ERROR: 用例标题自行填报企业信息不能为空(后期在做修改,目前不做改动-0104),不通过
2023-07-25 17:06:26,454 - [test_04_Internship_preparation.py-->line:293] - ERROR: '自行填报企业信息不能为空' != '项目名称已存在'
- 自行填报企业信息不能为空
+ 项目名称已存在
Traceback (most recent call last):
  File "/Users/shitou/工作/code/work/workAi/yxly/testcase/test_04_Internship_preparation.py", line 287, in test_add_project
    self.assertEqual(expected['msg'], res['msg'])
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: '自行填报企业信息不能为空' != '项目名称已存在'
- 自行填报企业信息不能为空
+ 项目名称已存在

2023-07-25 17:06:26,913 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例参与学生不能为空,执行通过
2023-07-25 17:06:27,298 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例参与学生填写错误,执行通过
2023-07-25 17:06:27,697 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例关联指定老师不填写,添加成功,执行通过
2023-07-25 17:06:28,039 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例关联指定老师填写错误,执行通过
2023-07-25 17:06:28,451 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例推荐岗位不能为空,执行通过
2023-07-25 17:06:28,891 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例推荐岗位填写错误,执行通过
2023-07-25 17:06:29,295 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例新增项目成功--自主-(需要报名审核-允许自行填报企业信息),执行通过
2023-07-25 17:06:29,705 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例创建项目,方便使用的数据,执行通过
2023-07-25 17:06:30,098 - [test_04_Internship_preparation.py-->line:299] - INFO: 用例创建项目,方便使用的数据,执行通过
2023-07-25 17:06:31,885 - [test_04_Internship_preparation.py-->line:363] - INFO: 用例发布项目,执行通过
2023-07-25 17:06:32,994 - [test_05_student_practice.py-->line:71] - INFO: 用例查看全部实习,执行通过
2023-07-25 17:06:35,209 - [test_05_student_practice.py-->line:129] - INFO: 用例学生提交报名岗位,执行通过
2023-07-25 17:06:36,205 - [test_06_internship_manage.py-->line:71] - INFO: 用例查看学校报名审核-待审核,执行通过
2023-07-25 17:06:38,108 - [test_06_internship_manage.py-->line:127] - INFO: 用例审核成功(学校),执行通过
2023-07-25 17:06:39,879 - [test_06_internship_manage.py-->line:290] - INFO: 用例学生填写开始实习时间成功,执行通过
2023-07-25 17:06:42,359 - [test_06_internship_manage.py-->line:349] - INFO: 用例实习申请审核成功(学校),执行通过
2023-07-25 17:06:43,988 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-日志标题不能为空,执行通过
2023-07-25 17:06:45,274 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-日志标题不能超过30位,执行通过
2023-07-25 17:06:46,491 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-实习单不存在,执行通过
2023-07-25 17:06:47,620 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-实习单不能为空,执行通过
2023-07-25 17:06:48,739 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-周日志种类不能为空,执行通过
2023-07-25 17:06:49,916 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-周日志时间不能为空,执行通过
2023-07-25 17:06:51,027 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-周志标题不能为空,执行通过
2023-07-25 17:06:52,181 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-周志标题不能超过30位,执行通过
2023-07-25 17:06:53,307 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-周志)-实习单不存在,执行通过
2023-07-25 17:06:54,443 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-实习单不能为空,执行通过
2023-07-25 17:06:55,889 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-周日志种类不能为空,执行通过
2023-07-25 17:06:57,007 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-周日志时间不能为空,执行通过
2023-07-25 17:06:58,052 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-月志标题不能为空,执行通过
2023-07-25 17:06:59,172 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-月志标题不能超过30位,执行通过
2023-07-25 17:07:00,272 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-实习单不存在,执行通过
2023-07-25 17:07:01,458 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-实习单不能为空,执行通过
2023-07-25 17:07:02,569 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-周日志种类不能为空,执行通过
2023-07-25 17:07:03,672 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-周日志时间不能为空,执行通过
2023-07-25 17:07:04,901 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(日志)-成功,执行通过
2023-07-25 17:07:05,987 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(周志)-成功,执行通过
2023-07-25 17:07:07,169 - [test_06_internship_manage.py-->line:409] - INFO: 用例学生填写-(月志)-成功,执行通过
2023-07-25 17:07:09,884 - [test_06_internship_manage.py-->line:489] - INFO: 用例学校端批阅-(日志)-成功,执行通过
2023-07-25 17:07:12,275 - [test_06_internship_manage.py-->line:489] - INFO: 用例学校端批阅-(周志)-成功,执行通过
2023-07-25 17:07:14,983 - [test_06_internship_manage.py-->line:489] - INFO: 用例学校端批阅-(月志)-成功,执行通过
2023-07-25 17:07:16,687 - [test_06_internship_manage.py-->line:546] - INFO: 用例学生签到打卡成功,执行通过
2023-07-25 17:07:18,705 - [test_06_internship_manage.py-->line:607] - INFO: 用例学生填写请假申请(调休)成功,执行通过
2023-07-25 17:07:19,980 - [test_06_internship_manage.py-->line:669] - INFO: 用例教师审批请假申请通过,执行通过