HTML-DeferableCSS

 view release on metacpan or  search on metacpan

t/inline.t  view on Meta::CPAN

use Test::Most;

use HTML::DeferableCSS;

subtest "inline" => sub {

    my $css = HTML::DeferableCSS->new(
        css_root => 't/etc/css',
        aliases  => {
            test  => 'foo',
            reset => 1,
            ignore => 0,
        },
        inline_max => 512, # ensure reset not inlined
    );

    isa_ok $css, 'HTML::DeferableCSS';

    is $css->link_html('test'),
        '<link rel="stylesheet" href="/foo.css">',
        "link_html";

    my $cdata = $css->css_files->{test}->[0]->slurp_raw;
    my $link  = $css->link_html('reset');

    is $css->inline_html('test'), "<style>$cdata</style>", "inline";


    is $css->link_or_inline_html(qw[test reset ignore]),
        $css->inline_html('test') . $link,
        "link_or_inline";

};

subtest "inline (small inline_max)" => sub {

    my $css = HTML::DeferableCSS->new(
        css_root => 't/etc/css',
        aliases  => {
            test => 'foo',
        },
        inline_max => 5,
    );

    isa_ok $css, 'HTML::DeferableCSS';

    is $css->link_html('test'),
        '<link rel="stylesheet" href="/foo.css">',
        "link_html";

    my $cdata = $css->css_files->{test}->[0]->slurp_raw;

    is $css->inline_html('test'), "<style>$cdata</style>", "inline";

    is $css->link_or_inline_html('test'), $css->link_html('test'), "link_or_inline";

};

subtest "inline url" => sub {

    my $css = HTML::DeferableCSS->new(
        css_root => 't/etc/css',
        aliases  => {
            test => 'http://example.com',
        },
    );

    isa_ok $css, 'HTML::DeferableCSS';

    throws_ok {
        $css->inline_html('test');
    } qr/'test' refers to a URI/, "inline_html of a URL dies";

    is $css->link_or_inline_html('test'), $css->link_html('test'), "link_or_inline";

};

subtest "inline (0-byte file)" => sub {

    my $css = HTML::DeferableCSS->new(
        css_root => 't/etc/css',
        aliases  => {
            test => '0.css',
            ignore => 0,
        },
    );

    isa_ok $css, 'HTML::DeferableCSS';

    is $css->link_html('test'),
        '<link rel="stylesheet" href="/0.css">',
        "link_html";

    warning_like {
        is $css->inline_html('test'), "", "inline";
    } qr/empty file/, 'warning';

    is $css->link_or_inline_html('ignore', 'test'), "", "link_or_inline";

};

done_testing;



( run in 0.506 second using v1.01-cache-2.11-cpan-df04353d9ac )