blob: 0069713a901a84dfc954c7966aa9e6233eb4312a [file] [log] [blame]
Nils Diewald5d1ffb42014-05-21 17:45:34 +00001use Mojo::Base -strict;
Nils Diewald5d1ffb42014-05-21 17:45:34 +00002use Test::More;
3use Test::Mojo;
Akron5e992162018-03-22 21:55:15 +01004use Mojo::File qw/path/;
Akrona17bc5b2018-10-05 13:35:01 +02005use utf8;
Nils Diewald5d1ffb42014-05-21 17:45:34 +00006
Nils Diewald2fe12e12015-03-06 16:47:06 +00007my $t = Test::Mojo->new('Kalamar');
Akrona0cd5962015-06-29 09:38:00 +02008
9$t->app->mode('production');
10
Nils Diewald996aa552014-12-02 03:26:44 +000011$t->get_ok('/')
12 ->status_is(200)
Nils Diewalda748b0e2015-05-19 22:54:06 +000013 ->text_is('title', 'KorAP - Corpus Analysis Platform')
Akron5e992162018-03-22 21:55:15 +010014 ->text_is('h1 span', 'KorAP - Corpus Analysis Platform')
15 ->element_exists('div.intro')
16 ->text_is('div.intro > p > strong', 'KorAP')
17 ;
18
Akron59992122019-10-29 11:28:45 +010019# Only routed when existing
20$t->get_ok('/settings')
21 ->status_is(404);
22
Akron5e992162018-03-22 21:55:15 +010023push @{$t->app->renderer->paths}, path(path(__FILE__)->dirname);
24
25$t->app->plugin(Localize => {
26 dict => {
27 Template => {
28 intro => 'custom/intro'
29 }
30 },
31 override => 1
32});
33
Akron0e1ed242018-10-11 13:22:00 +020034
Akron5e992162018-03-22 21:55:15 +010035$t->get_ok('/')
36 ->status_is(200)
37 ->text_is('title', 'KorAP - Corpus Analysis Platform')
38 ->text_is('h1 span', 'KorAP - Corpus Analysis Platform')
39 ->element_exists('div.intro')
Akrona17bc5b2018-10-05 13:35:01 +020040 ->text_is('div.intro h2', 'This is a custom intro page!')
41 ->element_exists('meta[name="DC.description"][content="KorAP - Corpus Analysis Platform"]')
42 ->element_exists('meta[name="keywords"][content^="KorAP"]')
43 ->element_exists('body[itemscope][itemtype="http://schema.org/WebApplication"]')
44 ;
Nils Diewald5d1ffb42014-05-21 17:45:34 +000045
Akrona0cd5962015-06-29 09:38:00 +020046$t->get_ok('/huhuhuhuhu')
47 ->status_is(404)
48 ->text_is('title', 'KorAP: 404 - Page not found')
49 ->text_is('h1 span', 'KorAP: 404 - Page not found');
50
Nils Diewald5d1ffb42014-05-21 17:45:34 +000051done_testing();