gpt4 book ai didi

用于测试参数解析而不用 os.popen() 污染文档字符串的 shell 脚本的 Python doctest

转载 作者:太空狗 更新时间:2023-10-29 21:04:01 28 4
gpt4 key购买 nike

有没有一种方法可以编写 python doctest 字符串来测试旨在从命令行(终端)启动的脚本,该脚本不会通过 os.popen 调用污染文档示例?

#!/usr/bin/env python
# filename: add
"""
Example:
>>> import os
>>> os.popen('add -n 1 2').read().strip()
'3'
"""

if __name__ == '__main__':
from argparse import ArgumentParser
p = ArgumentParser(description=__doc__.strip())
p.add_argument('-n',type = int, nargs = 2, default = 0,help = 'Numbers to add.')
p.add_argument('--test',action = 'store_true',help = 'Test script.')
a = p.parse_args()
if a.test:
import doctest
doctest.testmod()
if a.n and len(a.n)==2:
print a.n[0]+a.n[1]

在不使用 popen 的情况下运行 doctest.testmod() 只会导致测试失败,因为该脚本是在 python shell 而不是 bash(或 DOS)shell 中运行的。

高级 Python 类(class)位于 LLNL建议将脚本放在与 .py 模块分开的文件中。但是 doctest 字符串只测试模块,没有 arg 解析。我的 os.popen() 方法污染了示例文档。有没有更好的办法?

最佳答案

刚找到看起来像您想要的答案的内容: shell-doctest .

关于用于测试参数解析而不用 os.popen() 污染文档字符串的 shell 脚本的 Python doctest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9973895/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com