Py之pytest-shutil:Python库之pytest-shutil简介、安装、使用方法之详细攻略


彩虹成就
彩虹成就 2022-09-20 09:22:05 63890
分类专栏: 资讯

Py之pytest-shutil:Python库之pytest-shutil简介、安装、使用方法之详细攻略

目录

pytest-shutil简介

pytest-shutil安装

pytest-shutil函数使用

pytest-shutil使用方法


pytest-shutil简介

    这个库是一个很好的用于自动测试的Unix shell和环境管理工具包。下面是可用函数的摘要,请查看完整列表的源代码。


 

pytest-shutil安装

pip install pytest-shutil

pytest-shutil函数使用

import shutil

copy()

  1. 功能:复制文件
  2. 格式:shutil.copy('来源文件','目标地址')
  3. 返回值:复制之后的路径

copy2()

  1. 功能:复制文件,保留元数据
  2. 格式:shutil.copy2('来源文件','目标地址')
  3. 返回值:复制之后的路径

copyfileobj()

  1. 将一个文件的内容拷贝的另外一个文件当中
  2. 格式:shutil.copyfileobj(open(来源文件,'r'),open'目标文件','w'))
  3. 返回值:无

copyfile()

  1. 功能:将一个文件的内容拷贝的另外一个文件当中
  2. 格式:shutil.copyfile(来源文件,目标文件)
  3. 返回值:目标文件的路径

copytree()

  1. 功能:复制整个文件目录
  2. 格式:shutil.copytree(来源目录,目标目录)
  3. 返回值:目标目录的路径
  4. 注意:无论文件夹是否为空,均可以复制,而且会复制文件夹中的所有内容

copymode()

功能:拷贝权限

copystat()

功能:拷贝元数据(状态)

rmtree()

  1. 功能:移除整个目录,无论是否空
  2. 格式:shutil.rmtree(目录路径)
  3. 返回值:无

move()

  1. 功能:移动文件或者文件夹
  2. 格式:shutil.move(来源地址,目标地址)
  3. 返回值:目标地址

which()

  1. 功能:检测命令对应的文件路径
  2. 格式:shutil.which(‘命令字符串’)
  3. 返回值:命令文件所在位置
  4. 注意:-variable language_">window和linux不太一样。 -variable language_">window的命令都是.-property">exe结尾,linux则不是

disk_usage()

  1. 功能:检测磁盘使用信息
  2. 格式:disk_usage(‘盘符’)
  3. 返回值:元组

pytest-shutil使用方法

  1. def test_something(workspace):
  2. Workspaces contain a handle to the path.py path object (see https://pythonhosted.org/path.py) path = workspace.workspace script = path / ‘hello.sh’ script.write_text(‘!/bin/shn echo hello world!’)
  3. There is a ‘run’ method to execute things relative to the workspace root workspace.run(‘hello.sh’)

1、pytest_shutil.env: Shell helpers

functiondescription
set_envcontextmanager to set env vars
unset_envcontextmanager to unset env vars
no_envcontextmanager to unset a single env var
no_covcontextmanager to disable coverage in subprocesses

2、pytest_shutil.cmdline: Command-line helpers

functiondescription
umaskcontextmanager to set the umask
chdircontextmanager to change to a directory
TempDircontextmanager for a temporary directory
PrettyFormattersimple text formatter for drawing title, paragrahs, hrs.
copy_filescopy all files from one directory to another
getchcross-platform read of a single character from the screen
whichanaloge of unix which
get_real_python_executablefind our system Python, useful when running under virtualenv

3、pytest_shutil.run: Running things in subprocesses

functiondescription
runrun a command, with options for capturing output, checking return codes.
run_as_mainrun a function as if it was the system entry point
run_module_as_mainrun a module as if it was the system entry point
run_in_subprocessrun a function in a subprocess
run_with_coveragerun a command with coverage enabled
文章知识点与官方知识档案匹配,可进一步学习相关知识
Python入门技能树预备知识Python简介123796 人正在系统学习中

网站声明:如果转载,请联系本站管理员。否则一切后果自行承担。

本文链接:https://www.xckfsq.com/news/show.html?id=3930
赞同 0
评论 0 条
彩虹成就L0
粉丝 0 发表 5 + 关注 私信
上周热门
Kingbase用户权限管理  2020
信刻全自动光盘摆渡系统  1749
信刻国产化智能光盘柜管理系统  1419
银河麒麟添加网络打印机时,出现“client-error-not-possible”错误提示  1014
银河麒麟打印带有图像的文档时出错  924
银河麒麟添加打印机时,出现“server-error-internal-error”  715
麒麟系统也能完整体验微信啦!  657
统信桌面专业版【如何查询系统安装时间】  633
统信操作系统各版本介绍  624
统信桌面专业版【全盘安装UOS系统】介绍  598
本周热议
我的信创开放社区兼职赚钱历程 40
今天你签到了吗? 27
信创开放社区邀请他人注册的具体步骤如下 15
如何玩转信创开放社区—从小白进阶到专家 15
方德桌面操作系统 14
我有15积分有什么用? 13
用抖音玩法闯信创开放社区——用平台宣传企业产品服务 13
如何让你先人一步获得悬赏问题信息?(创作者必看) 12
2024中国信创产业发展大会暨中国信息科技创新与应用博览会 9
中央国家机关政府采购中心:应当将CPU、操作系统符合安全可靠测评要求纳入采购需求 8

添加我为好友,拉您入交流群!

请使用微信扫一扫!