zoukankan      html  css  js  c++  java
  • 接口测试系列:工作中所用(十:配置文件的读写操作 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'
  • 相关阅读:
    LINQ/EF/Lambda 比较字符串日期时间大小
    WinForm RDLC SubReport Step by step
    centos7安装7-zip
    centos修改命令提示符颜色
    更换官方zabbix.repo为阿里云镜像
    利用shell脚本清理nginx日志
    docker
    centos 建立静态 IP 与 IP 地址丢失的解决办法
    构建lnmp高可用架构
    keepalived高可用
  • 原文地址:https://www.cnblogs.com/by170628/p/10096919.html
Copyright © 2011-2022 走看看