├── .gitignore ├── Apikeywords ├── __init__.py └── apiKeyWords.py ├── Common ├── __pycache__ │ ├── handle_config.cpython-37.pyc │ ├── handle_file.cpython-37.pyc │ ├── handle_logger.cpython-37.pyc │ ├── setting.cpython-37.pyc │ └── utils.cpython-37.pyc ├── handle_config.py ├── handle_excel.py ├── handle_faker.py ├── handle_file.py ├── handle_logger.py ├── setting.py └── utils.py ├── Logs └── Test.log ├── README.md ├── Report ├── 2021-10-05_allure │ ├── 2021-10-05_allure_.log │ ├── allure │ │ ├── app.js │ │ ├── data │ │ │ ├── attachments │ │ │ │ ├── 58659fb2cfcac46.txt │ │ │ │ ├── e5bbb5a2b0a5ae15.txt │ │ │ │ └── e917462fe3130f7.txt │ │ │ ├── behaviors.csv │ │ │ ├── behaviors.json │ │ │ ├── categories.csv │ │ │ ├── categories.json │ │ │ ├── packages.json │ │ │ ├── suites.csv │ │ │ ├── suites.json │ │ │ ├── test-cases │ │ │ │ ├── 397d143244c97ab8.json │ │ │ │ ├── cbcc65a7c390bb5d.json │ │ │ │ └── f3f268c049e5afe9.json │ │ │ └── timeline.json │ │ ├── export │ │ │ ├── influxDbData.txt │ │ │ ├── mail.html │ │ │ └── prometheusData.txt │ │ ├── favicon.ico │ │ ├── history │ │ │ ├── categories-trend.json │ │ │ ├── duration-trend.json │ │ │ ├── history-trend.json │ │ │ ├── history.json │ │ │ └── retry-trend.json │ │ ├── index.html │ │ ├── plugins │ │ │ ├── behaviors │ │ │ │ └── index.js │ │ │ ├── packages │ │ │ │ └── index.js │ │ │ └── screen-diff │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ ├── styles.css │ │ └── widgets │ │ │ ├── behaviors.json │ │ │ ├── categories-trend.json │ │ │ ├── categories.json │ │ │ ├── duration-trend.json │ │ │ ├── duration.json │ │ │ ├── environment.json │ │ │ ├── executors.json │ │ │ ├── history-trend.json │ │ │ ├── launch.json │ │ │ ├── retry-trend.json │ │ │ ├── severity.json │ │ │ ├── status-chart.json │ │ │ ├── suites.json │ │ │ └── summary.json │ ├── test_apidata_report(1).xlsx │ ├── test_apidata_report(2).xlsx │ └── test_apidata_report.xlsx ├── 2021-10-05_allure_.zip ├── 2021-10-05_allure_1.zip └── 2021-10-05_allure_2.zip ├── Sn.png ├── Sn2.png ├── TestCases ├── __pycache__ │ ├── conftest.cpython-37-pytest-6.0.1.pyc │ └── conftest.cpython-37-pytest-6.1.1.pyc ├── test_api.py └── test_apidata.xlsx ├── conftest.py ├── exec_file.ini ├── pytest.ini ├── requirements.txt ├── runner.py ├── runner_allure.py └── runner_html.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/.gitignore -------------------------------------------------------------------------------- /Apikeywords/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apikeywords/apiKeyWords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Apikeywords/apiKeyWords.py -------------------------------------------------------------------------------- /Common/__pycache__/handle_config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/__pycache__/handle_config.cpython-37.pyc -------------------------------------------------------------------------------- /Common/__pycache__/handle_file.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/__pycache__/handle_file.cpython-37.pyc -------------------------------------------------------------------------------- /Common/__pycache__/handle_logger.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/__pycache__/handle_logger.cpython-37.pyc -------------------------------------------------------------------------------- /Common/__pycache__/setting.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/__pycache__/setting.cpython-37.pyc -------------------------------------------------------------------------------- /Common/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Common/handle_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/handle_config.py -------------------------------------------------------------------------------- /Common/handle_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/handle_excel.py -------------------------------------------------------------------------------- /Common/handle_faker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/handle_faker.py -------------------------------------------------------------------------------- /Common/handle_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/handle_file.py -------------------------------------------------------------------------------- /Common/handle_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/handle_logger.py -------------------------------------------------------------------------------- /Common/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/setting.py -------------------------------------------------------------------------------- /Common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Common/utils.py -------------------------------------------------------------------------------- /Logs/Test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Logs/Test.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/README.md -------------------------------------------------------------------------------- /Report/2021-10-05_allure/2021-10-05_allure_.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/2021-10-05_allure_.log -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/app.js -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/attachments/58659fb2cfcac46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/attachments/58659fb2cfcac46.txt -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/attachments/e5bbb5a2b0a5ae15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/attachments/e5bbb5a2b0a5ae15.txt -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/attachments/e917462fe3130f7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/attachments/e917462fe3130f7.txt -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/behaviors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/behaviors.csv -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/behaviors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/behaviors.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/categories.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/categories.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/packages.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/suites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/suites.csv -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/suites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/suites.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/test-cases/397d143244c97ab8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/test-cases/397d143244c97ab8.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/test-cases/cbcc65a7c390bb5d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/test-cases/cbcc65a7c390bb5d.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/test-cases/f3f268c049e5afe9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/test-cases/f3f268c049e5afe9.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/data/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/data/timeline.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/export/influxDbData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/export/influxDbData.txt -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/export/mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/export/mail.html -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/export/prometheusData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/export/prometheusData.txt -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/favicon.ico: -------------------------------------------------------------------------------- 1 | module.exports = __webpack_public_path__ + "favicon.ico"; -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/history/categories-trend.json: -------------------------------------------------------------------------------- 1 | [ { 2 | "data" : { } 3 | } ] -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/history/duration-trend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/history/duration-trend.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/history/history-trend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/history/history-trend.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/history/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/history/history.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/history/retry-trend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/history/retry-trend.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/index.html -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/plugins/behaviors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/plugins/behaviors/index.js -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/plugins/packages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/plugins/packages/index.js -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/plugins/screen-diff/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/plugins/screen-diff/index.js -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/plugins/screen-diff/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/plugins/screen-diff/styles.css -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/styles.css -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/behaviors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/behaviors.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/categories-trend.json: -------------------------------------------------------------------------------- 1 | [ { 2 | "data" : { } 3 | } ] -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/categories.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/duration-trend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/duration-trend.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/duration.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/environment.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/executors.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/history-trend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/history-trend.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/launch.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/retry-trend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/retry-trend.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/severity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/severity.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/status-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/status-chart.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/suites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/suites.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/allure/widgets/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/allure/widgets/summary.json -------------------------------------------------------------------------------- /Report/2021-10-05_allure/test_apidata_report(1).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/test_apidata_report(1).xlsx -------------------------------------------------------------------------------- /Report/2021-10-05_allure/test_apidata_report(2).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/test_apidata_report(2).xlsx -------------------------------------------------------------------------------- /Report/2021-10-05_allure/test_apidata_report.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure/test_apidata_report.xlsx -------------------------------------------------------------------------------- /Report/2021-10-05_allure_.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure_.zip -------------------------------------------------------------------------------- /Report/2021-10-05_allure_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure_1.zip -------------------------------------------------------------------------------- /Report/2021-10-05_allure_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Report/2021-10-05_allure_2.zip -------------------------------------------------------------------------------- /Sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Sn.png -------------------------------------------------------------------------------- /Sn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/Sn2.png -------------------------------------------------------------------------------- /TestCases/__pycache__/conftest.cpython-37-pytest-6.0.1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/TestCases/__pycache__/conftest.cpython-37-pytest-6.0.1.pyc -------------------------------------------------------------------------------- /TestCases/__pycache__/conftest.cpython-37-pytest-6.1.1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/TestCases/__pycache__/conftest.cpython-37-pytest-6.1.1.pyc -------------------------------------------------------------------------------- /TestCases/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/TestCases/test_api.py -------------------------------------------------------------------------------- /TestCases/test_apidata.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/TestCases/test_apidata.xlsx -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/conftest.py -------------------------------------------------------------------------------- /exec_file.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/exec_file.ini -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/requirements.txt -------------------------------------------------------------------------------- /runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/runner.py -------------------------------------------------------------------------------- /runner_allure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/runner_allure.py -------------------------------------------------------------------------------- /runner_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangs2008/ks_kei_api/HEAD/runner_html.py --------------------------------------------------------------------------------