Jonathan Druart
393de82fc4
Cypress test files were ignored. This patch also deals with files in git index only. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
55 lines
1.8 KiB
Perl
Executable file
55 lines
1.8 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# 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 <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
use File::Slurp qw( read_file );
|
|
use File::Find;
|
|
use FindBin();
|
|
use Data::Dumper qw( Dumper );
|
|
use Test::More tests => 2;
|
|
|
|
my @vue_files;
|
|
push @vue_files, `git ls-files 'koha-tmpl/intranet-tmpl/prog/js/vue/*.vue'`;
|
|
my @js_files;
|
|
push @js_files, `git ls-files 'koha-tmpl/intranet-tmpl/prog/js/vue/*.js'`;
|
|
push @js_files, `git ls-files 'koha-tmpl/intranet-tmpl/prog/js/vue/*.ts'`;
|
|
push @js_files, `git ls-files 't/cypress/integration/*.ts'`;
|
|
|
|
|
|
my @not_tidy;
|
|
foreach my $filepath (@vue_files) {
|
|
chomp $filepath;
|
|
my $tidy = qx{yarn --silent run prettier --trailing-comma es5 --semi false --arrow-parens avoid $filepath};
|
|
my $content = read_file $filepath;
|
|
if ( $content ne $tidy ) {
|
|
push @not_tidy, $filepath;
|
|
}
|
|
}
|
|
|
|
is(scalar(@not_tidy), 0, 'No .vue file should be messy') or diag Dumper \@not_tidy;
|
|
|
|
@not_tidy = ();
|
|
foreach my $filepath (@js_files) {
|
|
chomp $filepath;
|
|
my $tidy = qx{yarn --silent run prettier --trailing-comma es5 --arrow-parens avoid $filepath};
|
|
my $content = read_file $filepath;
|
|
if ( $content ne $tidy ) {
|
|
push @not_tidy, $filepath;
|
|
}
|
|
}
|
|
|
|
is(scalar(@not_tidy), 0, 'No js file from vue directory should be messy') or diag Dumper \@not_tidy;
|