Bugzilla – Attachment 180261 Details for
Bug 36027
search_for_data_inconsistencies.pl - add options so you can choose what checks to run
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36027: (follow-up) Adding check-all option
Bug-36027-follow-up-Adding-check-all-option.patch (text/plain), 3.68 KB, created by
Eric Bégin
on 2025-04-02 08:39:56 UTC
(
hide
)
Description:
Bug 36027: (follow-up) Adding check-all option
Filename:
MIME Type:
Creator:
Eric Bégin
Created:
2025-04-02 08:39:56 UTC
Size:
3.68 KB
patch
obsolete
>From d16456ac92899d432d8d5cc0f5b68474202341c2 Mon Sep 17 00:00:00 2001 >From: Hammat Wele <hammat.wele@inlibro.com> >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 <david@davidnind.com> >Signed-off-by: Eric Bégin <eric.begin@inlibro.com> >--- > .../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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 36027
:
161852
|
161953
|
161954
|
162162
|
162349
|
162351
|
162540
|
162546
|
163259
|
163956
|
166117
|
167766
|
167787
|
168953
|
168954
|
169228
|
169229
|
170847
|
170848
|
170849
|
173269
|
173270
|
173271
|
173556
|
177270
|
177283
|
177438
|
177439
|
177440
|
177441
|
177442
|
177443
|
177444
|
177849
|
177850
|
177851
|
177852
|
177853
|
177854
|
180257
|
180258
|
180259
|
180260
| 180261 |
180262