summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2008-03-17 20:32:11 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2008-03-17 20:32:11 (GMT)
commit9d5427f392b4b03b7fd558b4be628653d140f6c0 (patch)
tree6d52797148baf7371071c05d98a6b60e97f1e6e2 /t
parent405590a12a5552df48d8153f91e529bad0a9c528 (diff)
downloadmonitoring-plugin-perl-9d5427f392b4b03b7fd558b4be628653d140f6c0.tar.gz
Fixed parsing of negative values and support full range definitions
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/Nagios-Plugin/trunk@1952 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 't')
-rw-r--r--t/Nagios-Plugin-Performance.t31
1 files changed, 30 insertions, 1 deletions
diff --git a/t/Nagios-Plugin-Performance.t b/t/Nagios-Plugin-Performance.t
index 0574ea0..7a28546 100644
--- a/t/Nagios-Plugin-Performance.t
+++ b/t/Nagios-Plugin-Performance.t
@@ -1,6 +1,6 @@
1 1
2use strict; 2use strict;
3use Test::More tests => 91; 3use Test::More tests => 111;
4BEGIN { use_ok('Nagios::Plugin::Performance') }; 4BEGIN { use_ok('Nagios::Plugin::Performance') };
5 5
6diag "\nusing Nagios::Plugin::Performance revision ". $Nagios::Plugin::Performance::VERSION . "\n" if $ENV{TEST_VERBOSE}; 6diag "\nusing Nagios::Plugin::Performance revision ". $Nagios::Plugin::Performance::VERSION . "\n" if $ENV{TEST_VERBOSE};
@@ -142,4 +142,33 @@ cmp_ok( $p[0]->uom, "eq", "%", "uom okay");
142cmp_ok( $p[0]->threshold->warning, 'eq', "90", "warn okay"); 142cmp_ok( $p[0]->threshold->warning, 'eq', "90", "warn okay");
143cmp_ok( $p[0]->threshold->critical, 'eq', "95", "crit okay"); 143cmp_ok( $p[0]->threshold->critical, 'eq', "95", "crit okay");
144 144
145# Check ranges are parsed correctly
146@p = Nagios::Plugin::Performance->parse_perfstring("availability=93.8%;90:99;");
147is( $p[0]->label, "availability", "label okay");
148is( $p[0]->value, "93.8", "value okay");
149is( $p[0]->uom, "%", "uom okay");
150ok( defined eval { $p[0]->threshold->warning->is_set }, "Warning range has been set");
151is( $p[0]->threshold->critical->is_set, 0, "Critical range has not been set");
152is( $p[0]->threshold->warning, "90:99", "warn okay");
153
154# Check that negative values are parsed correctly in value and ranges
155@p = Nagios::Plugin::Performance->parse_perfstring("offset=-0.004476s;-60.000000:-5;-120.000000:-3;");
156is( $p[0]->label, "offset", "label okay");
157is( $p[0]->value, "-0.004476", "value okay");
158is( $p[0]->uom, "s", "uom okay");
159ok( defined eval { $p[0]->threshold->warning->is_set }, "Warning range has been set");
160ok( defined eval { $p[0]->threshold->critical->is_set }, "Critical range has been set");
161is( $p[0]->threshold->warning, "-60:-5", "warn okay");
162is( $p[0]->threshold->critical, "-120:-3", "crit okay");
163
164# Check infinity values are okay
165@p = Nagios::Plugin::Performance->parse_perfstring("salary=52GBP;~:23;45:");
166is( $p[0]->label, "salary", "label okay");
167is( $p[0]->value, "52", "value okay");
168is( $p[0]->uom, "GBP", "uom okay");
169ok( defined eval { $p[0]->threshold->warning->is_set }, "Warning range has been set");
170is( $p[0]->threshold->critical->is_set, 1, "Critical range has been set");
171is( $p[0]->threshold->warning, "~:23", "warn okay");
172is( $p[0]->threshold->critical, "45:", "warn okay");
173
145# add_perfdata tests in t/Nagios-Plugin-01.t 174# add_perfdata tests in t/Nagios-Plugin-01.t