From 636da9a1870676a15a7c2ab297588124a5a13741 Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Tue, 28 Jan 2025 12:46:15 +0000 Subject: [PATCH] Bug 36027: (follow-up) Adding check-all option 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. --- .../search_for_data_inconsistencies.pl | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/misc/maintenance/search_for_data_inconsistencies.pl b/misc/maintenance/search_for_data_inconsistencies.pl index ba967e8793..51ae5cfcc2 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 }, @@ -125,9 +127,19 @@ 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; } -- 2.34.1