1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
import pytest
from pysnmp.hlapi.v1arch.asyncio import *
from tests.agent_context import AGENT_PORT, AgentContextManager
@pytest.mark.asyncio
@pytest.mark.parametrize("num_bulk", [1, 2, 50])
async def test_v2c_bulk(num_bulk):
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
errorIndication, errorStatus, errorIndex, varBinds = await bulk_cmd(
snmpDispatcher,
CommunityData("public"),
await UdpTransportTarget.create(("localhost", AGENT_PORT)),
0,
num_bulk,
ObjectType(ObjectIdentity("SNMPv2-MIB", "sysDescr", 0)),
retries=0,
)
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == num_bulk
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysObjectID.0"
if num_bulk > 1:
assert varBinds[1][0].prettyPrint() == "SNMPv2-MIB::sysUpTime.0"
if num_bulk > 2:
assert varBinds[2][0].prettyPrint() == "SNMPv2-MIB::sysContact.0"
@pytest.mark.asyncio
async def test_v2c_bulk_multiple_input():
mib_objects = (
ObjectType(ObjectIdentity("SNMPv2-MIB", "sysContact")),
ObjectType(ObjectIdentity("SNMPv2-MIB", "sysORIndex")),
ObjectType(ObjectIdentity("SNMPv2-MIB", "sysORDescr")),
)
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
errorIndication, errorStatus, errorIndex, varBinds = await bulk_cmd(
snmpDispatcher,
CommunityData("public"),
await UdpTransportTarget.create(("demo.pysnmp.com", 161)),
1,
2,
*mib_objects,
retries=0,
)
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == 5
# snmpbulkget -v2c -c public -C n1 -C r2 localhost 1.3.6.1.2.1.1.4 1.3.6.1.2.1.1.9.1.1 1.3.6.1.2.1.1.9.1.3
|