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/snmp_test_lib.hrl | 151 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100644 lib/snmp/test/snmp_test_lib.hrl (limited to 'lib/snmp/test/snmp_test_lib.hrl') diff --git a/lib/snmp/test/snmp_test_lib.hrl b/lib/snmp/test/snmp_test_lib.hrl new file mode 100644 index 0000000000..8cc3f75dc5 --- /dev/null +++ b/lib/snmp/test/snmp_test_lib.hrl @@ -0,0 +1,151 @@ +%% +%% 2002-2008 +%% Ericsson AB, 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. +%% +%% The Initial Developer of the Original Code is Ericsson AB. +%% +%% +%%---------------------------------------------------------------------- +%% Purpose: Define common macros for testing +%%---------------------------------------------------------------------- + +%% - (some of the) Macros stolen from the test server - + +%% -define(line,put(test_server_loc,{?MODULE,?LINE}),). + + +%% - Misc macros - + +-ifndef(APPLICATION). +-define(APPLICATION, snmp). +-endif. + +-define(SCONF(K,D,C), snmp_test_lib:set_config(K,D,C)). +-define(GCONF(K,C), snmp_test_lib:get_config(K,C)). +-define(RCONF(K,C,V), snmp_test_lib:replace_config(K,C,V)). +-define(HOSTNAME(N), snmp_test_lib:hostname(N)). +-define(LOCALHOST(), snmp_test_lib:localhost()). +-define(SZ(X), snmp_test_lib:sz(X)). +-define(OSTYPE(), snmp_test_lib:os_type()). +-define(DISPLAY_SUITE_INFO(), snmp_test_lib:display_suite_info(?MODULE)). + + +%% - Test case macros - +-define(OS_BASED_SKIP(Skippable), + snmp_test_lib:os_based_skip(Skippable)). +-define(NON_PC_TC_MAYBE_SKIP(Config, Condition), + snmp_test_lib:non_pc_tc_maybe_skip(Config, Condition, ?MODULE, ?LINE)). +-define(SKIP(Reason), snmp_test_lib:skip(Reason, ?MODULE, ?LINE)). +-define(FAIL(Reason), snmp_test_lib:fail(Reason, ?MODULE, ?LINE)). + + +%% - Time macros - + +-ifdef(DONT_USE_TEST_SERVER). +-define(HOURS(N), snmp_test_lib:hours(N)). +-define(MINS(N), snmp_test_lib:minutes(N)). +-define(SECS(N), snmp_test_lib:seconds(N)). +-else. +-define(HOURS(N), test_server:hours(N)). +-define(MINS(N), test_server:minutes(N)). +-define(SECS(N), test_server:seconds(N)). +-endif. + +-ifdef(DONT_USE_TEST_SERVER). +-define(WD_START(T), snmp_test_lib:watchdog_start(T)). +-define(WD_STOP(P), snmp_test_lib:watchdog_stop(P)). +-else. +-define(WD_START(T), test_server:timetrap(T)). +-define(WD_STOP(P), test_server:timetrap_cancel(P)). +-endif. + +-define(SLEEP(MSEC), snmp_test_lib:sleep(MSEC)). +-define(M(), snmp_test_lib:millis()). +-define(MDIFF(A,B), snmp_test_lib:millis_diff(A,B)). + +%% - Process utility macros - + +-define(FLUSH(), snmp_test_lib:flush_mqueue()). +-define(ETRAP_GET(), snmp_test_lib:trap_exit()). +-define(ETRAP_SET(O), snmp_test_lib:trap_exit(O)). + + +%% - Node utility macros - + +-define(PING(N), snmp_test_lib:ping(N)). +-define(LNODES(), snmp_test_lib:local_nodes()). +-define(NODES(H), snmp_test_lib:nodes_on(H)). +-define(START_NODE(N,A), snmp_test_lib:start_node(N,A)). + + +%% - Application and Crypto utility macros - + +-define(IS_APP_RUNNING(A), snmp_test_lib:is_app_running(A)). +-define(IS_SNMP_RUNNING(), snmp_test_lib:is_snmp_running()). +-define(IS_MNESIA_RUNNING(), snmp_test_lib:is_mnesia_running()). +-define(IS_CRYPTO_RUNNING(), snmp_test_lib:is_crypto_running()). +-define(CRYPTO_START(), snmp_test_lib:crypto_start()). +-define(CRYPTO_SUPPORT(), snmp_test_lib:crypto_support()). + + +%% - Dir macros - + +-define(DEL_DIR(D), snmp_test_lib:del_dir(D)). + + +%% - Print macros + +-define(P(C), snmp_test_lib:p(?MODULE, C)). +-define(P1(F), snmp_test_lib:p(F, [])). +-define(P2(F, A), snmp_test_lib:p(F, A)). + +-ifdef(snmp_debug). +-ifndef(snmp_log). +-define(snmp_log,true). +-endif. +-ifndef(snmp_error). +-define(snmp_error,true). +-endif. +-else. +-ifdef(snmp_log). +-ifndef(snmp_error). +-define(snmp_error,true). +-endif. +-endif. +-endif. + +-ifdef(snmp_debug). +-define(DBG(F,A),?PRINT("DBG",F,A)). +-else. +-define(DBG(F,A),ok). +-endif. + +-ifdef(snmp_log). +-define(LOG(F,A),?PRINT("LOG",F,A)). +-else. +-define(LOG(F,A),ok). +-endif. + +-ifdef(snmp_error). +-define(ERR(F,A),?PRINT("ERR",F,A)). +-else. +-define(ERR(F,A),ok). +-endif. + +-define(INF(F,A),?PRINT("INF",F,A)). + +-define(PRINT(P,F,A), + snmp_test_lib:print(P,?MODULE,?LINE,F,A)). + -- cgit v1.2.3