Ado

 view release on metacpan or  search on metacpan

t/plugin/markdown_renderer.t  view on Meta::CPAN

File::Spec::Functions->import(qw(catfile));

eval "use Text::MultiMarkdown;";
plan skip_all => "Text::MultiMarkdown required for this test" if $@;


my $t = Test::Mojo->new('Ado');

#Plugins are loaded already.
my $class = 'Ado::Plugin::MarkdownRenderer';
can_ok($class, 'md_to_html');
can_ok($class, 'config');
my $app     = $t->app;
my $plugin  = $class->new();
my $md_root = $plugin->config('md_root');
like($md_root, qr/doc$/, "ok md_root:$md_root");
like(
  $app->md_to_html('bg/no_title.md'),
  qr/<p>.+Няма\sЗаглавие/sx,
  'md_to_html works basicaly'
);

#cleanup any existing html
find(
    {   no_chdir => 1,
        wanted   => sub {
            ok(unlink($_), 'unlinked existing ' . $_)
              if $_ =~ /\.html$/;
        }
    },
    $md_root
);

#help
$t->get_ok('/help/bg/toc.md')->status_is(200)->text_is('h1' => 'Съдържание')
  ->text_is('title' => 'Съдържание')->content_like(qr/<aside.+id="toc"/, '<aside> ok')
  ->content_unlike(qr/<article.+id="/, 'no article in toc page ok');

#help created already
$t->get_ok('/help/bg/toc.md')->status_is(200)->text_is('h1' => 'Съдържание')
  ->text_is('title' => 'Съдържание');

#no_title
$t->get_ok('/help/bg/no_title.md')->status_is(200)
  ->text_is('title'    => 'Няма Заглавие!')
  ->text_is('h1.error' => 'Няма Заглавие!')
  ->content_like(qr/<article/, '<article> ok');

#all pages in toc
my $dom = $t->tx->res->dom;
$dom->find('#toc a')->each(
    sub {
        my $a    = shift;
        my $text = $a->text();
        $t->get_ok("$a->{href}")->status_is(200)->text_is('title' => $text)
          ->text_is('article h1' => $text);
    }
);

#not found
$t->get_ok('/help/bg/alabala.md')->status_is(404);

# Fails on https://travis-ci.org/kberov/Ado/builds/34763956 Why?
#->text_is('h1' => 'Page not found... yet!');


#test missing/default configuration
$plugin->{config} = {};
isa_ok($plugin->register($app) => $class);
is_deeply($plugin->config('md_file_sufixes') => ['.md'], 'default md_file_sufixes');
is($plugin->config('md_method') => 'markdown', 'default md_method');
is_deeply(
    $plugin->config('md_options') => {'use_wikilinks' => 1},
    'default md_options'
);
is($plugin->config('md_renderer') => 'Text::MultiMarkdown', 'default md_renderer');
like($md_root, qr|[\\/]public[\\/]doc$|, "ok md_root:$md_root");

#cleanup any created html during the tests
find(
    {   no_chdir => 1,
        wanted   => sub {
            ok(unlink($_), 'unlinked created ' . $_)
              if $_ =~ /\.html$/;
        }
    },
    $app->home->rel_file('public/doc/bg')
);

#test the helper markdown
$t->get_ok('/test/mark_down')->status_is(200)->text_is('li' => 'some text');


done_testing();



( run in 0.936 second using v1.01-cache-2.11-cpan-39bf76dae61 )