Code-TidyAll
view release on metacpan or search on metacpan
t/lib/TestFor/Code/TidyAll/Plugin/JSBeautify.pm view on Meta::CPAN
package TestFor::Code::TidyAll::Plugin::JSBeautify;
use Encode qw(encode);
use Path::Tiny qw( cwd );
use Test::Class::Most parent => 'TestFor::Code::TidyAll::Plugin';
use Test::Warnings qw( warnings );
sub _extra_path {
cwd()->child(qw( node_modules .bin ));
}
sub test_main : Tests {
my $self = shift;
return unless $self->require_executable('node');
return unless $self->require_executable('js-beautify');
my $source = 'sp.toggleResult=function(id){foo(id)}';
$self->tidyall(
source => $source,
expect_tidy => 'sp.toggleResult = function(id) {\n foo(id)\n}',
);
$self->tidyall(
source => $source,
conf => { argv => '--indent-size 3 --brace-style expand' },
expect_tidy => 'sp.toggleResult = function(id)\n{\n foo(id)\n}',
);
}
sub test_utf8 : Tests {
my $self = shift;
return unless $self->require_executable('node');
return unless $self->require_executable('js-beautify');
my $contents = encode( 'UTF-8', qq{var unicode = "Unicode - \x{263a}";} );
my $expect = encode( 'UTF-8', qq{var unicode = "Unicode - \x{263a}";} );
local $SIG{__WARN__} = sub { Carp::cluck(@_) };
is_deeply(
[
warnings {
$self->tidyall(
source => $contents,
expect_tidy => $expect,
desc => 'tidy UTF-8 from string',
);
}
],
[],
'no warnings tidying UTF-8 source'
);
my $file = $self->{root_dir}->child('test.js');
$file->spew($contents);
is_deeply(
[
warnings {
$self->tidyall(
source_file => $file,
expect_tidy => $expect,
desc => 'tidy UTF-8 from file',
);
}
],
[],
'no warnings tidying UTF-8 source'
);
}
1;
( run in 1.106 second using v1.01-cache-2.11-cpan-39bf76dae61 )