├── README.md ├── config ├── __pycache__ │ └── setting.cpython-36.pyc └── setting.py ├── database ├── DemoAPITestCase.xlsx ├── DemoAPITestCase_bak.xlsx └── config.ini ├── db_fixture ├── __pycache__ │ ├── mysql_db.cpython-36.pyc │ └── test_data.cpython-36.pyc ├── mysql_db.py └── test_data.py ├── lib ├── __pycache__ │ ├── newReport.cpython-36.pyc │ ├── readexcel.cpython-36.pyc │ ├── sendmail.cpython-36.pyc │ ├── sendrequests.cpython-36.pyc │ └── writeexcel.cpython-36.pyc ├── newReport.py ├── readexcel.py ├── sendmail.py ├── sendrequests.py └── writeexcel.py ├── package ├── HTMLTestRunner.py └── __pycache__ │ └── HTMLTestRunner.cpython-36.pyc ├── report ├── 2019-01-15 17_24_57result.html ├── 2019-01-15 21_15_28result.html ├── 2019-01-17 18_38_19result.html └── excelReport │ └── DemoAPITestCase.xlsx ├── run_demo.py ├── share └── screeshots │ ├── excel.JPG │ ├── frame.JPG │ ├── mail.JPG │ ├── report.JPG │ └── report1.JPG └── testcase ├── __pycache__ └── testAPI.cpython-36.pyc └── testAPI.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/README.md -------------------------------------------------------------------------------- /config/__pycache__/setting.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/config/__pycache__/setting.cpython-36.pyc -------------------------------------------------------------------------------- /config/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/config/setting.py -------------------------------------------------------------------------------- /database/DemoAPITestCase.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/database/DemoAPITestCase.xlsx -------------------------------------------------------------------------------- /database/DemoAPITestCase_bak.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/database/DemoAPITestCase_bak.xlsx -------------------------------------------------------------------------------- /database/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/database/config.ini -------------------------------------------------------------------------------- /db_fixture/__pycache__/mysql_db.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/db_fixture/__pycache__/mysql_db.cpython-36.pyc -------------------------------------------------------------------------------- /db_fixture/__pycache__/test_data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/db_fixture/__pycache__/test_data.cpython-36.pyc -------------------------------------------------------------------------------- /db_fixture/mysql_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/db_fixture/mysql_db.py -------------------------------------------------------------------------------- /db_fixture/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/db_fixture/test_data.py -------------------------------------------------------------------------------- /lib/__pycache__/newReport.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/__pycache__/newReport.cpython-36.pyc -------------------------------------------------------------------------------- /lib/__pycache__/readexcel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/__pycache__/readexcel.cpython-36.pyc -------------------------------------------------------------------------------- /lib/__pycache__/sendmail.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/__pycache__/sendmail.cpython-36.pyc -------------------------------------------------------------------------------- /lib/__pycache__/sendrequests.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/__pycache__/sendrequests.cpython-36.pyc -------------------------------------------------------------------------------- /lib/__pycache__/writeexcel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/__pycache__/writeexcel.cpython-36.pyc -------------------------------------------------------------------------------- /lib/newReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/newReport.py -------------------------------------------------------------------------------- /lib/readexcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/readexcel.py -------------------------------------------------------------------------------- /lib/sendmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/sendmail.py -------------------------------------------------------------------------------- /lib/sendrequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/sendrequests.py -------------------------------------------------------------------------------- /lib/writeexcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/lib/writeexcel.py -------------------------------------------------------------------------------- /package/HTMLTestRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/package/HTMLTestRunner.py -------------------------------------------------------------------------------- /package/__pycache__/HTMLTestRunner.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/package/__pycache__/HTMLTestRunner.cpython-36.pyc -------------------------------------------------------------------------------- /report/2019-01-15 17_24_57result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/report/2019-01-15 17_24_57result.html -------------------------------------------------------------------------------- /report/2019-01-15 21_15_28result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/report/2019-01-15 21_15_28result.html -------------------------------------------------------------------------------- /report/2019-01-17 18_38_19result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/report/2019-01-17 18_38_19result.html -------------------------------------------------------------------------------- /report/excelReport/DemoAPITestCase.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/report/excelReport/DemoAPITestCase.xlsx -------------------------------------------------------------------------------- /run_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/run_demo.py -------------------------------------------------------------------------------- /share/screeshots/excel.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/share/screeshots/excel.JPG -------------------------------------------------------------------------------- /share/screeshots/frame.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/share/screeshots/frame.JPG -------------------------------------------------------------------------------- /share/screeshots/mail.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/share/screeshots/mail.JPG -------------------------------------------------------------------------------- /share/screeshots/report.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/share/screeshots/report.JPG -------------------------------------------------------------------------------- /share/screeshots/report1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/share/screeshots/report1.JPG -------------------------------------------------------------------------------- /testcase/__pycache__/testAPI.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/testcase/__pycache__/testAPI.cpython-36.pyc -------------------------------------------------------------------------------- /testcase/testAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingoja/DemoAPI/HEAD/testcase/testAPI.py --------------------------------------------------------------------------------