From d16456ac92899d432d8d5cc0f5b68474202341c2 Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Tue, 28 Jan 2025 15:42:46 +0000 Subject: [PATCH] Bug 36027: (follow-up) Adding check-all option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch add --check-all option, to run all the checks without specifying each one 1. Apply the patch 2. Run the command without any argument and confirm it blocks you and shows the help message. 3. Run the command with 'check-all' arguments (ex: ./search_for_data_inconsistencies.pl --check-all), confirm that all the check is done. Signed-off-by: David Nind Signed-off-by: Eric Bégin --- .../search_for_data_inconsistencies.pl | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/misc/maintenance/search_for_data_inconsistencies.pl b/misc/maintenance/search_for_data_inconsistencies.pl index 9373f6be2f..7469fc6025 100755 --- a/misc/maintenance/search_for_data_inconsistencies.pl +++ b/misc/maintenance/search_for_data_inconsistencies.pl @@ -38,6 +38,7 @@ our %options = ( 'check-title' => 0, 'check-age' => 0, 'check-loop' => 0, + 'check-all' => 0, 'skip-branch' => 0, 'skip-auth' => 0, 'skip-status' => 0, @@ -57,6 +58,7 @@ GetOptions( 'check-title' => sub { $options{'check-title'} = 1 }, 'check-age' => sub { $options{'check-age'} = 1 }, 'check-loop' => sub { $options{'check-loop'} = 1 }, + 'check-all' => sub { $options{'check-all'} = 1 }, 'skip-branch' => sub { $options{'skip-branch'} = 1 }, 'skip-auth' => sub { $options{'skip-auth'} = 1 }, 'skip-status' => sub { $options{'skip-status'} = 1 }, @@ -126,9 +128,18 @@ sub set_skip_options { # Set all check options to 1 if none are provided, considering skip options sub set_all_check_options_if_none_provided { - my $any_check_option_provided = grep { $options{$_} } grep { /^check-/ } keys %options; + my $check_all_option_provided = grep { $options{$_} && $_ eq "check-all" } grep { /^check-/ } keys %options; + if ($check_all_option_provided) { + foreach my $key ( keys %options ) { + if ( $key =~ /^check-/ ) { + my $skip_key = $key; + $skip_key =~ s/^check-/skip-/; - if ( !$any_check_option_provided ) { + # Set check option to 1 unless the corresponding skip option indicated + $options{$key} = 1 unless $options{$skip_key}; + } + } + } elsif ( 0 == grep { $options{$_} && $_ ne "check-all" } grep { /^check-/ } keys %options ) { handle_invalid_options("No options selected"); die; } @@ -743,6 +754,7 @@ Catch data inconsistencies in Koha database: --check-title Check for bibliographic records without a title --check-age Check for patrons with invalid age for category --check-loop Check for relationships that form guarantor loops + --check-all Run all checks without specifying any other option --skip-branch Skip checking for items without home or holding library --skip-auth Skip checking for authority records with invalid authority type --skip-status Skip checking for bibliographic records and items without an item type or with an invalid item type @@ -752,6 +764,4 @@ Catch data inconsistencies in Koha database: --skip-loop Skip checking for relationships that form guarantor loops --help Print usage information -Note: If no options are provided, all tests will be run. - =cut -- 2.39.5