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 | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 28 | # Query passed |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 29 | $t->get_ok('/?q=baum') |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 30 | ->status_is(200) |
| 31 | ->text_is('#error','') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 32 | |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 33 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 34 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 35 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
Akron | dffa939 | 2018-10-12 16:26:09 +0200 | [diff] [blame] | 36 | |
| 37 | # Total results |
Akron | 3239663 | 2018-10-11 17:08:37 +0200 | [diff] [blame] | 38 | ->text_is('#total-results', 51) |
Akron | dffa939 | 2018-10-12 16:26:09 +0200 | [diff] [blame] | 39 | |
| 40 | # Total pages |
| 41 | ->element_count_is('#pagination a', 5) |
| 42 | |
| 43 | # api_response |
| 44 | ->content_like(qr/\"authorized\":null/) |
| 45 | ->content_like(qr/\"pubDate\",\"subTitle\",\"author\"/) |
| 46 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 47 | # No cutOff |
| 48 | ->content_unlike(qr!\"cutOff":true!) |
| 49 | |
Akron | dffa939 | 2018-10-12 16:26:09 +0200 | [diff] [blame] | 50 | ->element_exists('li[data-text-sigle=GOE/AGI/00000]') |
| 51 | ->element_exists('li:nth-of-type(1) div.flop') |
| 52 | ->element_exists('li[data-text-sigle=GOE/AGI/00001]') |
| 53 | ->element_exists('li:nth-of-type(2) div.flip') |
| 54 | |
| 55 | # Match1 |
| 56 | ->element_exists('li:nth-of-type(1)' . |
| 57 | '[data-match-id="p2030-2031"]' . |
| 58 | '[data-text-sigle="GOE/AGI/00000"]' . |
| 59 | '[id="GOE/AGI/00000#p2030-2031"]' . |
| 60 | '[data-available-info^="base/s=spans"]' . |
| 61 | '[data-info^="{"]') |
| 62 | ->text_is('li:nth-of-type(1) div.meta', 'GOE/AGI/00000') |
| 63 | ->element_exists('li:nth-of-type(1) div.match-main div.match-wrap div.snippet') |
| 64 | ->element_exists('li:nth-of-type(1) div.snippet.startMore.endMore') |
| 65 | ->text_like('li:nth-of-type(1) div.snippet span.context-left',qr!sie etwas bedeuten!) |
| 66 | ->text_like('li:nth-of-type(1) div.snippet span.context-left',qr!sie etwas bedeuten!) |
| 67 | ->text_is('li:nth-of-type(1) div.snippet span.match mark','Baum') |
| 68 | ->text_like('li:nth-of-type(1) div.snippet span.context-right',qr!es war!) |
| 69 | ->text_is('li:nth-of-type(1) p.ref strong', 'Italienische Reise') |
| 70 | ->text_like('li:nth-of-type(1) p.ref', qr!by Goethe, Johann Wolfgang!) |
| 71 | ->text_is('li:nth-of-type(1) p.ref time[datetime=1982]', 1982) |
| 72 | ->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] | 73 | ->header_isnt('X-Kalamar-Cache', 'true') |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 74 | ; |
| 75 | |
Akron | 7093b81 | 2018-10-19 17:28:21 +0200 | [diff] [blame] | 76 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 77 | $t->get_ok('/?q=[orth=das') |
Akron | 7093b81 | 2018-10-19 17:28:21 +0200 | [diff] [blame] | 78 | ->status_is(400) |
| 79 | ->text_is('div.notify-error:nth-of-type(1)', '302: Parantheses/brackets unbalanced.') |
Akron | bc33beb | 2018-11-30 13:46:08 +0100 | [diff] [blame] | 80 | ->element_exists('#search') |
Akron | 7093b81 | 2018-10-19 17:28:21 +0200 | [diff] [blame] | 81 | ->text_like('div.notify-error:nth-of-type(2)', qr!302: Could not parse query .+? \[orth=das.+?!) |
| 82 | ; |
| 83 | |
Akron | 73f3608 | 2018-10-25 15:34:59 +0200 | [diff] [blame] | 84 | # Check for query error with ql (from remote.t) |
| 85 | $t->get_ok('/?q=[orth=das&ql=poliqarp') |
| 86 | ->element_exists('.notify-error') |
| 87 | ->text_is('.notify-error', '302: Parantheses/brackets unbalanced.') |
| 88 | ->content_like(qr!KorAP\.koralQuery =!) |
| 89 | ->text_is('.no-results:nth-of-type(1)', 'Unable to perform the search.') |
| 90 | ; |
| 91 | |
| 92 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 93 | # Query with partial cache (for total results) |
| 94 | $t->get_ok('/?q=baum') |
| 95 | ->status_is(200) |
| 96 | ->text_is('#error','') |
| 97 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 98 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
| 99 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
| 100 | ->header_isnt('X-Kalamar-Cache', 'true') |
| 101 | ->content_like(qr!\"cutOff":true!) |
| 102 | ->text_is('#total-results', 51) |
| 103 | ; |
| 104 | |
Akron | 385249d | 2018-10-29 12:26:29 +0100 | [diff] [blame] | 105 | # Query without partial cache (unfortunately) (but no total results) |
| 106 | $t->get_ok('/?q=baum&cutoff=true') |
| 107 | ->status_is(200) |
| 108 | ->text_is('#error','') |
| 109 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 110 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
| 111 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
| 112 | ->header_isnt('X-Kalamar-Cache', 'true') |
| 113 | ->content_like(qr!\"cutOff":true!) |
| 114 | ->element_exists_not('#total-results') |
| 115 | ; |
| 116 | |
| 117 | # Query with partial cache (but no total results) |
| 118 | $t->get_ok('/?q=baum&cutoff=true') |
| 119 | ->status_is(200) |
| 120 | ->text_is('#error','') |
| 121 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 122 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
| 123 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
| 124 | ->header_is('X-Kalamar-Cache', 'true') |
| 125 | ->content_like(qr!\"cutOff":true!) |
| 126 | ->element_exists_not('#total-results') |
| 127 | ; |
| 128 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 129 | # Query with full cache |
| 130 | $t->get_ok('/?q=baum') |
| 131 | ->status_is(200) |
| 132 | ->text_is('#error','') |
| 133 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') |
| 134 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') |
| 135 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') |
| 136 | ->header_is('X-Kalamar-Cache', 'true') |
| 137 | ->content_like(qr!\"cutOff":true!) |
| 138 | ->text_is('#total-results', 51) |
| 139 | ; |
| 140 | |
| 141 | |
| 142 | # Query with page information |
| 143 | $t->get_ok('/?q=der&p=1&count=2') |
| 144 | ->status_is(200) |
| 145 | ->text_is('#error','') |
| 146 | ->text_is('title', 'KorAP: Find »der« with Poliqarp') |
| 147 | |
| 148 | # Total results |
| 149 | ->text_is('#total-results', '14,581') |
| 150 | |
| 151 | # Total pages |
| 152 | ->element_count_is('#pagination a', 7) |
| 153 | ->text_is('#pagination a:nth-of-type(6) span', 7291) |
| 154 | ->content_like(qr!\"count":2!) |
| 155 | ->content_like(qr!\"startIndex":0!) |
| 156 | ->content_like(qr!\"itemsPerPage":2!) |
| 157 | |
| 158 | # No caching |
| 159 | ->header_isnt('X-Kalamar-Cache', 'true') |
| 160 | |
| 161 | # Not searched for "der" before |
| 162 | ->content_unlike(qr!\"cutOff":true!) |
| 163 | ; |
| 164 | |
Akron | 4c7cf95 | 2019-08-29 09:31:35 +0200 | [diff] [blame] | 165 | # Check pagination repetion of page |
| 166 | my $next_href = $t->get_ok('/?q=der&p=1&count=2') |
| 167 | ->tx->res->dom->at('#pagination a[rel=next]')->attr('href'); |
| 168 | like($next_href, qr/p=2/); |
| 169 | unlike($next_href, qr/p=1/); |
| 170 | |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 171 | # Query with page information - next page |
| 172 | $t->get_ok('/?q=der&p=2&count=2') |
| 173 | ->status_is(200) |
| 174 | ->text_is('#error','') |
| 175 | ->text_is('title', 'KorAP: Find »der« with Poliqarp') |
Akron | bc33beb | 2018-11-30 13:46:08 +0100 | [diff] [blame] | 176 | ->element_exists('#search') |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 177 | |
| 178 | # Total results |
| 179 | ->text_is('#total-results', '14,581') |
| 180 | |
| 181 | # Total pages |
| 182 | ->element_count_is('#pagination a', 7) |
| 183 | ->text_is('#pagination a:nth-of-type(6) span', 7291) |
| 184 | ->content_like(qr!\"count":2!) |
| 185 | ->content_like(qr!\"itemsPerPage":2!) |
| 186 | ->content_like(qr!\"startIndex":2!) |
| 187 | |
| 188 | # No caching |
| 189 | ->header_isnt('X-Kalamar-Cache', 'true') |
| 190 | ->content_like(qr!\"cutOff":true!) |
| 191 | ; |
| 192 | |
Akron | c4be819 | 2018-10-25 16:07:53 +0200 | [diff] [blame] | 193 | # Query with failing parameters |
| 194 | $t->get_ok('/?q=fantastisch&ql=Fabelsprache') |
| 195 | ->status_is(400) |
| 196 | ->text_is('noscript div.notify-error', 'Parameter "ql" invalid') |
Akron | bc33beb | 2018-11-30 13:46:08 +0100 | [diff] [blame] | 197 | ->element_exists('#search') |
Akron | c4be819 | 2018-10-25 16:07:53 +0200 | [diff] [blame] | 198 | ->element_count_is('noscript div.notify-error', 1) |
| 199 | ; |
| 200 | $t->get_ok('/?q=fantastisch&cutoff=no') |
| 201 | ->status_is(400) |
| 202 | ->text_is('noscript div.notify-error', 'Parameter "cutoff" invalid') |
| 203 | ->element_count_is('noscript div.notify-error', 1) |
| 204 | ; |
| 205 | $t->get_ok('/?q=fantastisch&p=hui&o=hui&count=-8') |
| 206 | ->status_is(400) |
| 207 | ->text_like('noscript div.notify-error', qr!Parameter ".+?" invalid!) |
| 208 | ->element_count_is('noscript div.notify-error', 3) |
| 209 | ; |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 210 | |
Akron | d1ff8d8 | 2018-11-08 13:16:55 +0100 | [diff] [blame] | 211 | # Query too long |
| 212 | my $long_query = 'b' x 2000; |
| 213 | $t->get_ok('/?q=' . $long_query) |
| 214 | ->status_is(400) |
| 215 | ->text_is('#error','') |
| 216 | ->text_like('noscript div.notify-error', qr!Parameter ".+?" invalid!) |
| 217 | ; |
| 218 | |
Akron | a3c353c | 2019-02-14 23:50:00 +0100 | [diff] [blame] | 219 | # Query with timeout |
| 220 | $t->get_ok('/?q=timeout') |
| 221 | ->status_is(200) |
| 222 | ->text_like('noscript div.notify-warn', qr!Response time exceeded!) |
| 223 | ->text_is('#total-results', '> 4,274,841'); |
| 224 | ; |
| 225 | |
| 226 | # Do not cache |
| 227 | $t->get_ok('/?q=timeout') |
| 228 | ->status_is(200) |
| 229 | # ->text_like('noscript div.notify-warning', qr!Response time exceeded!) |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 230 | ->element_exists("input#cq") |
| 231 | ->element_exists_not("input#cq[value]") |
Akron | a3c353c | 2019-02-14 23:50:00 +0100 | [diff] [blame] | 232 | ->text_is('#total-results', '> 4,274,841'); |
| 233 | ; |
| 234 | |
Akron | 91a7685 | 2019-08-28 12:35:37 +0200 | [diff] [blame] | 235 | $t->app->defaults(no_cache => 1); |
| 236 | |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 237 | # Query with collection |
| 238 | $t->get_ok('/?q=baum&collection=availability+%3D+%2FCC-BY.*%2F') |
| 239 | ->status_is(200) |
| 240 | ->element_exists("input#cq[value='availability = /CC-BY.*/']") |
Akron | 91a7685 | 2019-08-28 12:35:37 +0200 | [diff] [blame] | 241 | ->content_like(qr!\"availability\"!) |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 242 | ->text_is('#error','') |
| 243 | ; |
| 244 | |
| 245 | # Query with corpus query |
| 246 | $t->get_ok('/?q=baum&cq=availability+%3D+%2FCC-BY.*%2F') |
| 247 | ->status_is(200) |
| 248 | ->element_exists("input#cq[value='availability = /CC-BY.*/']") |
Akron | 91a7685 | 2019-08-28 12:35:37 +0200 | [diff] [blame] | 249 | ->content_like(qr!\"availability\"!) |
Akron | cd42a14 | 2019-07-12 18:55:37 +0200 | [diff] [blame] | 250 | ->text_is('#error','') |
| 251 | ; |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 252 | |
Akron | 4c7cf95 | 2019-08-29 09:31:35 +0200 | [diff] [blame] | 253 | |
Akron | 909ed08 | 2019-12-11 21:38:27 +0100 | [diff] [blame] | 254 | |
| 255 | my $match = { |
| 256 | matchID => 'match-FOLK/00070-SE-01/T-04-p5441-5442', |
| 257 | textSigle => 'FOLK/00070-SE-01/T-04' |
| 258 | }; |
| 259 | |
| 260 | $match = Kalamar::Controller::Search::_map_match($match); |
| 261 | |
| 262 | is($match->{matchID}, 'p5441-5442'); |
| 263 | |
| 264 | |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 265 | done_testing; |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 266 | __END__ |