Akron | ccd9d7d | 2020-09-22 09:51:19 +0200 | [diff] [blame] | 1 | use Mojo::Base -strict; |
| 2 | use Test::More; |
| 3 | use Test::Mojo; |
| 4 | use Mojo::File qw/tempfile/; |
| 5 | |
| 6 | # Test the documentation |
| 7 | my $t = Test::Mojo->new('Kalamar'); |
| 8 | |
| 9 | my $temp = tempfile(); |
| 10 | |
| 11 | $temp->spurt(<<SCRIPT); |
| 12 | [{ |
| 13 | 'name' : 'Export', |
| 14 | 'desc' : 'Exports Kalamar results', |
| 15 | 'embed' : [{ |
| 16 | 'panel' : 'result', |
| 17 | 'title' : 'exports KWICs and snippets', |
| 18 | 'icon' : "\uf019", |
| 19 | 'classes' : ['button-icon','plugin'], |
| 20 | 'onClick' : { |
| 21 | 'action' : 'addWidget', |
| 22 | 'template' : 'http://localhost:7777/res/export.html' |
| 23 | } |
| 24 | }] |
| 25 | }] |
| 26 | SCRIPT |
| 27 | |
| 28 | $t->app->plugin('Plugins' => { |
| 29 | default_plugins => $temp->to_string |
| 30 | }); |
| 31 | |
| 32 | $t->get_ok('/') |
| 33 | ->text_is('h1 span', 'KorAP - Corpus Analysis Platform') |
| 34 | ->content_like(qr!KorAP\.Plugins\s*=\s*\[!) |
| 35 | ->content_like(qr!<script>\/\/<\!\[CDATA\[!) |
| 36 | ; |
| 37 | |
| 38 | done_testing; |