From a9efe70a8864ef1cb27b300818b155ac0cc51ea1 Mon Sep 17 00:00:00 2001 From: nredi Date: Tue, 22 Feb 2022 08:23:43 +0100 Subject: [PATCH] changed fixed string comparison to regex comparison. Added custom header option. Value comparison for WARNING status. --- check_json.pl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/check_json.pl b/check_json.pl index dfa60f8..be5fc08 100755 --- a/check_json.pl +++ b/check_json.pl @@ -134,8 +134,11 @@ if ($np->opts->ignoressl) { if ($np->opts->verbose) { (print Dumper ($ua))}; my $response; + +#Add custom header values. example below my %headers = ('x-Key' => 'x-Value'); -$headers{'x-API-KEY'} = 'ghi-unit-testToKeN-1235432'; +$headers{'xkeyx'} = 'xtokenx'; + if ($np->opts->headers) { foreach my $key ($np->opts->headers eq '*' ? map { "{$_}"} sort keys %$response : split('#', $np->opts->headers)) { my @header = split(':', $key); @@ -188,7 +191,7 @@ foreach my $attribute (sort keys %attributes){ my $cmpv1 = ".*"; $cmpv1 = $np->opts->expect if (defined( $np->opts->expect ) ); - my $cmpv2 = ".*"; + my $cmpv2 = ""; $cmpv2 = $np->opts->warningstr if (defined( $np->opts->warningstr ) ); if ( $cmpv1 eq '.*' ) {