From b17b2421987bb8a7606948333e75f990b35852b8 Mon Sep 17 00:00:00 2001 From: Ton Voon Date: Wed, 19 Mar 2008 14:42:12 +0000 Subject: 1st pass at check_procs with multiple threshold checks git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/branches/new_threshold_syntax@1958 f882894a-f735-0410-b71e-b25c423dba1c --- lib/tests/test_utils.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 156 insertions(+), 2 deletions(-) (limited to 'lib/tests') diff --git a/lib/tests/test_utils.c b/lib/tests/test_utils.c index 278f526e..a5189cea 100644 --- a/lib/tests/test_utils.c +++ b/lib/tests/test_utils.c @@ -30,7 +30,7 @@ main (int argc, char **argv) thresholds *thresholds = NULL; int rc; - plan_tests(82); + plan_tests(172); range = parse_range_string("6"); ok( range != NULL, "'6' is valid range"); @@ -40,6 +40,32 @@ main (int argc, char **argv) ok( range->end_infinity == FALSE, "Not using infinity"); free(range); + range = _parse_range_string_v2("6"); + ok( range == NULL, "Missing colon in range" ); + ok( utils_errno == NP_RANGE_MISSING_COLON, "Right error code" ); + + range = _parse_range_string_v2("6:"); + ok( range != NULL, "'6:' is valid range"); + ok( range->start == 6, "Start correct"); + ok( range->start_infinity == FALSE, "Not using negative infinity"); + ok( range->end_infinity == TRUE, "Using infinity"); + free(range); + + range = _parse_range_string_v2("6:6"); + ok( range != NULL, "'6:6' is valid range"); + ok( range->start == 6, "Start correct"); + ok( range->start_infinity == FALSE, "Not using negative infinity"); + ok( range->end == 6, "End correct"); + ok( range->end_infinity == FALSE, "Not using infinity"); + free(range); + + range = _parse_range_string_v2(":6"); + ok( range != NULL, "':6' is valid range"); + ok( range->start_infinity == TRUE, "Using negative infinity"); + ok( range->end == 6, "End correct"); + ok( range->end_infinity == FALSE, "Not using infinity"); + free(range); + range = parse_range_string("1:12%%"); ok( range != NULL, "'1:12%%' is valid - percentages are ignored"); ok( range->start == 1, "Start correct"); @@ -48,6 +74,14 @@ main (int argc, char **argv) ok( range->end_infinity == FALSE, "Not using infinity"); free(range); + range = _parse_range_string_v2("1:12%%"); + ok( range != NULL, "'1:12%%' is valid - percentages are ignored"); + ok( range->start == 1, "Start correct"); + ok( range->start_infinity == FALSE, "Not using negative infinity"); + ok( range->end == 12, "End correct"); + ok( range->end_infinity == FALSE, "Not using infinity"); + free(range); + range = parse_range_string("-7:23"); ok( range != NULL, "'-7:23' is valid range"); ok( range->start == -7, "Start correct"); @@ -56,6 +90,14 @@ main (int argc, char **argv) ok( range->end_infinity == FALSE, "Not using infinity"); free(range); + range = _parse_range_string_v2("-7:23"); + ok( range != NULL, "'-7:23' is valid range"); + ok( range->start == -7, "Start correct"); + ok( range->start_infinity == FALSE, "Not using negative infinity"); + ok( range->end == 23, "End correct"); + ok( range->end_infinity == FALSE, "Not using infinity"); + free(range); + range = parse_range_string(":5.75"); ok( range != NULL, "':5.75' is valid range"); ok( range->start == 0, "Start correct"); @@ -64,6 +106,14 @@ main (int argc, char **argv) ok( range->end_infinity == FALSE, "Not using infinity"); free(range); + range = _parse_range_string_v2(":5.75"); + ok( range != NULL, "':5.75' is valid range"); + ok( range->start == 0, "Start correct"); + ok( range->start_infinity == TRUE, "Using negative infinity"); + ok( range->end == 5.75, "End correct"); + ok( range->end_infinity == FALSE, "Not using infinity"); + free(range); + range = parse_range_string("~:-95.99"); ok( range != NULL, "~:-95.99' is valid range"); ok( range->start_infinity == TRUE, "Using negative infinity"); @@ -71,6 +121,26 @@ main (int argc, char **argv) ok( range->end_infinity == FALSE, "Not using infinity"); free(range); + range = _parse_range_string_v2("~:-95.99"); + ok( range == NULL, "~:-95.99' is invalid range"); + ok( utils_errno == NP_RANGE_UNPARSEABLE, "Correct error code" ); + + /* + * This is currently parseable. This is because ~ is interpreted as a 0 + * and then 95.99 is the end, so we get 0:95.99. Should validate the characters before + * passing to strtod + range = _parse_range_string_v2("~:95.99"); + ok( range == NULL, "~:95.99' is invalid range"); + ok( utils_errno == NP_RANGE_UNPARSEABLE, "Correct error code" ); + */ + + range = _parse_range_string_v2(":-95.99"); + ok( range != NULL, ":-95.99' is valid range"); + ok( range->start_infinity == TRUE, "Using negative infinity"); + ok( range->end == -95.99, "End correct (with rounding errors)"); + ok( range->end_infinity == FALSE, "Not using infinity"); + free(range); + range = parse_range_string("12345678901234567890:"); temp = atof("12345678901234567890"); /* Can't just use this because number too large */ ok( range != NULL, "'12345678901234567890:' is valid range"); @@ -83,6 +153,14 @@ main (int argc, char **argv) ok( check_range(temp*2, range) == FALSE, "12345678901234567890*2 - no alert"); free(range); + range = _parse_range_string_v2("12345678901234567890:"); + temp = atof("12345678901234567890"); + ok( range != NULL, "'12345678901234567890:' is valid range"); + ok( range->start == temp, "Start correct"); + ok( range->start_infinity == FALSE, "Not using negative infinity"); + ok( range->end_infinity == TRUE, "Using infinity"); + free(range); + range = parse_range_string("~:0"); ok( range != NULL, "'~:0' is valid range"); ok( range->start_infinity == TRUE, "Using negative infinity"); @@ -94,8 +172,16 @@ main (int argc, char **argv) ok( check_range(0, range) == FALSE, "0 - no alert"); free(range); + range = _parse_range_string_v2("-4.33:-4.33"); + ok( range != NULL, "'-4.33:-4.33' is valid range"); + ok( range->start_infinity == FALSE, "Not using negative infinity"); + ok( range->start == -4.33, "Start right"); + ok( range->end == -4.33, "End correct"); + ok( range->end_infinity == FALSE, "Not using infinity"); + free(range); + range = parse_range_string("@0:657.8210567"); - ok( range != 0, "@0:657.8210567' is a valid range"); + ok( range != NULL, "@0:657.8210567' is a valid range"); ok( range->start == 0, "Start correct"); ok( range->start_infinity == FALSE, "Not using negative infinity"); ok( range->end == 657.8210567, "End correct"); @@ -107,6 +193,14 @@ main (int argc, char **argv) ok( check_range(0, range) == TRUE, "0 - alert"); free(range); + range = parse_range_string("^0:657.8210567"); + ok( range != NULL, "^0:657.8210567' is a valid range"); + ok( range->start == 0, "Start correct"); + ok( range->start_infinity == FALSE, "Not using negative infinity"); + ok( range->end == 657.8210567, "End correct"); + ok( range->end_infinity == FALSE, "Not using infinity"); + free(range); + range = parse_range_string("1:1"); ok( range != NULL, "'1:1' is a valid range"); ok( range->start == 1, "Start correct"); @@ -121,22 +215,71 @@ main (int argc, char **argv) range = parse_range_string("2:1"); ok( range == NULL, "'2:1' rejected"); + range = _parse_range_string_v2("2:1"); + ok( range == NULL, "'2:1' rejected"); + ok( utils_errno == NP_RANGE_UNPARSEABLE, "Errno correct" ); + rc = _set_thresholds(&thresholds, NULL, NULL); ok( rc == 0, "Thresholds (NULL, NULL) set"); ok( thresholds->warning == NULL, "Warning not set"); ok( thresholds->critical == NULL, "Critical not set"); + thresholds = _parse_thresholds_string(NULL); + ok( thresholds != NULL, "Threshold still set, even though NULL"); + ok( thresholds->warning == NULL, "Warning set to NULL"); + ok( thresholds->critical == NULL, "Critical set to NULL"); + + thresholds = _parse_thresholds_string(""); + ok( thresholds != NULL, "Threshold still set, even though ''"); + ok( thresholds->warning == NULL, "Warning set to NULL"); + ok( thresholds->critical == NULL, "Critical set to NULL"); + + thresholds = _parse_thresholds_string("/"); + ok( thresholds != NULL, "Threshold still set, even though '/'"); + ok( thresholds->warning == NULL, "Warning set to NULL"); + ok( thresholds->critical == NULL, "Critical set to NULL"); + rc = _set_thresholds(&thresholds, NULL, "80"); ok( rc == 0, "Thresholds (NULL, '80') set"); ok( thresholds->warning == NULL, "Warning not set"); ok( thresholds->critical->end == 80, "Critical set correctly"); + thresholds = _parse_thresholds_string(":80/"); + ok( thresholds != NULL, "Threshold set for ':80/'"); + ok( thresholds->warning == NULL, "Warning set to NULL"); + ok( thresholds->critical->start_infinity == TRUE, "Start is right" ); + ok( thresholds->critical->end == 80, "Critical set to 80"); + + thresholds = _parse_thresholds_string(":80"); + ok( thresholds != NULL, "Threshold set for ':80'"); + ok( thresholds->warning == NULL, "Warning set to NULL"); + ok( thresholds->critical->start_infinity == TRUE, "Start is right" ); + ok( thresholds->critical->end == 80, "Critical set to 80"); + + thresholds = _parse_thresholds_string("80"); + ok( thresholds == NULL, "Threshold not set because of single value '80'"); + ok( utils_errno == NP_RANGE_MISSING_COLON, "Correct error message"); + rc = _set_thresholds(&thresholds, "5:33", NULL); ok( rc == 0, "Thresholds ('5:33', NULL) set"); ok( thresholds->warning->start == 5, "Warning start set"); ok( thresholds->warning->end == 33, "Warning end set"); ok( thresholds->critical == NULL, "Critical not set"); + thresholds = _parse_thresholds_string("5:33"); + ok( thresholds != NULL, "Threshold set for '5:33'"); + ok( thresholds->warning == NULL, "Warning set to NULL"); + ok( thresholds->critical->start_infinity == FALSE, "Start is right" ); + ok( thresholds->critical->start == 5, "Critical set to 5"); + ok( thresholds->critical->end == 33, "Critical set to 33"); + + thresholds = _parse_thresholds_string("/5:33"); + ok( thresholds != NULL, "Threshold set for '/5:33'"); + ok( thresholds->critical == NULL, "Critical set to NULL"); + ok( thresholds->warning->start_infinity == FALSE, "Start is right" ); + ok( thresholds->warning->start == 5, "Warning start set to 5"); + ok( thresholds->warning->end == 33, "Warning end set to 33"); + rc = _set_thresholds(&thresholds, "30", "60"); ok( rc == 0, "Thresholds ('30', '60') set"); ok( thresholds->warning->end == 30, "Warning set correctly"); @@ -145,6 +288,17 @@ main (int argc, char **argv) ok( get_status(30.0001, thresholds) == STATE_WARNING, "30.0001 - warning"); ok( get_status(69, thresholds) == STATE_CRITICAL, "69 - critical"); + thresholds = _parse_thresholds_string("-6.7:29 / 235.4:3333.33"); + ok( thresholds != NULL, "Threshold set for '-6.7:29 / 235.4:3333.33'"); + ok( thresholds->critical->start_infinity == FALSE, "Critical not starting at infinity"); + ok( thresholds->critical->start == -6.7, "Critical start right" ); + ok( thresholds->critical->end_infinity == FALSE, "Critical not ending at infinity"); + ok( thresholds->critical->end == 29, "Critical end right" ); + ok( thresholds->warning->start_infinity == FALSE, "Start is right" ); + ok( thresholds->warning->start == 235.4, "Warning set to 5"); + ok( thresholds->warning->end_infinity == FALSE, "End is right" ); + ok( thresholds->warning->end == 3333.33, "Warning set to 33"); + char *test; test = np_escaped_string("bob\\n"); ok( strcmp(test, "bob\n") == 0, "bob\\n ok"); -- cgit v1.2.3-74-g34f1