From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/snmp/test/test2.erl | 80 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 lib/snmp/test/test2.erl (limited to 'lib/snmp/test/test2.erl') diff --git a/lib/snmp/test/test2.erl b/lib/snmp/test/test2.erl new file mode 100644 index 0000000000..dc010cfa11 --- /dev/null +++ b/lib/snmp/test/test2.erl @@ -0,0 +1,80 @@ +%% +%% %CopyrightBegin% +%% +%% Copyright Ericsson AB 1997-2009. All Rights Reserved. +%% +%% The contents of this file are subject to the Erlang Public License, +%% Version 1.1, (the "License"); you may not use this file except in +%% compliance with the License. You should have received a copy of the +%% Erlang Public License along with this software. If not, it can be +%% retrieved online at http://www.erlang.org/. +%% +%% Software distributed under the License is distributed on an "AS IS" +%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See +%% the License for the specific language governing rights and limitations +%% under the License. +%% +%% %CopyrightEnd% +%% + +-module(test2). + +-compile(export_all). + +%%----------------------------------------------------------------- +%% Implements the Test2 MIB. Used to test processing +%% of requests. +%%----------------------------------------------------------------- +tDescr(get, 2) -> + {noValue, noSuchName}; +tDescr(get, 3) -> + {noValue, noSuchInstance}; +tDescr(get, 4) -> + {noValue, noSuchObject}. + +tDescr(is_set_ok, "badValue", 2) -> + badValue; +tDescr(is_set_ok, "inconsistentValue", 2) -> + inconsistentValue; +tDescr(is_set_ok, "resourceUnavailable", 2) -> + resourceUnavailable; +tDescr(is_set_ok, "inconsistentName", 2) -> + inconsistentName; +tDescr(is_set_ok, "is_set_ok_fail", 2) -> + genErr; +tDescr(set, "commit_fail", 2) -> + commitFailed. + +tGenErr(get, 1) -> + genErr; +tGenErr(get, 2) -> + 1=2; +tGenErr(get, 3) -> + {value, "not an integer, I know"}. + +tInt(is_set_ok, 5, 3) -> + wrongValue. + + +tTable(is_set_ok, [1,1], [{2, "noCreation"}]) -> + {noCreation, 2}; +tTable(is_set_ok, [1,2], [{2, "inconsistentName"}]) -> + {inconsistentName, 2}; +tTable(get_next, _RowIndex, Cols) -> + lists:map(fun(_) -> endOfTable end, Cols). + +%% Only 2 reqs are valid: +%% gn([[tCnt2, 1]]) +%% gn([[tCnt2, 2]]) +%% ... or as: +%% gb(0, 2, [[tCnt2,1]]) +tTable2(get_next, [1], [2]) -> + [{[2,2], 100}]; +tTable2(get_next, [2], [2]) -> + [endOfTable]. + + + + +tTooBig(get) -> + {value, "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"}. -- cgit v1.2.3