Bugzilla – Attachment 143385 Details for
Bug 32130
Vue files must be kept tidy
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32130: Add a test to ensure vue files will be kept tidy
Bug-32130-Add-a-test-to-ensure-vue-files-will-be-k.patch (text/plain), 1.96 KB, created by
Jonathan Druart
on 2022-11-08 06:16:59 UTC
(
hide
)
Description:
Bug 32130: Add a test to ensure vue files will be kept tidy
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2022-11-08 06:16:59 UTC
Size:
1.96 KB
patch
obsolete
>From b14775d3a9f84b72e4b3ecfb7af6ef3e39a05e48 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 8 Nov 2022 07:16:04 +0100 >Subject: [PATCH] Bug 32130: Add a test to ensure vue files will be kept tidy > >--- > xt/vue_tidy.t | 45 +++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 45 insertions(+) > create mode 100644 xt/vue_tidy.t > >diff --git a/xt/vue_tidy.t b/xt/vue_tidy.t >new file mode 100644 >index 00000000000..122aea1f508 >--- /dev/null >+++ b/xt/vue_tidy.t >@@ -0,0 +1,45 @@ >+#!/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 => 1; >+ >+my $vue_dir = "$FindBin::Bin/../koha-tmpl/intranet-tmpl/prog/js/vue"; >+ >+my @files; >+sub wanted { >+ my $name = $File::Find::name; >+ push @files, $name >+ if $name =~ /\.vue$/; >+} >+find({ wanted => \&wanted, no_chdir => 1 }, $vue_dir); >+ >+my @not_tidy; >+foreach my $filepath (@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; >-- >2.25.1
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 32130
:
143385
|
143387
|
143613
|
143775