diff --git a/tests/hlapi/v1arch/asyncio/manager/cmdgen/test_v1arch_v1_walk.py b/tests/hlapi/v1arch/asyncio/manager/cmdgen/test_v1arch_v1_walk.py index 7c8b0943..2e34728c 100644 --- a/tests/hlapi/v1arch/asyncio/manager/cmdgen/test_v1arch_v1_walk.py +++ b/tests/hlapi/v1arch/asyncio/manager/cmdgen/test_v1arch_v1_walk.py @@ -3,6 +3,9 @@ from tests.agent_context import AGENT_PORT, AgentContextManager +total_count = 212 # 267 + + @pytest.mark.asyncio async def test_v1_walk(): async with AgentContextManager(): @@ -30,7 +33,7 @@ async def test_v1_walk(): assert len(varBinds) == 1 assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysUpTime.0" - assert len(objects_list) == 267 + assert len(objects_list) == total_count snmpDispatcher.transport_dispatcher.close_dispatcher() diff --git a/tests/hlapi/v1arch/asyncio/manager/cmdgen/test_v1arch_v2_walk.py b/tests/hlapi/v1arch/asyncio/manager/cmdgen/test_v1arch_v2_walk.py index b015c695..61e2790d 100644 --- a/tests/hlapi/v1arch/asyncio/manager/cmdgen/test_v1arch_v2_walk.py +++ b/tests/hlapi/v1arch/asyncio/manager/cmdgen/test_v1arch_v2_walk.py @@ -3,6 +3,9 @@ from tests.agent_context import AGENT_PORT, AgentContextManager +total_count = 212 # 267 + + @pytest.mark.asyncio async def test_v2_walk(): # some agents have different v2 GET NEXT behavior async with AgentContextManager(): @@ -30,7 +33,7 @@ async def test_v2_walk(): # some agents have different v2 GET NEXT behavior assert len(varBinds) == 1 assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysUpTime.0" - assert len(objects_list) == 267 + assert len(objects_list) == total_count snmpDispatcher.transport_dispatcher.close_dispatcher() diff --git a/tests/hlapi/v3arch/asyncio/manager/cmdgen/test_v1_walk.py b/tests/hlapi/v3arch/asyncio/manager/cmdgen/test_v1_walk.py index ed6db161..e56aab36 100644 --- a/tests/hlapi/v3arch/asyncio/manager/cmdgen/test_v1_walk.py +++ b/tests/hlapi/v3arch/asyncio/manager/cmdgen/test_v1_walk.py @@ -4,6 +4,8 @@ from pysnmp.smi.view import MibViewController from tests.agent_context import AGENT_PORT, AgentContextManager +total_count = 212 # 267 + @pytest.mark.asyncio async def test_v1_walk(): @@ -33,7 +35,7 @@ async def test_v1_walk(): assert len(varBinds) == 1 assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysUpTime.0" - assert len(objects_list) == 267 + assert len(objects_list) == total_count snmpEngine.close_dispatcher() @@ -76,7 +78,7 @@ async def test_v1_walk_mib(): assert len(varBinds) == 1 assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysUpTime.0" - assert len(objects_list) == 267 + assert len(objects_list) == total_count errorIndication, errorStatus, errorIndex, varBinds = objects_list[-1] assert ( diff --git a/tests/hlapi/v3arch/asyncio/manager/cmdgen/test_v2_walk.py b/tests/hlapi/v3arch/asyncio/manager/cmdgen/test_v2_walk.py index 5832d501..d2295cbe 100644 --- a/tests/hlapi/v3arch/asyncio/manager/cmdgen/test_v2_walk.py +++ b/tests/hlapi/v3arch/asyncio/manager/cmdgen/test_v2_walk.py @@ -2,6 +2,8 @@ from pysnmp.hlapi.v3arch.asyncio import * from tests.agent_context import AGENT_PORT, AgentContextManager +total_count = 212 # 267 + @pytest.mark.asyncio async def test_v2_walk(): # some agents have different v2 GET NEXT behavior @@ -31,7 +33,7 @@ async def test_v2_walk(): # some agents have different v2 GET NEXT behavior assert len(varBinds) == 1 assert varBinds[0][0].prettyPrint() == "SNMPv2-MIB::sysUpTime.0" - assert len(objects_list) == 267 + assert len(objects_list) == total_count snmpEngine.close_dispatcher()