Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 1 | use Mojo::Base -strict; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 2 | use Test::More; |
| 3 | use Test::Mojo; |
Akron | 5e99216 | 2018-03-22 21:55:15 +0100 | [diff] [blame] | 4 | use Mojo::File qw/path/; |
Akron | a17bc5b | 2018-10-05 13:35:01 +0200 | [diff] [blame] | 5 | use utf8; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 6 | |
Nils Diewald | 2fe12e1 | 2015-03-06 16:47:06 +0000 | [diff] [blame] | 7 | my $t = Test::Mojo->new('Kalamar'); |
Akron | a0cd596 | 2015-06-29 09:38:00 +0200 | [diff] [blame] | 8 | |
| 9 | $t->app->mode('production'); |
| 10 | |
Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 11 | $t->get_ok('/') |
| 12 | ->status_is(200) |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 13 | ->text_is('title', 'KorAP - Corpus Analysis Platform') |
Akron | 5e99216 | 2018-03-22 21:55:15 +0100 | [diff] [blame] | 14 | ->text_is('h1 span', 'KorAP - Corpus Analysis Platform') |
| 15 | ->element_exists('div.intro') |
| 16 | ->text_is('div.intro > p > strong', 'KorAP') |
| 17 | ; |
| 18 | |
| 19 | push @{$t->app->renderer->paths}, path(path(__FILE__)->dirname); |
| 20 | |
| 21 | $t->app->plugin(Localize => { |
| 22 | dict => { |
| 23 | Template => { |
| 24 | intro => 'custom/intro' |
| 25 | } |
| 26 | }, |
| 27 | override => 1 |
| 28 | }); |
| 29 | |
| 30 | $t->get_ok('/') |
| 31 | ->status_is(200) |
| 32 | ->text_is('title', 'KorAP - Corpus Analysis Platform') |
| 33 | ->text_is('h1 span', 'KorAP - Corpus Analysis Platform') |
| 34 | ->element_exists('div.intro') |
Akron | a17bc5b | 2018-10-05 13:35:01 +0200 | [diff] [blame] | 35 | ->text_is('div.intro h2', 'This is a custom intro page!') |
| 36 | ->element_exists('meta[name="DC.description"][content="KorAP - Corpus Analysis Platform"]') |
| 37 | ->element_exists('meta[name="keywords"][content^="KorAP"]') |
| 38 | ->element_exists('body[itemscope][itemtype="http://schema.org/WebApplication"]') |
| 39 | ; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 40 | |
Akron | a0cd596 | 2015-06-29 09:38:00 +0200 | [diff] [blame] | 41 | $t->get_ok('/huhuhuhuhu') |
| 42 | ->status_is(404) |
| 43 | ->text_is('title', 'KorAP: 404 - Page not found') |
| 44 | ->text_is('h1 span', 'KorAP: 404 - Page not found'); |
| 45 | |
Akron | a17bc5b | 2018-10-05 13:35:01 +0200 | [diff] [blame] | 46 | $t->get_ok('/?q=hui') |
| 47 | ->status_is(200) |
| 48 | ->text_is('title', 'KorAP: Find »hui« with Poliqarp') |
| 49 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »hui« with Poliqarp"]') |
| 50 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
| 51 | ; |
| 52 | |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 53 | done_testing(); |