File: leaks.t

package info (click to toggle)
libjavascript-minifier-xs-perl 0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 220 kB
  • sloc: perl: 519; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 1,079 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/perl

use strict;
use warnings;
use Test::More;
use File::Which qw(which);
use JavaScript::Minifier::XS qw(minify);

BEGIN {
    eval "use Test::LeakTrace";
    plan skip_all => "Test::LeakTrace required for leak testing" if $@;
}
use Test::LeakTrace;

###############################################################################
## What CSS docs do we want to try compressing?
my $curl = which('curl');
my @libs = (
    'http://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.js',
    'http://code.jquery.com/jquery-3.5.1.js',
    'http://cdnjs.cloudflare.com/ajax/libs/react/17.0.1/cjs/react.development.js',
);

###############################################################################
# Make sure we're not leaking memory when we minify
foreach my $url (@libs) {
    subtest $url => sub {
        my $js = qx{$curl --silent $url};
        ok $js, 'got some JS to minify';
        no_leaks_ok { minify($js) } "no leaks when minifying; $url";
    };
}

###############################################################################
done_testing();