apitest_unittest/directory_tree.md

5.3 KiB

. ├── OutPut │ ├── Log │ ├── Reports │ │ ├── T 测试报告.html │ │ ├── T.html │ │ ├── history.json │ │ ├── report.html │ │ ├── test_api 测试报告.html │ │ └── test_api.html │ └── init.py ├── Pipfile ├── Pipfile.lock ├── README.md ├── cases │ ├── cases │ │ ├── test_api.xlsx │ │ ├── test_openapi_cases.xlsx │ │ └── test_postman_cases.xlsx │ ├── templates │ │ └── template.xlsx │ └── temporary_file │ ├── apifox.json │ ├── openapi.json │ └── postman.json ├── common │ ├── init.py │ ├── bif_functions │ │ ├── init.py │ │ ├── bif_datetime.py │ │ ├── bif_hashlib.py │ │ ├── bif_json.py │ │ ├── bif_list.py │ │ ├── bif_random.py │ │ ├── bif_re.py │ │ ├── bif_str.py │ │ ├── bif_time.py │ │ └── random_tools.py │ ├── config.py │ ├── crypto │ │ ├── init.py │ │ ├── encryption_aes.py │ │ ├── encryption_base64_to_image.py │ │ ├── encryption_main.py │ │ ├── encryption_rsa.py │ │ └── encryption_str.py │ ├── data_extraction │ │ ├── init.py │ │ ├── analysis_json.py │ │ ├── assert_dict.py │ │ ├── data_extractor.py │ │ ├── dependent_parameter.py │ │ └── dict_get.py │ ├── database │ │ ├── init.py │ │ ├── do_mongo.py │ │ ├── execute_sql.py │ │ ├── do_psycopg.py │ │ └── do_redis.py │ ├── dependence.py │ ├── file_handling │ │ ├── init.py │ │ ├── do_bat_sql.py │ │ ├── do_excel.py │ │ ├── excel.py │ │ ├── get_all_path.py │ │ ├── get_conf_data.py │ │ ├── get_excel_init.py │ │ ├── get_file.py │ │ ├── get_folder.py │ │ └── read_file.py │ ├── random_tools │ │ ├── init.py │ │ ├── credit_cards │ │ │ ├── init.py │ │ │ ├── bankcard.py │ │ │ └── cardbin.csv │ │ ├── credit_identifiers │ │ │ ├── init.py │ │ │ ├── address.json │ │ │ ├── credit_identifier.py │ │ │ └── unified_social_credit_identifier.py │ │ ├── emails │ │ │ ├── init.py │ │ │ ├── email.py │ │ │ └── free_email.csv │ │ ├── identification │ │ │ ├── init.py │ │ │ ├── area.csv │ │ │ └── id_card.py │ │ ├── names │ │ │ ├── init.py │ │ │ ├── first_name_boy.csv │ │ │ ├── first_name_girl.csv │ │ │ ├── last_name.csv │ │ │ └── name.py │ │ └── phone_numbers │ │ ├── init.py │ │ ├── phone.py │ │ └── phone_area.csv │ ├── utils │ │ ├── WxworkSms.py │ │ ├── init.py │ │ ├── captcha.py │ │ ├── function_run_time.py │ │ ├── hooks.py │ │ ├── http_client.py │ │ ├── logger.py │ │ ├── mylogger.py │ │ ├── parsing_openapi.py │ │ ├── parsing_postman.py │ │ ├── request.py │ │ ├── request_processor.py │ │ ├── retry.py │ │ └── singleton.py │ └── validation │ ├── init.py │ ├── comparator_dict.py │ ├── comparators.py │ ├── extractor.py │ ├── load_modules_from_folder.py │ ├── loaders.py │ └── validator.py ├── debug │ ├── decorator_test.py │ ├── identify_results.txt │ └── myf.py ├── excel_converter.py ├── extensions │ ├── init.py │ ├── ext_method_online.py │ └── sign.py ├── generate_tree.py ├── image │ ├── wx.jpg │ └── zfb.jpg ├── main.py ├── main_personal_information.py ├── pipenv_command.text ├── scripts │ └── init.py ├── temp │ ├── init.py │ ├── excel_handler.py │ ├── extent │ │ ├── init.py │ │ ├── api.py │ │ ├── config.py │ │ └── test_api_script.py │ ├── fun.md │ ├── get_zl.py │ ├── mqtt_sender.py │ ├── parsing_jmeter.py │ ├── rabbit_mq_sender.py │ └── test_log.py └── test_script ├── init.py ├── automation │ ├── init.py │ └── test_api_script.py └── script ├── init.py ├── baseclass.py └── test_api.py