aboutsummaryrefslogtreecommitdiffstats
path: root/lib/snmp/test
AgeCommit message (Collapse)Author
2015-06-18Change license text to APLv2Bruce Yinhe
2015-04-24snmp: Change to random use crypto. Remove use of erlang:nowErland Schönbeck
2014-09-30Try to increase test case timeoutsRaimo Niskanen
2014-08-25Raise timeout and see if testcases stabilizeRaimo Niskanen
2014-08-22Clean up config error handling and negative resultsRaimo Niskanen
2014-08-19Implement IPv4+IPv6 in MT managerRaimo Niskanen
2014-08-19Avoid test case known to failRaimo Niskanen
2014-08-19Improve testcase test for IPv6 capable hostRaimo Niskanen
2014-08-18Write manager IPv4+IPv6 testRaimo Niskanen
2014-07-30Rearrange test suite group structureRaimo Niskanen
2014-07-30Fix testcase for really dual ipRaimo Niskanen
2014-07-30Adjust test cases for daily buildsRaimo Niskanen
2014-07-30Fix test manager in agent tests for IPv6Raimo Niskanen
2014-07-30Call new Net-SNMP test suite from top suiteRaimo Niskanen
2014-07-30Improve external snmp commands argsRaimo Niskanen
2014-07-30Test inform to dual transportsRaimo Niskanen
2014-07-30Improve dual stack test suiteRaimo Niskanen
2014-07-25Add dual_ip tests in snmp_to_snmpnet_SUITERaimo Niskanen
2014-07-25Rewrite agent for IPv4 + IPv6Raimo Niskanen
2014-07-25snmp: Add inform testIngela Anderton Andin
2014-07-25snmp: Add new test suiteIngela Anderton Andin
2014-07-25Mend loop_mib_* testcasesRaimo Niskanen
2014-07-25Mend regression testsRaimo Niskanen
2014-07-25Add testcases and do related fixesRaimo Niskanen
2014-07-25Use IPv6 config in managerRaimo Niskanen
2014-07-25Fix vsn.mk and clean out moot testcasesRaimo Niskanen
2014-07-25Fix log validation and fix some testcasesRaimo Niskanen
2014-07-25Write IPv6 test casesRaimo Niskanen
2014-07-25wip: Fix agent loggingRaimo Niskanen
2014-07-25snmp: Add IPV6 testsIngela Anderton Andin
2014-07-25wip: passes all regression testsRaimo Niskanen
2014-07-25wip: Rewrite manager net_if processRaimo Niskanen
2014-07-25wipRaimo Niskanen
2014-07-25wip-all-regression-tests-but-one-managerRaimo Niskanen
2014-07-22Rewrite agent configuration parsingRaimo Niskanen
2014-06-11Merge branch 'telsacolton/snmp_test_manager_badmatch_pid' into maintHenrik Nord
* telsacolton/snmp_test_manager_badmatch_pid: Fix badmatch error when trying to start_link an snmp_test_manager Edit line 59 to remove "mgr" key from #State record. Edit line 133 to expect ok instead of {ok, Pid} from snmpm:start_link . Edit line 136 not to reference Pid variable which was removed above.
2014-04-15Fix badmatch error when trying to start_link an snmp_test_managerColton
Was previously unable to start_link an snmp_test_manager due to a badmatch occurring on line 133. See traceback here: http://pastebin.com/1eNYkGTz Edit snmp_test_manager.erl to only expect the atom ok when it was in turn start_linking an snmpm server. Also remove reference to no longer existing Pid variable. Lastly remove the mgr key from the State record, as after these changes it was no longer being used.
2014-03-26Merge branch 'bmk/snmp/manager/fix-tests'Micael Karlberg
2014-03-21[snmp/manager] Add some more error handling when startingMicael Karlberg
Add some more error handling (a try catch block) when starting both manager and agent.
2014-03-18[snmp/agent] CLeanup - unused vars and use of deprecated funcsMicael Karlberg
2014-03-18[snmp/manager] Verify success for app start and stop in test casesMicael Karlberg
When starting and stopping apps verify success. If failure to start or stop app force failure of test case or init/fin of test case. Also, be more verbose regarding stop results during test case finish.
2014-03-14[snmp/agent] Fixed request id generationMicael Karlberg
When testing the agent, it is started and then used for a series (v1, v2, v3, ...) of tests. But the individual test cases are use one instance of the test manager. Because of this, the requerst id cannot be a counter starting from 1 or any counter for that matter. Instead every request id was generated using random. But this is obiously not a guarantee fo uniqueness, it merely makes it unlikely that the request ids will be reused. To get around this problem (without having to rewrite the entire agent test suite) a simple (global) counter server is introduced. It is started at the start of the agent test suite (init_per_suite) and stopped at the end (end_per_suite).
2014-03-14[snmp/agent] Fixed the loop_mib test casesMicael Karlberg
2014-02-24Add test suites performing app and appup file checksTobias Schlager
Add the mentioned test suites for *all* library and touched non-library applications.
2014-01-21Fix (unicode) debug info in test casesDan Gudmundsson
2013-11-26Merge branch 'maint'Micael Karlberg
Conflicts: lib/snmp/doc/src/snmpm_user.xml
2013-11-19Merge branch 'bmk/snmp/blocking_log_during_conversion' into ↵Micael Karlberg
bmk/snmp/snmp425_integration Conflicts: lib/snmp/src/app/snmp.erl
2013-11-19[snmp] Cleanup and changed atl conversion block defaultMicael Karlberg
Changed the default value for the Audit Trail Log conversion to true. Also some cleanup. OTP-11396
2013-10-11Merge branch 'bmk/snmp/blocking_log_during_conversion' into ↵Micael Karlberg
bmk/snmp/snmp425_integration Conflicts: lib/snmp/doc/src/notes.xml lib/snmp/src/app/snmp.erl
2013-10-11[snmp] Add (atl) log conversion block optionMicael Karlberg
It is now possible to request that the Audit Trail Log should be blocked during conversion (log_to_txt or log_to_io). This could be usefull when coverting a large log (when there is a chance it may otherwise wrap during conversion).