pytest中token的一种处理方法

在某个场景中,各个接口经常需要使用到token,而且接口对频繁登录做了防抖,无法频繁调用。考虑了很多方法,发现总是有一些或多或少的弊端,这里在conftest中定义了一个钩子函数用于处理token。

复制代码
@pytest.fixture(scope="module")
def auth_tokens(refresh_threshold=600):  # 假设刷新阈值为10分钟
    tokens = {}
    def get_or_refresh_token(username):
        token_info = tokens.get(username)
        if not token_info or (time.time() - token_info['timestamp']) > refresh_threshold:
            logger.info(f"没有获取到该账号{username}的token,或者token已过期,重新获取token中")
            token = login_user(username, '222222').response.json()['data']['accessToken']
            tokens[username] = {'token': token, 'timestamp': time.time()}
        logger.info(f"{username}的token为{tokens[username]['token']}")
        return tokens[username]['token']
    return get_or_refresh_token

作用域定义为模块级,在整个模块中只执行一次。

定义了一个get_or_refresh_token闭包,该闭包负责根据用户名获取或刷新token。虽然auth_tokens fixture在模块级别只实例化一次,但是它返回的闭包(get_or_refresh_token)能够对每个传入的用户名进行独立的操作,确保每个账号的token都是根据需要获取或刷新的。

相关推荐
庄小焱12 小时前
React——React基础语法(1)
前端·javascript·vue.js
姚青&12 小时前
Pytest 测试用例生命周期管理-自动注册(conftest.py)
测试用例·pytest
難釋懷12 小时前
初识Caffeine
java·缓存
pingan878712 小时前
试试 docx.js 一键生成 Word 文档,效果很不错
开发语言·前端·javascript·ecmascript·word
big_rabbit050212 小时前
java面试题整理
java·开发语言
张一凡9312 小时前
重新理解 React 状态管理:用类的方式思考业务
前端·react.js
刺客xs12 小时前
c++模板
java·开发语言·c++
紫丁香13 小时前
pytest_自动化测试1
开发语言·python·功能测试·单元测试·pytest
姚青&13 小时前
Pytest 测试用例生命周期管理-自动生效(autouse)
测试用例·pytest
姚青&13 小时前
Pytest 测试用例执行顺序自定义 Pytest-ordering
测试用例·pytest