1
0
mirror of https://github.com/c-kr/check_json.git synced 2025-04-03 15:53:45 +02:00

changed fixed string comparison to regex comparison.

Added custom header option.
Value comparison for WARNING status.
This commit is contained in:
nredi 2022-02-22 08:23:43 +01:00
parent 64b6b789a7
commit a9efe70a88

View File

@ -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 '.*' ) {