blob: 0ebd0faa06adf125a47f825c926f261f5838d9fe [file] [log] [blame]
Akron9490e3b2019-10-17 12:26:29 +02001use Mojo::Base -strict;
2use Test::More;
3use Test::Mojo;
Akrona24af0a2021-01-11 17:38:40 +01004use Mojo::File qw/path/;
Akron9490e3b2019-10-17 12:26:29 +02005
6# Test the documentation
7
8my $t = Test::Mojo->new('Kalamar');
9
10my $app = $t->app;
11
12is($app->under_construction, '<p>Under Construction!</p>');
13
Akron3cfa26d2019-10-24 15:17:34 +020014is($app->embedded_link_to('doc', 'privacy', 'privacy'), '<a class="embedded-link" href="/doc/privacy">privacy</a>');
Marc Kupietzfcadda62021-09-08 09:06:25 +020015is($app->embedded_link_to('doc', 'privacy', 'development', 'privacy'), '<a class="embedded-link" href="/doc/development/privacy">privacy</a>');
Akron9490e3b2019-10-17 12:26:29 +020016
17
18my $c = $app->build_controller;
19$c->title('Example');
20is($c->page_title, '<h2 id="page-top">Example</h2>');
21
Akron90be03b2020-02-03 16:13:37 +010022$t->get_ok('/' => { 'X-Forwarded-Host' => 'korap2.ids-mannheim.de'})
23 ->attr_is('meta[property="og:url"]', 'content', '//korap2.ids-mannheim.de/')
24 ;
25
Akronb7b91c52021-01-27 17:46:52 +010026# Test csp
Akronbc6b3f22021-01-13 14:53:12 +010027$t->get_ok('/')
28 ->header_like('Content-Security-Policy', qr!default-src 'self';!)
29 ->header_like('Content-Security-Policy', qr!media-src 'none';!)
30 ->header_like('Content-Security-Policy', qr!object-src 'self';!)
Akronb7b91c52021-01-27 17:46:52 +010031 ->header_like('Content-Security-Policy', qr!nonce-!)
Akronaef5cf22021-06-21 11:45:54 +020032 ->header_like('Content-Security-Policy', qr!frame-ancestors 'self';!)
Akronb7b91c52021-01-27 17:46:52 +010033 ->content_like(qr/<script nonce/)
34 ->content_like(qr/document\.body\.classList\.remove\(\'no-js\'\);/)
Akron807225b2021-01-13 18:00:13 +010035 ->header_is('X-Content-Type-Options', 'nosniff')
Akron5b6d7272021-01-21 11:26:02 +010036 ->header_is('Access-Control-Allow-Methods','GET, POST, OPTIONS')
Akron52b32d02021-01-21 17:37:19 +010037 ->header_is('X-XSS-Protection', '1; mode=block')
Akronbc6b3f22021-01-13 14:53:12 +010038 ;
39
Akrona24af0a2021-01-11 17:38:40 +010040# Test additions
41$t = Test::Mojo->new('Kalamar' => {
42 'Localize' => {
43 dict => {
44 en_howToCite => 'Citation Help',
45 de_howToCite => 'Zitierhilfe',
46 en_recentCorpusPub => 'Recent publications to refer to DeReKo as linguistic research data',
47 de_recentCorpusPub => 'Neuere Publikationen zu DeReKo als linguistische Forschungsdatengrundlage',
48 en_recentToolPub => 'Recent publications to refer to KorAP as a tool for research',
49 de_recentToolPub => 'Neuere Publikationen zu KorAP als Forschungswerkzeug',
50 }
51 },
52 'TagHelpers-ContentBlock' => {
53 footer => [
54 {
55 inline => '<%= link_to loc("howToCite") => url_for(doc => { page => "faq" })->fragment("howToCite") %>',
56 position => 75
57 }
58 ],
59 faq => [
60 {
61 position => 50,
62 inline => <<'HOWTOCITE'
63<section>
64 <h3 id="howToCite"><%= loc 'howToCite' %></h3>
65%= include 'custom/partial/citation'
66</section>
67HOWTOCITE
68 }
69 ]
70 }
71});
72
73push @{$t->app->renderer->paths}, path(path(__FILE__)->dirname);
74
75$t->get_ok('/')
76 ->text_is('footer a:nth-child(1)', 'Citation Help')
77 ->attr_like('footer a:nth-child(1)', 'href', qr'/doc/+faq#howToCite');
78
79$t->get_ok('/doc//faq#howToCite')
80 ->text_is('#howToCite', 'Citation Help')
81 ->text_is('section > section h4', 'Recent publications to refer to DeReKo as linguistic research data')
82 ;
83
Akron9490e3b2019-10-17 12:26:29 +020084done_testing;
85
861;