Arthur-Wu commit

This commit is contained in:
ieemoo
2024-11-11 17:16:31 +08:00
parent 0550884b67
commit fd92879ff1
36 changed files with 1505 additions and 8 deletions

8
configs/Configs.yaml Normal file
View File

@ -0,0 +1,8 @@
#############################################
############### 测试环境配置文件 ###############
#############################################
# 1-执行环境:测试环境-test_env灰度环境-gray_env
ExecutionEnv: test_env
# 2-Reports URL
ReportsURL: http://192.168.1.165

8
configs/globalObj.py Normal file
View File

@ -0,0 +1,8 @@
# !/usr/bin/python
# -*- coding: utf-8 -*-
from commons.Logger import Singleton
from commons.Common import Common as c
ReturnFolder = c().return_folder()
LOGGER = Singleton(ReturnFolder).logging
LOGGER.info("---hello world!")

36
configs/globalParams.py Normal file
View File

@ -0,0 +1,36 @@
# !/usr/bin/python
# -*- coding: utf-8 -*-
import os,datetime,time
from datetime import datetime,timedelta
from commons.FileHandler import YamlHandler as yam
from commons.SignatureYM import SignatureYM
__RootPath = os.path.dirname(os.path.dirname(__file__)).replace("\\", "/")
__YamlFilePath = os.path.join(__RootPath, "configs/Configs.yaml").replace("\\", "/")
ProCfgData = yam().read_yaml(__YamlFilePath)
HEADERS = SignatureYM().return_headers()
GlobalPath = {
"CfgPath": os.path.join(__RootPath, 'configs').replace("\\", "/"),
"YMDataPath": os.path.join(__RootPath, 'YiMao/data').replace("\\", "/"),
"YMCfgPath": os.path.join(__RootPath, 'YiMao/config').replace("\\", "/"),
"YMCaseScriptsPath": os.path.join(__RootPath, 'YiMao/scripts').replace("\\", "/"),
"YMReportPath": os.path.join(__RootPath, 'YiMao/report').replace("\\", "/")
}
GlobalParams = {
"timeStamp": int(time.time()),
"todayDate": time.strftime('%Y-%m-%d'),
"todayDateDel1": (datetime.now() + timedelta(days=-1)).strftime('%Y-%m-%d'),
"todayDateAdd1": (datetime.now() + timedelta(days=1)).strftime('%Y-%m-%d'),
"todayDateAdd2": (datetime.now() + timedelta(days=2)).strftime('%Y-%m-%d'),
"todayDateAdd3": (datetime.now() + timedelta(days=3)).strftime('%Y-%m-%d'),
"todayDateAdd4": (datetime.now() + timedelta(days=4)).strftime('%Y-%m-%d'),
"todayDateAdd5": (datetime.now() + timedelta(days=5)).strftime('%Y-%m-%d'),
}