summaryrefslogtreecommitdiffstats
path: root/plugins/tests/check_snmp.t
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/tests/check_snmp.t')
-rwxr-xr-xplugins/tests/check_snmp.t56
1 files changed, 56 insertions, 0 deletions
diff --git a/plugins/tests/check_snmp.t b/plugins/tests/check_snmp.t
new file mode 100755
index 0000000..fcd15ea
--- /dev/null
+++ b/plugins/tests/check_snmp.t
@@ -0,0 +1,56 @@
1#! /usr/bin/perl -w -I ..
2#
3# Test check_snmp by having an actual SNMP agent running
4#
5
6use strict;
7use Test::More;
8use NPTest;
9use FindBin qw($Bin);
10
11my $port_snmp = 16100 + int(rand(100));
12my $running = 1;
13
14
15# Start up server
16my @pids;
17my $pid = fork();
18if ($pid) {
19 # Parent
20 push @pids, $pid;
21 # give our agent some time to startup
22 sleep(1);
23} else {
24 # Child
25 #print "child\n";
26
27 print "Please contact SNMP at: $port_snmp\n";
28 close(STDERR); # Coment out to debug snmpd problems (most errors sent there are OK)
29 exec("snmpd -c tests/conf/snmpd.conf -C -f -r udp:$port_snmp");
30}
31
32END {
33 foreach my $pid (@pids) {
34 if ($pid) { print "Killing $pid\n"; kill "INT", $pid }
35 }
36};
37
38if ($ARGV[0] && $ARGV[0] eq "-d") {
39 while (1) {
40 sleep 100;
41 }
42}
43
44my $tests = 2;
45if (-x "./check_snmp") {
46 plan tests => $tests;
47} else {
48 plan skip_all => "No check_snmp compiled";
49}
50
51my $res;
52
53$res = NPTest->testCmd( "./check_snmp -H 127.0.0.1 -C public -p $port_snmp -o .1.3.6.1.4.1.8072.3.2.67.0");
54cmp_ok( $res->return_code, '==', 0, "Exit OK when querying a multi-line string" );
55like($res->output, '/^SNMP OK - /', "String contains SNMP OK");
56