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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
|
import math
import pytest
from pysnmp.hlapi.v1arch.asyncio import *
from tests.agent_context import AGENT_PORT, AgentContextManager
total_count = 68
@pytest.mark.asyncio
@pytest.mark.parametrize("max_repetitions", [1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30])
async def test_v2c_get_table_bulk(max_repetitions):
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
objects = bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
# await UdpTransportTarget.create(("localhost", AGENT_PORT)),
await UdpTransportTarget.create(("demo.pysnmp.com", 161)),
0,
max_repetitions,
ObjectType(ObjectIdentity("SNMPv2-MIB", "sysDescr", 0)),
)
objects_list = [obj async for obj in objects]
errorIndication, errorStatus, errorIndex, varBinds = objects_list[0]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysObjectID.0"
errorIndication, errorStatus, errorIndex, varBinds = objects_list[1]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
# assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysName.0"
assert len(objects_list) == math.ceil(total_count / max_repetitions)
@pytest.mark.asyncio
async def test_v2c_get_table_bulk_0_4_subtree():
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
index = 0
async for (
errorIndication,
errorStatus,
errorIndex,
varBinds,
) in bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
await UdpTransportTarget.create(("localhost", AGENT_PORT)),
0,
4,
ObjectType(ObjectIdentity("SNMPv2-MIB", "snmp")),
lexicographicMode=False,
):
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == 4
if index == 0:
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::snmpInPkts.0"
if index == 1:
assert (
varBinds[0][0].prettyPrint()
== "SNMPv2-MIB::snmpInBadCommunityUses.0"
)
if index == 26:
assert (
varBinds[0][0].prettyPrint() == "SNMPv2-MIB::snmpSilentDrops.0"
)
if index == 27:
assert (
varBinds[0][0].prettyPrint() == "SNMPv2-MIB::snmpProxyDrops.0"
)
index += 1
assert index == 7
@pytest.mark.asyncio
async def test_v2c_get_table_bulk_0_1_subtree():
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
index = 0
async for (
errorIndication,
errorStatus,
errorIndex,
varBinds,
) in bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
await UdpTransportTarget.create(("localhost", AGENT_PORT)),
0,
1,
ObjectType(ObjectIdentity("SNMPv2-MIB", "snmp")),
lexicographicMode=False,
):
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == 1
if index == 0:
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::snmpInPkts.0"
if index == 1:
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::snmpOutPkts.0"
if index == 26:
assert (
varBinds[0][0].prettyPrint() == "SNMPv2-MIB::snmpSilentDrops.0"
)
if index == 27:
assert (
varBinds[0][0].prettyPrint() == "SNMPv2-MIB::snmpProxyDrops.0"
)
index += 1
assert index == 28
@pytest.mark.asyncio
async def test_v2c_get_table_bulk_0_7():
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
max_repetitions = 7
objects = bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
# await UdpTransportTarget.create(("localhost", AGENT_PORT)),
await UdpTransportTarget.create(("demo.pysnmp.com", 161)),
0,
max_repetitions,
ObjectType(ObjectIdentity("SNMPv2-MIB", "sysDescr", 0)),
)
objects_list = [obj async for obj in objects]
errorIndication, errorStatus, errorIndex, varBinds = objects_list[0]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysObjectID.0"
errorIndication, errorStatus, errorIndex, varBinds = objects_list[1]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
# assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysName.0"
assert len(objects_list) == math.ceil(total_count / max_repetitions)
@pytest.mark.asyncio
async def test_v2c_get_table_bulk_0_8():
with SnmpDispatcher() as snmpDispatcher:
max_repetitions = 8
objects = bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
# await UdpTransportTarget.create(("localhost", AGENT_PORT)),
await UdpTransportTarget.create(("demo.pysnmp.com", 161)),
0,
max_repetitions,
ObjectType(ObjectIdentity("SNMPv2-MIB", "sysDescr", 0)),
)
objects_list = [obj async for obj in objects]
errorIndication, errorStatus, errorIndex, varBinds = objects_list[0]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysObjectID.0"
errorIndication, errorStatus, errorIndex, varBinds = objects_list[1]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
# assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysName.0"
assert len(objects_list) == math.ceil(total_count / max_repetitions)
@pytest.mark.asyncio
async def test_v2c_get_table_bulk_0_35():
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
max_repetitions = 35 # 68/2 + 1
objects = bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
# await UdpTransportTarget.create(("localhost", AGENT_PORT)),
await UdpTransportTarget.create(("demo.pysnmp.com", 161)),
0,
max_repetitions,
ObjectType(ObjectIdentity("SNMPv2-MIB", "sysDescr", 0)),
)
objects_list = [obj async for obj in objects]
errorIndication, errorStatus, errorIndex, varBinds = objects_list[0]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysObjectID.0"
errorIndication, errorStatus, errorIndex, varBinds = objects_list[1]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == total_count - max_repetitions
# assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysName.0"
assert len(objects_list) == math.ceil(total_count / max_repetitions)
@pytest.mark.asyncio
async def test_v2c_get_table_bulk_0_60():
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
max_repetitions = 60
objects = bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
# await UdpTransportTarget.create(("localhost", AGENT_PORT)),
await UdpTransportTarget.create(("demo.pysnmp.com", 161)),
0,
max_repetitions,
ObjectType(ObjectIdentity("SNMPv2-MIB", "sysDescr", 0)),
)
objects_list = [obj async for obj in objects]
errorIndication, errorStatus, errorIndex, varBinds = objects_list[0]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysObjectID.0"
assert len(objects_list) == math.ceil(total_count / max_repetitions)
@pytest.mark.asyncio
async def test_v2c_get_table_bulk_0_5_subtree():
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
max_repetitions = 5
objects = bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
# await UdpTransportTarget.create(("localhost", AGENT_PORT)),
await UdpTransportTarget.create(("demo.pysnmp.com", 161)),
0,
max_repetitions,
ObjectType(ObjectIdentity("SNMPv2-MIB", "system")),
lexicographicMode=False,
)
objects_list = [obj async for obj in objects]
errorIndication, errorStatus, errorIndex, varBinds = objects_list[0]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysDescr.0"
errorIndication, errorStatus, errorIndex, varBinds = objects_list[3]
assert len(varBinds) == 1
assert len(objects_list) == 4
@pytest.mark.asyncio
async def test_v2c_get_table_bulk_0_6_subtree():
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
max_repetitions = 6
objects = bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
# await UdpTransportTarget.create(("localhost", AGENT_PORT)),
await UdpTransportTarget.create(("demo.pysnmp.com", 161)),
0,
max_repetitions,
ObjectType(ObjectIdentity("SNMPv2-MIB", "system")),
lexicographicMode=False,
)
objects_list = [obj async for obj in objects]
errorIndication, errorStatus, errorIndex, varBinds = objects_list[0]
assert errorIndication is None
assert errorStatus == 0
assert len(varBinds) == max_repetitions
assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysDescr.0"
errorIndication, errorStatus, errorIndex, varBinds = objects_list[2]
assert len(varBinds) == 4
assert len(objects_list) == 3
@pytest.mark.asyncio
async def test_bulk_walk_lookupmib_true():
"""
Test that bulk_walk_cmd() works correctly with lookupMib=True.
This tests the default behavior.
"""
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
count = 0
objects = bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
await UdpTransportTarget.create(("localhost", AGENT_PORT)),
0,
1, # Small max_repetitions to ensure multiple queries
ObjectType(ObjectIdentity("SNMPv2-MIB", "system")),
lookupMib=True,
)
# This should work fine
async for errorIndication, errorStatus, errorIndex, varBinds in objects:
assert errorIndication is None, (
f"Error with lookupMib=True: {errorIndication}"
)
count += 1
if count >= 5: # Process at least some responses
break
assert count > 0, "No lookupMib=True responses processed"
@pytest.mark.asyncio
async def test_bulk_walk_lookupmib_false():
"""
Test that bulk_walk_cmd() works correctly with lookupMib=False.
Previously this might have failed because when lookupMib=False, the unmake_varbinds() helper
function returns plain ObjectName objects instead of ObjectIdentity objects,
which would cause a type mismatch when creating the next query.
This test confirms the v1arch implementation correctly handles lookupMib=False.
"""
async with AgentContextManager():
with SnmpDispatcher() as snmpDispatcher:
count = 0
objects = bulk_walk_cmd(
snmpDispatcher,
CommunityData("public"),
await UdpTransportTarget.create(("localhost", AGENT_PORT)),
0,
1, # Small max_repetitions to ensure multiple queries
ObjectType(ObjectIdentity("SNMPv2-MIB", "system")),
lookupMib=False,
)
# This should work correctly
async for errorIndication, errorStatus, errorIndex, varBinds in objects:
assert errorIndication is None, (
f"Error with lookupMib=False: {errorIndication}"
)
count += 1
if count >= 5: # Process at least some responses to confirm it works
break
# We should be able to process multiple responses without error
assert count > 0, "No responses processed with lookupMib=False"
assert count >= 2, "Expected multiple responses with lookupMib=False"
|