| use Mojo::Base -strict; |
| use lib '../lib', 'lib'; |
| use Test::More; |
| use Test::Mojo; |
| |
| # Test the documentation |
| |
| my $t = Test::Mojo->new('Kalamar'); |
| |
| # Embedding |
| $t->get_ok('/doc/ql/poliqarp-plus') |
| ->status_is(200) |
| ->text_like('title', qr/poliqarp/i) |
| ->element_exists('aside.active') |
| ->element_exists('main.tutorial') |
| ->element_exists('header') |
| ->element_exists('aside nav') |
| ->text_is('h1 span', 'KorAP: Poliqarp+') |
| ->element_exists('li.folded.active') |
| ->text_is('li.folded.active a', 'Poliqarp+'); |
| |
| $t->get_ok('/doc/ql/poliqarp-plus?embedded=true') |
| ->status_is(200) |
| ->text_like('title', qr/poliqarp/i) |
| ->element_exists('aside.active') |
| ->element_exists('main.tutorial') |
| ->element_exists_not('header') |
| ->element_exists('li.folded.active') |
| ->text_is('li.folded.active a', 'Poliqarp+'); |
| |
| # Languages |
| $t->get_ok('/' => { 'Accept-Language' => 'de-DE, en-US, en' }) |
| ->status_is(200) |
| ->text_is("title", "KorAP - Korpusanalyseplattform der nächsten Generation"); |
| |
| $t->get_ok('/' => { 'Accept-Language' => 'en-US, en, de-DE' }) |
| ->status_is(200) |
| ->text_is("title", "KorAP - Corpus Analysis Platform"); |
| |
| |
| # Pages |
| $t->get_ok('/doc/ql/poliqarp-plus' => { 'Accept-Language' => 'en-US, en, de-DE' }) |
| ->status_is(200) |
| ->text_is("title", "KorAP: Poliqarp+") |
| ->text_is('main section > h3', 'Simple Segments'); |
| |
| $t->get_ok('/doc/ql/poliqarp-plus' => { 'Accept-Language' => 'de-DE, en-US, en' }) |
| ->status_is(200) |
| ->text_is("title", "KorAP: Poliqarp+") |
| ->text_is('main section > h3', 'Einfache Segmente'); |
| |
| |
| $t->get_ok('/doc/ql/annis' => { 'Accept-Language' => 'en-US, en, de-DE' }) |
| ->status_is(200) |
| ->text_is("title", "KorAP: Annis QL"); |
| |
| # Check corpus examples |
| $t->get_ok('/doc/ql/poliqarp-plus') |
| ->status_is(200) |
| ->text_is('#segments pre.query.tutorial:nth-of-type(1) code', 'Baum'); |
| |
| my $app = $t->app; |
| |
| $app->plugin( |
| 'Localize' => { |
| dict => { |
| Q => { |
| newexample => { |
| poliqarp => { |
| simple => '** Beispiel' |
| } |
| } |
| } |
| } |
| } |
| ); |
| |
| # Set other example query |
| $app->config('Kalamar')->{examplecorpus} = 'newexample'; |
| |
| is($app->loc('Q_poliqarp_simple'), '** Beispiel'); |
| |
| # Check corpus examples |
| $t->get_ok('/doc/ql/poliqarp-plus') |
| ->status_is(200) |
| ->text_is('#segments pre.query.tutorial:nth-of-type(1) code', 'Beispiel') |
| ->text_is('#segments pre.query.tutorial:nth-of-type(1) span', '*'); |
| |
| done_testing(); |