From b96b19e54ab5bc88bb4993af8ee15c3518af4461 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 17 Mar 2025 11:00:39 +0100 Subject: [PATCH] Bug 39353: Prevent tidy.pl to empty template files In ktd context: if host's node_modules ktd has been generated prior to bug 38644, the template-toolkit's prettier plugin is not there and prettier will empty the file. It seems to be a prettier bug, and the following behaviour is confusing: From the host: % yarn run prettier --write koha-tmpl/intranet-tmpl/prog/en/modules/test.tt yarn run v1.22.22 $ prettier koha-tmpl/intranet-tmpl/prog/en/modules/test.tt [error] Cannot find module '@koha-community/prettier-plugin-template-toolkit' [error] Require stack: [error] - /home/jonathan/workspace/koha/node_modules/prettier/index.js [error] - /home/jonathan/workspace/koha/node_modules/prettier/cli.js [error] - /home/jonathan/workspace/koha/node_modules/prettier/bin-prettier.js error Command failed with exit code 1. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. => The file is not modified Within ktd: $ yarn run prettier --write koha-tmpl/intranet-tmpl/prog/en/modules/test.tt yarn run v1.22.22 $ prettier --write koha-tmpl/intranet-tmpl/prog/en/modules/test.tt koha-tmpl/intranet-tmpl/prog/en/modules/test.tt 6ms Done in 0.39s. => No error, and the file is emptied! It seems that the plugin is found by prettier but not used (?) Test plan: 1. Follow this from step 1 to 14 https://gitlab.com/koha-community/koha-testing-docker/-/issues/483 2. Apply patch 3. misc/devel/tidy.pl --no-write koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt It should print the new error message 4. Make a change to a .tt file, commit 5. There will be a message about and issue with prettier. But it will still commit. It's expect. 6. Inspect and see that the commit has the changes Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Emily Lamancusa --- misc/devel/tidy.pl | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/misc/devel/tidy.pl b/misc/devel/tidy.pl index 57692eba57e..9a0213d8f3b 100755 --- a/misc/devel/tidy.pl +++ b/misc/devel/tidy.pl @@ -184,13 +184,9 @@ sub tidy_tt { my ( $success, $error_message, $full_buf, $stdout_buf, $stderr_buf ); my ( $file_fh, $file ); # Keep this scope for $file_fh, or the file will be deleted after the following block - if ($no_write) { - $file_fh = File::Temp->new( CLEANUP => 1, SUFFIX => '.tt', DIR => '.' ); - $file = $file_fh->filename; - write_file( $file, read_file($original_file) ); - } else { - $file = $original_file; - } + $file_fh = File::Temp->new( CLEANUP => 1, SUFFIX => '.tt', DIR => '.' ); + $file = $file_fh->filename; + write_file( $file, read_file($original_file) ); for my $pass ( 1 .. 2 ) { ( $success, $error_message, $full_buf, $stdout_buf, $stderr_buf ) = @@ -207,8 +203,13 @@ sub tidy_tt { $content =~ s#\n*( *)\n*#\n$1\n#g; $content =~ s#(\[%\s*SWITCH[^\]]*\]\n)\n#$1#g; + unless ($content) { + return ( 0, "Something went wrong, Prettier generated an empty file.", [], [], [] ); + } if ( $no_write && $pass == 2 ) { print $content; + } elsif ( $pass == 2 ) { + write_file( $original_file, $content ); } else { write_file( $file, $content ); } -- 2.34.1