接口测试系列:工作中所用(十:配置文件的读写操作 configparser模块)
Posted by170628
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了接口测试系列:工作中所用(十:配置文件的读写操作 configparser模块)相关的知识,希望对你有一定的参考价值。
global_cache.py
# -*- codeding: utf-8 -*- import configparser import hashlib import os from common.base import ENV class globalInfo: def get_path(self): current_path = ‘‘ if os.name == "nt": current_path = os.path.abspath(‘.‘).split(‘\‘)
#“scm-interface-test” 是接口测试工程文件名 if current_path[-2] == "scm-interface-test": current_path = os.path.abspath(‘..‘) + ‘\config\‘ elif current_path[-1] == ‘‘ or current_path[-3] == ‘scm-interface-test‘: current_path = os.path.abspath(‘../..‘) + ‘\config\‘ elif os.name == "posix": current_path = os.path.abspath(‘.‘).split(‘/‘) if current_path[-2] == "scm-interface-test": current_path = os.path.abspath(‘..‘) + ‘/config/‘ elif current_path[-1] == ‘‘ or current_path[-3] == ‘scm-interface-test‘: current_path = os.path.abspath(‘../..‘) + ‘/config/‘ else: print(‘global_cache: dir name maybe changed!‘) return current_path def cfg_load(self): cf_env = configparser.ConfigParser() client = globalInfo() cf_env.read(client.get_path() + "test.ini", encoding="utf-8") return cf_env def get_env(self): if ENV == 1 or ENV == 0: return ‘zbrd‘ elif ENV == 2: return ‘citest‘
以上是关于接口测试系列:工作中所用(十:配置文件的读写操作 configparser模块)的主要内容,如果未能解决你的问题,请参考以下文章
API接口自动化测试框架搭建-封装conf配置文件读写数据方法operate_conf.py
C 语言文件操作 ( 配置文件读写 | 业务逻辑 | 接口设计 )
C 语言文件操作 ( 配置文件读写 | 读取配置文件 | 函数接口形参 | 读取配置文件的逐行遍历操作 | 读取一行文本 | 查找字符 | 删除字符串前后空格 )