DBRev 24.06.00.000: Start of a new release cycle
[koha.git] / xt / find-missing-op-in-forms.t
1 #!/usr/bin/perl
2
3 # Copyright 2024 Koha development team
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21 use Test::More tests => 1;
22 use File::Slurp;
23 use Data::Dumper;
24
25 my @files;
26
27 # OPAC
28 push @files, `git ls-files 'koha-tmpl/opac-tmpl/bootstrap/en/*.tt'`;
29 push @files, `git ls-files 'koha-tmpl/opac-tmpl/bootstrap/en/*.inc'`;
30
31 # Staff
32 push @files, `git ls-files 'koha-tmpl/intranet-tmpl/prog/en/*.tt'`;
33 push @files, `git ls-files 'koha-tmpl/intranet-tmpl/prog/en/*.inc'`;
34
35 my @errors;
36 for my $file ( @files ) {
37     chomp $file;
38     my @e = catch_missing_op($file);
39     push @errors, sprintf "%s:%s", $file, join (",", @e) if @e;
40 }
41
42 is(
43     @errors, 0,
44     "The <form> in the following files are missing it's corresponding op parameter, or op does not start with 'cud-' (see bug 34478)"
45 ) or diag( Dumper @errors );
46
47 sub catch_missing_op {
48     my ($file) = @_;
49
50     my @lines = read_file($file);
51     my @errors;
52     return unless grep { $_ =~ m|<form| } @lines;
53     my ( $in_form, $closed_form, $line_open_form, $has_op, $op_value );
54     my $line_number = 0;
55     for my $line (@lines) {
56         $line_number++;
57         if ( $line =~ m{^(\s*)<form.*method=('|")post('|")}i ) {
58             $in_form        = 1;
59             $line_open_form = $line_number;
60         }
61         if ( $in_form && $line =~ m{name="op"} ) {
62             $has_op = 1;
63             if ( $line =~ m{value="(.*)"} ) {
64                 $op_value = $1;
65             }
66         }
67         if ( $in_form && $line =~ m{</form} ) {
68             $closed_form = 0;
69             if ($has_op) {
70                 if ( $op_value !~ m{^cud-} && $op_value !~ m{^\[%} ) {
71                     push @errors, $line_open_form;
72                 }
73             } else {
74                 push @errors, $line_open_form;
75             }
76             $in_form = 0;
77         }
78     }
79     return @errors;
80 }