From 45765836303eab902382b8fa39ddb30bc91684a8 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 4 Mar 2026 11:14:52 +0100 Subject: [PATCH] Bug 38365: Add xt test --- xt/find-missing-nonce.t | 62 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100755 xt/find-missing-nonce.t diff --git a/xt/find-missing-nonce.t b/xt/find-missing-nonce.t new file mode 100755 index 00000000000..10fbba2dc13 --- /dev/null +++ b/xt/find-missing-nonce.t @@ -0,0 +1,62 @@ +#!/usr/bin/perl + +# Copyright 2026 Koha development team +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; +use Test::More tests => 3; +use Test::NoWarnings; +use File::Slurp; +use Data::Dumper; + +use Koha::Devel::Files; + +my $dev_files = Koha::Devel::Files->new; +my @files = $dev_files->ls_tt_files; +ok( @files > 0, 'We should test something' ); + +my @errors; +for my $file (@files) { + my @e = catch_missing_nonce($file); + push @errors, sprintf "%s:%s", $file, join( ",", @e ) if @e; +} + +is( + @errors, 0, + "Not all