mock-ssh-server:用于测试目的的Python模拟SSH服务器

时间:2024-05-28 04:06:25
【文件属性】:

文件名称:mock-ssh-server:用于测试目的的Python模拟SSH服务器

文件大小:16KB

文件格式:ZIP

更新时间:2024-05-28 04:06:25

python mock Python

mock-ssh-server-用于测试目的的SSH服务器 mock-ssh-server打包了一个Python上下文管理器,该上下文管理器实现了SSH服务器以进行测试。 它基于,因此不需要安装OpenSSH二进制文件。 样品用法 作为装置: import os from pytest import yield_fixture import mockssh @yield_fixture() def server(): users = { "sample-user": "/path/to/user-private-key", } with mockssh.Server(users) as s: yield s def test_ssh_session(server): for uid in server.users:


【文件预览】:
mock-ssh-server-master
----mockssh()
--------test_server.py(3KB)
--------conftest.py(969B)
--------server.py(6KB)
--------server-key(2KB)
--------sample-user-key(2KB)
--------test_sftp.py(4KB)
--------sftp.py(5KB)
--------__init__.py(81B)
--------sample-user-key.pub(405B)
--------server-key.pub(405B)
----.gitignore(57B)
----README.rst(1KB)
----.github()
--------workflows()
----LICENSE(1KB)
----requirements-devel.txt(40B)
----requirements.txt(43B)
----MANIFEST.in(41B)
----setup.py(2KB)
----tox.ini(235B)

网友评论