Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 1 | use Mojo::Base -strict; |
| 2 | use Test::Mojo; |
| 3 | use Test::More; |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 4 | use Mojo::File qw/path/; |
Akron | 909ed08 | 2019-12-11 21:38:27 +0100 | [diff] [blame] | 5 | use Kalamar::Controller::Search; |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 6 | |
| 7 | |
| 8 | ##################### |
| 9 | # Start Fake server # |
| 10 | ##################### |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 11 | my $mount_point = '/realapi/'; |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 12 | $ENV{KALAMAR_API} = $mount_point; |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 13 | |
| 14 | my $t = Test::Mojo->new('Kalamar'); |
| 15 | |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 16 | # Mount fake backend |
| 17 | # Get the fixture path |
Akron | 73f3608 | 2018-10-25 15:34:59 +0200 | [diff] [blame] | 18 | my $fixtures_path = path(Mojo::File->new(__FILE__)->dirname, 'server'); |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 19 | my $fake_backend = $t->app->plugin( |
| 20 | Mount => { |
| 21 | $mount_point => |
Akron | 73f3608 | 2018-10-25 15:34:59 +0200 | [diff] [blame] | 22 | $fixtures_path->child('mock.pl') |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 23 | } |
| 24 | ); |
| 25 | # Configure fake backend |
| 26 | $fake_backend->pattern->defaults->{app}->log($t->app->log); |
| 27 | |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 28 | my $q = qr!(?:\"|")!; |
| 29 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 30 | # Query passed |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 31 | my $err = $t->get_ok('/?q=baum') |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 32 | ->status_is(200) |
Akron | 69481a4 | 2021-03-22 10:31:16 +0100 | [diff] [blame] | 33 | ->content_type_is('text/html;charset=UTF-8') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 34 | |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 35 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 36 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 37 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
Akron | dffa939 | 2018-10-12 16:26:09 +0200 | [diff] [blame] | 38 | |
| 39 | # Total results |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 40 | ->text_is('#total-results', 51) |
Akron | dffa939 | 2018-10-12 16:26:09 +0200 | [diff] [blame] | 41 | |
| 42 | # Total pages |
Akron | 18a2a27 | 2020-06-16 11:47:38 +0200 | [diff] [blame] | 43 | ->element_count_is('#pagination > a', 5) |
Akron | dffa939 | 2018-10-12 16:26:09 +0200 | [diff] [blame] | 44 | |
Akron | 9bd140e | 2021-07-27 16:20:03 +0200 | [diff] [blame] | 45 | ->element_exists_not('#resultinfo > #pagination') |
| 46 | |
Akron | dffa939 | 2018-10-12 16:26:09 +0200 | [diff] [blame] | 47 | # api_response |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 48 | ->content_like(qr/${q}authorized${q}:null/) |
| 49 | ->content_like(qr/${q}pubDate${q},${q}subTitle${q},${q}author${q}/) |
Akron | dffa939 | 2018-10-12 16:26:09 +0200 | [diff] [blame] | 50 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 51 | # No cutOff |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 52 | ->content_unlike(qr!${q}cutOff${q}:true!) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 53 | |
Akron | dffa939 | 2018-10-12 16:26:09 +0200 | [diff] [blame] | 54 | ->element_exists('li[data-text-sigle=GOE/AGI/00000]') |
| 55 | ->element_exists('li:nth-of-type(1) div.flop') |
| 56 | ->element_exists('li[data-text-sigle=GOE/AGI/00001]') |
| 57 | ->element_exists('li:nth-of-type(2) div.flip') |
| 58 | |
| 59 | # Match1 |
| 60 | ->element_exists('li:nth-of-type(1)' . |
| 61 | '[data-match-id="p2030-2031"]' . |
| 62 | '[data-text-sigle="GOE/AGI/00000"]' . |
| 63 | '[id="GOE/AGI/00000#p2030-2031"]' . |
| 64 | '[data-available-info^="base/s=spans"]' . |
| 65 | '[data-info^="{"]') |
| 66 | ->text_is('li:nth-of-type(1) div.meta', 'GOE/AGI/00000') |
| 67 | ->element_exists('li:nth-of-type(1) div.match-main div.match-wrap div.snippet') |
| 68 | ->element_exists('li:nth-of-type(1) div.snippet.startMore.endMore') |
| 69 | ->text_like('li:nth-of-type(1) div.snippet span.context-left',qr!sie etwas bedeuten!) |
| 70 | ->text_like('li:nth-of-type(1) div.snippet span.context-left',qr!sie etwas bedeuten!) |
| 71 | ->text_is('li:nth-of-type(1) div.snippet span.match mark','Baum') |
| 72 | ->text_like('li:nth-of-type(1) div.snippet span.context-right',qr!es war!) |
| 73 | ->text_is('li:nth-of-type(1) p.ref strong', 'Italienische Reise') |
| 74 | ->text_like('li:nth-of-type(1) p.ref', qr!by Goethe, Johann Wolfgang!) |
| 75 | ->text_is('li:nth-of-type(1) p.ref time[datetime=1982]', 1982) |
| 76 | ->text_is('li:nth-of-type(1) p.ref span.sigle', '[GOE/AGI/00000]') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 77 | ->header_isnt('X-Kalamar-Cache', 'true') |
Akron | 26d57f2 | 2021-09-10 16:48:57 +0200 | [diff] [blame] | 78 | ->attr_is('#pagination','data-page','1') |
| 79 | ->attr_is('#pagination','data-total','3') |
| 80 | ->attr_is('#pagination','data-count','25') |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 81 | ->tx->res->dom->at('#error') |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 82 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 83 | is(defined $err ? $err->text : '', ''); |
| 84 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 85 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 86 | $t->get_ok('/?q=[orth=das') |
Akron | 7093b81 | 2018-10-19 17:28:21 +0200 | [diff] [blame] | 87 | ->status_is(400) |
| 88 | ->text_is('div.notify-error:nth-of-type(1)', '302: Parantheses/brackets unbalanced.') |
Akron | bc33beb | 2018-11-30 13:46:08 +0100 | [diff] [blame] | 89 | ->element_exists('#search') |
Akron | 7093b81 | 2018-10-19 17:28:21 +0200 | [diff] [blame] | 90 | ->text_like('div.notify-error:nth-of-type(2)', qr!302: Could not parse query .+? \[orth=das.+?!) |
| 91 | ; |
| 92 | |
Akron | 73f3608 | 2018-10-25 15:34:59 +0200 | [diff] [blame] | 93 | # Check for query error with ql (from remote.t) |
| 94 | $t->get_ok('/?q=[orth=das&ql=poliqarp') |
| 95 | ->element_exists('.notify-error') |
| 96 | ->text_is('.notify-error', '302: Parantheses/brackets unbalanced.') |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 97 | ->content_like(qr!data-koralquery=!) |
Akron | 3c390c4 | 2020-03-30 09:06:21 +0200 | [diff] [blame] | 98 | ->text_is('.no-results:nth-of-type(1)', 'Unable to perform the action.') |
Akron | 73f3608 | 2018-10-25 15:34:59 +0200 | [diff] [blame] | 99 | ; |
| 100 | |
| 101 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 102 | # Query with partial cache (for total results) |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 103 | $err = $t->get_ok('/?q=baum') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 104 | ->status_is(200) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 105 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 106 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
| 107 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
| 108 | ->header_isnt('X-Kalamar-Cache', 'true') |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 109 | ->content_like(qr!${q}cutOff${q}:true!) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 110 | ->text_is('#total-results', 51) |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 111 | ->tx->res->dom->at('#error') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 112 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 113 | is(defined $err ? $err->text : '', ''); |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 114 | |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 115 | # Query without partial cache (unfortunately) (but no total results) |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 116 | $err = $t->get_ok('/?q=baum&cutoff=true') |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 117 | ->status_is(200) |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 118 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 119 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
| 120 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
| 121 | ->header_isnt('X-Kalamar-Cache', 'true') |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 122 | ->content_like(qr!${q}cutOff${q}:true!) |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 123 | ->element_exists_not('#total-results') |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 124 | ->tx->res->dom->at('#error') |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 125 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 126 | is(defined $err ? $err->text : '', ''); |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 127 | |
| 128 | # Query with partial cache (but no total results) |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 129 | $err = $t->get_ok('/?q=baum&cutoff=true') |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 130 | ->status_is(200) |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 131 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 132 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
| 133 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
| 134 | ->header_is('X-Kalamar-Cache', 'true') |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 135 | ->content_like(qr!${q}cutOff${q}:true!) |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 136 | ->element_exists_not('#total-results') |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 137 | ->tx->res->dom->at('#error') |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 138 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 139 | is(defined $err ? $err->text : '', ''); |
| 140 | |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 141 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 142 | # Query with full cache |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 143 | $err = $t->get_ok('/?q=baum') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 144 | ->status_is(200) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 145 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 146 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
| 147 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
| 148 | ->header_is('X-Kalamar-Cache', 'true') |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 149 | ->content_like(qr!${q}cutOff${q}:true!) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 150 | ->text_is('#total-results', 51) |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 151 | ->tx->res->dom->at('#error') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 152 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 153 | is(defined $err ? $err->text : '', ''); |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 154 | |
| 155 | |
| 156 | # Query with page information |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 157 | $err = $t->get_ok('/?q=der&p=1&count=2') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 158 | ->status_is(200) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 159 | ->text_is('title', 'KorAP: Find »der« with Poliqarp') |
| 160 | |
| 161 | # Total results |
| 162 | ->text_is('#total-results', '14,581') |
| 163 | |
| 164 | # Total pages |
Akron | 18a2a27 | 2020-06-16 11:47:38 +0200 | [diff] [blame] | 165 | ->element_count_is('#pagination > a', 7) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 166 | ->text_is('#pagination a:nth-of-type(6) span', 7291) |
Akron | a4b17f7 | 2021-11-04 15:37:02 +0100 | [diff] [blame^] | 167 | ->element_exists('#pagination a.ellipsis.inactive') |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 168 | ->content_like(qr!${q}count${q}:2!) |
| 169 | ->content_like(qr!${q}startIndex${q}:0!) |
| 170 | ->content_like(qr!${q}itemsPerPage${q}:2!) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 171 | |
| 172 | # No caching |
| 173 | ->header_isnt('X-Kalamar-Cache', 'true') |
| 174 | |
| 175 | # Not searched for "der" before |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 176 | ->content_unlike(qr!${q}cutOff${q}:true!) |
Akron | 26d57f2 | 2021-09-10 16:48:57 +0200 | [diff] [blame] | 177 | |
| 178 | ->attr_is('#pagination','data-page','1') |
| 179 | ->attr_is('#pagination','data-total','7291') |
| 180 | ->attr_is('#pagination','data-count','2') |
| 181 | |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 182 | ->tx->res->dom->at('#error') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 183 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 184 | is(defined $err ? $err->text : '', ''); |
| 185 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 186 | |
Akron | 4c7cf95 | 2019-08-29 09:31:35 +0200 | [diff] [blame] | 187 | # Check pagination repetion of page |
| 188 | my $next_href = $t->get_ok('/?q=der&p=1&count=2') |
| 189 | ->tx->res->dom->at('#pagination a[rel=next]')->attr('href'); |
| 190 | like($next_href, qr/p=2/); |
| 191 | unlike($next_href, qr/p=1/); |
| 192 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 193 | # Query with page information - next page |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 194 | $err = $t->get_ok('/?q=der&p=2&count=2') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 195 | ->status_is(200) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 196 | ->text_is('title', 'KorAP: Find »der« with Poliqarp') |
Akron | bc33beb | 2018-11-30 13:46:08 +0100 | [diff] [blame] | 197 | ->element_exists('#search') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 198 | |
| 199 | # Total results |
| 200 | ->text_is('#total-results', '14,581') |
| 201 | |
| 202 | # Total pages |
Akron | 18a2a27 | 2020-06-16 11:47:38 +0200 | [diff] [blame] | 203 | ->element_count_is('#pagination > a', 7) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 204 | ->text_is('#pagination a:nth-of-type(6) span', 7291) |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 205 | ->content_like(qr!${q}count${q}:2!) |
| 206 | ->content_like(qr!${q}itemsPerPage${q}:2!) |
| 207 | ->content_like(qr!${q}startIndex${q}:2!) |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 208 | |
Akron | 26d57f2 | 2021-09-10 16:48:57 +0200 | [diff] [blame] | 209 | ->attr_is('#pagination','data-page','2') |
| 210 | ->attr_is('#pagination','data-total','7291') |
| 211 | ->attr_is('#pagination','data-count','2') |
| 212 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 213 | # No caching |
| 214 | ->header_isnt('X-Kalamar-Cache', 'true') |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 215 | ->content_like(qr!${q}cutOff${q}:true!) |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 216 | ->tx->res->dom->at('#error') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 217 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 218 | is(defined $err ? $err->text : '', ''); |
| 219 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 220 | |
Akron | c4be819 | 2018-10-25 16:07:53 +0200 | [diff] [blame] | 221 | # Query with failing parameters |
| 222 | $t->get_ok('/?q=fantastisch&ql=Fabelsprache') |
| 223 | ->status_is(400) |
Akron | cb5c171 | 2021-01-26 18:01:04 +0100 | [diff] [blame] | 224 | ->text_is('#notifications div.notify-error', 'Parameter "ql" invalid') |
Akron | bc33beb | 2018-11-30 13:46:08 +0100 | [diff] [blame] | 225 | ->element_exists('#search') |
Akron | cb5c171 | 2021-01-26 18:01:04 +0100 | [diff] [blame] | 226 | ->element_count_is('#notifications div.notify-error', 1) |
Akron | c4be819 | 2018-10-25 16:07:53 +0200 | [diff] [blame] | 227 | ; |
| 228 | $t->get_ok('/?q=fantastisch&cutoff=no') |
| 229 | ->status_is(400) |
Akron | cb5c171 | 2021-01-26 18:01:04 +0100 | [diff] [blame] | 230 | ->text_is('#notifications div.notify-error', 'Parameter "cutoff" invalid') |
| 231 | ->element_count_is('#notifications div.notify-error', 1) |
Akron | c4be819 | 2018-10-25 16:07:53 +0200 | [diff] [blame] | 232 | ; |
| 233 | $t->get_ok('/?q=fantastisch&p=hui&o=hui&count=-8') |
| 234 | ->status_is(400) |
Akron | cb5c171 | 2021-01-26 18:01:04 +0100 | [diff] [blame] | 235 | ->text_like('#notifications div.notify-error', qr!Parameter ".+?" invalid!) |
| 236 | ->element_count_is('#notifications div.notify-error', 3) |
Akron | c4be819 | 2018-10-25 16:07:53 +0200 | [diff] [blame] | 237 | ; |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 238 | |
Akron | d1ff8d8 | 2018-11-08 13:16:55 +0100 | [diff] [blame] | 239 | # Query too long |
| 240 | my $long_query = 'b' x 2000; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 241 | $err = $t->get_ok('/?q=' . $long_query) |
Akron | d1ff8d8 | 2018-11-08 13:16:55 +0100 | [diff] [blame] | 242 | ->status_is(400) |
Akron | cb5c171 | 2021-01-26 18:01:04 +0100 | [diff] [blame] | 243 | ->text_like('#notifications div.notify-error', qr!Parameter ".+?" invalid!) |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 244 | ->tx->res->dom->at('#error') |
Akron | d1ff8d8 | 2018-11-08 13:16:55 +0100 | [diff] [blame] | 245 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 246 | is(defined $err ? $err->text : '', ''); |
Akron | d1ff8d8 | 2018-11-08 13:16:55 +0100 | [diff] [blame] | 247 | |
Akron | a3c353c | 2019-02-14 23:50:00 +0100 | [diff] [blame] | 248 | # Query with timeout |
| 249 | $t->get_ok('/?q=timeout') |
| 250 | ->status_is(200) |
Akron | cb5c171 | 2021-01-26 18:01:04 +0100 | [diff] [blame] | 251 | ->text_like('#notifications div.notify-warn', qr!Response time exceeded!) |
Akron | a3c353c | 2019-02-14 23:50:00 +0100 | [diff] [blame] | 252 | ->text_is('#total-results', '> 4,274,841'); |
| 253 | ; |
| 254 | |
Akron | cce055c | 2021-07-02 12:18:03 +0200 | [diff] [blame] | 255 | # Query with error |
| 256 | $t->get_ok('/?q=error') |
| 257 | ->status_is(400) |
| 258 | ->text_is('#notifications .notify-error','500: Internal Server Error') |
| 259 | ; |
| 260 | |
Akron | a3c353c | 2019-02-14 23:50:00 +0100 | [diff] [blame] | 261 | # Do not cache |
| 262 | $t->get_ok('/?q=timeout') |
| 263 | ->status_is(200) |
Akron | cb5c171 | 2021-01-26 18:01:04 +0100 | [diff] [blame] | 264 | # ->text_like('#notifications div.notify-warning', qr!Response time exceeded!) |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 265 | ->element_exists("input#cq") |
| 266 | ->element_exists_not("input#cq[value]") |
Akron | a3c353c | 2019-02-14 23:50:00 +0100 | [diff] [blame] | 267 | ->text_is('#total-results', '> 4,274,841'); |
| 268 | ; |
| 269 | |
Akron | 91a7685 | 2019-08-28 12:35:37 +0200 | [diff] [blame] | 270 | $t->app->defaults(no_cache => 1); |
| 271 | |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 272 | # Query with collection |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 273 | $err = $t->get_ok('/?q=baum&collection=availability+%3D+%2FCC-BY.*%2F') |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 274 | ->status_is(200) |
| 275 | ->element_exists("input#cq[value='availability = /CC-BY.*/']") |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 276 | ->content_like(qr!${q}availability${q}!) |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 277 | ->tx->res->dom->at('#error') |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 278 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 279 | is(defined $err ? $err->text : '', ''); |
| 280 | |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 281 | |
Akron | 4cdc4fc | 2020-04-28 12:19:11 +0200 | [diff] [blame] | 282 | $t->app->hook( |
Akron | 7c87c1a | 2020-04-28 12:35:55 +0200 | [diff] [blame] | 283 | after_search => sub { |
Akron | 4cdc4fc | 2020-04-28 12:19:11 +0200 | [diff] [blame] | 284 | my $c = shift; |
| 285 | $c->content_for('after_search_results' => '<p id="special">Funny</p>'); |
| 286 | } |
| 287 | ); |
| 288 | |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 289 | # Query with corpus query |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 290 | $err = $t->get_ok('/?q=baum&cq=availability+%3D+%2FCC-BY.*%2F') |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 291 | ->status_is(200) |
| 292 | ->element_exists("input#cq[value='availability = /CC-BY.*/']") |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 293 | ->content_like(qr!${q}availability${q}!) |
Akron | 4cdc4fc | 2020-04-28 12:19:11 +0200 | [diff] [blame] | 294 | ->text_is('#special', 'Funny') |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 295 | ->tx->res->dom->at('#error') |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 296 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 297 | is(defined $err ? $err->text : '', ''); |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 298 | |
Akron | 909ed08 | 2019-12-11 21:38:27 +0100 | [diff] [blame] | 299 | my $match = { |
| 300 | matchID => 'match-FOLK/00070-SE-01/T-04-p5441-5442', |
| 301 | textSigle => 'FOLK/00070-SE-01/T-04' |
| 302 | }; |
| 303 | |
| 304 | $match = Kalamar::Controller::Search::_map_match($match); |
| 305 | |
| 306 | is($match->{matchID}, 'p5441-5442'); |
| 307 | |
Akron | 7b9a196 | 2020-07-02 09:52:53 +0200 | [diff] [blame] | 308 | # Query with pipe |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 309 | $err = $t->get_ok('/?q=baum&pipe=glemm') |
Akron | 7b9a196 | 2020-07-02 09:52:53 +0200 | [diff] [blame] | 310 | ->status_is(200) |
Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 311 | ->content_like(qr/${q}pipes${q}:${q}glemm${q}/) |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 312 | ->tx->res->dom->at('#error') |
Akron | 7b9a196 | 2020-07-02 09:52:53 +0200 | [diff] [blame] | 313 | ; |
Akron | 58c6099 | 2021-09-07 13:11:43 +0200 | [diff] [blame] | 314 | is(defined $err ? $err->text : '', ''); |
Akron | 7b9a196 | 2020-07-02 09:52:53 +0200 | [diff] [blame] | 315 | |
Akron | 909ed08 | 2019-12-11 21:38:27 +0100 | [diff] [blame] | 316 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 317 | done_testing; |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 318 | __END__ |