Documentation: https://scrapli.github.io/scrapli_replay
Source Code: https://github.com/scrapli/scrapli_replay
Examples: https://github.com/scrapli/scrapli_replay/tree/main/examples/simple_test_case
scrapli_replay: Tools to enable easy testing of scrapli programs and to create semi-interactive SSH servers that look and feel like "real" network devices!
- Easy: Easily test scrapli code with Pytest, or create mock SSH servers to play with!
- Pytest: Love scrapli and Pytest? Want to test your code that contains scrapli components, but can't test against real devices in your CI? scrapli_replay is a Pytest plugin to help you with exactly this -- its like VCR.py and pytest-vcr, but for scrapli!
- Offline: Want to be able to have the look and feel of a network device without having a network device? Create a mock SSH server based on real network device behavior and run it in your CI or a Raspberry Pi (or whatever)!
- Lightweight: Want to spin up a bunch of test servers, but don't have the resources for real device images? Asyncssh is fast and lightweight so you can run loads of mock SSH servers with very little resources!
pip install scrapli_replay
See the docs for other installation methods/details.
@pytest.mark.scrapli_replay
def test_something_else():
with IOSXEDriver(**MY_DEVICE) as conn:
result = conn.send_command("show run | i hostname")