compare only the first 3 elements in records details (title, date, author)
[mkws-moved-to-github.git] / test / spec / mkws-pazpar2.js
1 /* Copyright (c) 2013-2014 Index Data ApS. http://indexdata.com
2  *
3  * perform papzpar2 / pz2.js search & retrieve request in the browser
4  *
5  */
6
7 // get references from mkws.js, lazy evaluation
8 var debug = function (text) {
9         // use a debug function with time stamps
10         mkws.teams["AUTO"].info("Jasmine: " + text);
11
12         //mkws.log("Jasmine: " + text)
13     }
14
15     // Define empty jasmine_config for simple applications that don't define it.
16 if (jasmine_config == null || typeof jasmine_config != 'object') {
17     var jasmine_config = {};
18 }
19
20 var jasmine_status = {
21     source_click: 0
22 };
23
24 /* check config for jasmine test
25  *
26  * you can override the default values in the config
27  * object: jasmine_config = {};
28  *
29  */
30 function init_jasmine_config() {
31
32     var jasmine_config_default = {
33         search_query: "freebsd",
34         max_time: 17,
35         // in seconds
36         expected_hits: 80,
37         // at least expected hit counter
38         second: 1000,
39         // miliseconds to seconds
40         show_record_url: true,
41         // check for valid URL in records
42         check_motd: true,
43
44         // check sort by and per page menu
45         check_sortby: false,
46
47         dummy: false
48     };
49
50     // use default values for undefined values
51     for (var key in jasmine_config_default) {
52         if (!jasmine_config.hasOwnProperty(key)) {
53             jasmine_config[key] = jasmine_config_default[key];
54         }
55         debug("jasmine config: " + key + " => " + jasmine_config[key]);
56     }
57
58     mkws.jasmine_done = false;
59 };
60
61 function get_hit_counter() {
62     var $ = mkws.$;
63     // not yet here
64     if ($(".mkws-pager").length == 0) return -1;
65
66     var found = $(".mkws-pager").text();
67     var re = /\([A-Za-z]+:\s+([0-9]+)\)/;
68     re.exec(found);
69     var hits = -1;
70
71     if (RegExp.$1) {
72         hits = parseInt(RegExp.$1);
73         if (hits <= 0) {
74             debug("Oooops in get_hit_counter: " + RegExp.$1 + " '" + found + "'");
75         }
76     }
77
78     //debug("Hits: " + hits);
79     return hits;
80 };
81
82 /******************************************************************************/
83 describe("Init jasmine config", function () {
84     it("jasmine was successfully initialized", function () {
85         init_jasmine_config();
86
87         expect(jasmine_config.search_query).toMatch(/\w/);
88         expect(jasmine_config.second).toBeGreaterThan(100);
89         expect(jasmine_config.max_time).toBeGreaterThan(1);
90         expect(jasmine_config.expected_hits).toBeGreaterThan(1);
91     });
92 });
93
94 //disabled
95 xdescribe("Check MOTD before search", function () {
96     var $ = mkws.$;
97
98     // Check that the MOTD has been moved into its container, and
99     // is visible before the search.
100     // the mkws-motd div was originally inside a testMOTD div, which should
101     // now be empty
102     // Note that the testMOTD is a regular div, and uses #testMOTD,
103     // since the automagic class-making does not apply to it.
104     it("MOTD is hidden", function () {
105         expect($(".mkws-motd").length).toBe(1);
106         expect($("#testMOTD").length).toBe(1);
107         expect($("#testMOTD").text()).toMatch("^ *$");
108     });
109
110     it("mkws-motd-container has received the text", function () {
111         expect($(".mkws-motd-container").length).toBe(1);
112         expect($(".mkws-motd-container").text()).toMatch(/MOTD/);
113     });
114 });
115
116 describe("Check pazpar2 search", function () {
117     var $ = mkws.$;
118
119     it("pazpar2 was successfully initialized", function () {
120         expect(mkws.config.error).toBe(undefined);
121     });
122
123     it("validate HTML id's", function () {
124         expect($("input.mkws-query").length).toBe(1);
125         expect($("input.mkws-button").length).toBe(1);
126
127         expect($(".mkws-next").length).not.toBe(1);
128         expect($(".mkws-prev").length).not.toBe(1);
129     });
130
131     it("run search query", function () {
132         var search_query = jasmine_config.search_query; // short hit counter with some paging
133         $("input.mkws-query").val(search_query);
134         debug("set search query: " + search_query)
135         expect($("input.mkws-query").val()).toMatch("^" + search_query + "$");
136
137         if (mkws.config.use_service_proxy) {
138             // wait for service proxy auth
139             waitsFor(function () {
140                 return mkws.authenticated;
141             }, "SP auth done", 10 * jasmine_config.second);
142         } else {
143             debug("running raw pp2, don't wait for mkws auth");
144         }
145
146         runs(function () {
147             debug("Click on submit button");
148             $("input.mkws-button").trigger("click");
149         })
150     });
151 });
152
153 describe("Check MOTD after search", function () {
154     var $ = mkws.$;
155
156     it("MOTD is hidden", function () {
157         if (!jasmine_config.check_motd) {
158             return;
159         }
160
161         expect($(".mkws-motd").length).toBe(1);
162         expect($(".mkws-motd").is(":hidden")).toBe(true);
163         debug("motd t=" + $(".mkws-motd").text());
164         debug("motd v=" + $(".mkws-motd").is(":visible"));
165     });
166 });
167
168
169 /*
170  * This part runs in background. It should be rewritten with
171  * async jasmine functions
172  *
173  */
174 describe("Check pazpar2 navigation", function () {
175     var $ = mkws.$;
176
177     // Asynchronous part
178     it("check running search next/prev", function () {
179         expect($(".mkws-pager").length).toBe(1);
180
181         function my_click(id, time) {
182             setTimeout(function () {
183                 debug("trigger click on id: " + id);
184                 $(id).trigger("click");
185             }, time * jasmine_config.second);
186         }
187
188         waitsFor(function () {
189             return $("div.mkws-pager div:nth-child(2) a").length >= 2 ? true : false;
190         }, "Expect next link 2", 10 * jasmine_config.second);
191
192         runs(function () {
193             // click next/prev after N seconds
194             my_click(".mkws-next", 0);
195         });
196
197         waitsFor(function () {
198             return $("div.mkws-pager div:nth-child(2) a").length >= 3 ? true : false;
199         }, "Expect next link 3", 5 * jasmine_config.second);
200
201         runs(function () {
202             // click next/prev after N seconds
203             my_click(".mkws-next", 0);
204             my_click(".mkws-prev", 0.2);
205         });
206     });
207 });
208
209 describe("Check pazpar2 hit counter", function () {
210     var $ = mkws.$;
211
212     it("check running search hit counter", function () {
213         var max_time = jasmine_config.max_time; // in seconds
214         var expected_hits = jasmine_config.expected_hits; // at least expected hit counter
215         var hits = 0;
216
217         waitsFor(function () {
218             hits = get_hit_counter();
219             return hits > expected_hits;
220         }, "Expect " + expected_hits + " hits", max_time * jasmine_config.second);
221
222         runs(function () {
223             debug("mkws pager found records: '" + hits + "'");
224             expect($(".mkws-pager").length).toBe(1);
225             expect(hits).toBeGreaterThan(expected_hits);
226         });
227     });
228 });
229
230 describe("Check Facets", function () {
231     var $ = mkws.$;
232
233     it("found Facets", function () {
234         var facets = $("div.mkws-facets");
235         debug("Facet success: " + facets.length);
236         expect(facets.length).toBe(1);
237
238         waitsFor(function () {
239             return $("div.mkws-facet[data-mkws-facet='xtargets']").length == 1 ? true : false;
240         }, "check for facet sources", 4 * jasmine_config.second);
241
242         // everything displayed?
243         runs(function () {
244             var sources = $("div.mkws-facet[data-mkws-facet='xtargets']");
245             debug("Facet sources success: " + sources.length);
246             expect(sources.length).toBe(1);
247
248             var subjects = $("div.mkws-facet[data-mkws-facet='subject']");
249             expect(subjects.length).toBe(1);
250
251             var authors = $("div.mkws-facet[data-mkws-facet='author']");
252             expect(authors.length).toBe(1);
253         });
254
255         waitsFor(function () {
256             return $("div.mkws-facet[data-mkws-facet='author'] div.mkws-term").length >= 2 ? true : false;
257         }, "At least two author link displayed", 4 * jasmine_config.second);
258
259         runs(function () {
260             expect($("div.mkws-facet[data-mkws-facet='author'] div.mkws-term").length).toBeGreaterThan(1);
261         });
262     });
263 });
264
265
266
267 describe("Check Author Facets", function () {
268     var $ = mkws.$;
269
270     it("limit search to first author", function () {
271         if (mkws.config.disable_facet_authors_search) {
272             debug("Facets: ignore limit search for authors");
273             return;
274         }
275
276         var hits_all_targets = get_hit_counter();
277         var author_number = 2; // 2=first author
278         // do not click on author with numbers, e.g.: "Bower, James M. Beeman, David, 1938-"
279         // do not click on author names without a comma, e.g.: "Joe Barbara"
280         // because searching on such authors won't find anything.
281         runs(function () {
282             var terms = $("div.mkws-facet[data-mkws-facet='author'] div.mkws-term a");
283             for (var i = 0; i < terms.length; i++) {
284                 var term = $(terms[i]).text();
285                 if (term.match(/[0-9].+[0-9]/i) || !term.match(/,/)) {
286                     debug("ignore author facet: " + term);
287                     author_number++;
288                 } else {
289                     break;
290                 }
291             }
292             if ($("div.mkws-facet[data-mkws-facet='author'] div.mkws-term:nth-child(" + author_number + ") a").text().length == 0) {
293                 debug("No good authors found. Not clicking on the bad ones");
294                 return;
295             }
296
297             debug("Clicking on author (" + author_number + ") " + $("div.mkws-facet[data-mkws-facet='author'] div.mkws-term:nth-child(" + author_number + ") a").text());
298             $("div.mkws-facet[data-mkws-facet='author'] div.mkws-term:nth-child(" + author_number + ") a").trigger("click");
299         });
300
301         waitsFor(function () {
302             var hits_single_target = get_hit_counter();
303             // debug("hits_single_target='" + hits_single_target + "' cf. hits_all_targets='" + hits_all_targets + "'");
304             return hits_single_target > 0 && hits_single_target < hits_all_targets ? true : false;
305         }, "Limited author search for less than " + hits_all_targets + " hits", 4.5 * jasmine_config.second);
306
307         runs(function () {
308             var hits_single_target = get_hit_counter();
309             debug("get less hits for authors: " + hits_all_targets + " > " + hits_single_target);
310         });
311     });
312 });
313
314 describe("Check active clients author", function () {
315     var $ = mkws.$;
316
317     it("check for active clients after limited author search", function () {
318         waitsFor(function () {
319             var clients = $("div.mkws-stat span.mkws-client-count");
320             // debug("clients: " + clients.text());
321             return clients.length == 1 && clients.text().match("/[1-9]+[0-9]*$");
322         }, "wait for Active clients: x/y", 5.5 * jasmine_config.second);
323
324         runs(function () {
325             var clients = $("div.mkws-stat span.mkws-client-count");
326             debug("span.mkws-client-count: " + clients.text());
327             expect(clients.text()).toMatch("/[1-9]+[0-9]*$");
328
329             // exact match of active clients (e.g. a SP misconfiguration)
330             if (jasmine_config.active_clients) {
331                 debug("check for " + jasmine_config.active_clients + " active connections");
332                 expect(clients.text()).toMatch(" [0-9]+/" + jasmine_config.active_clients + "$");
333             }
334         });
335     });
336 });
337
338 describe("Check Source Facets", function () {
339     var $ = mkws.$;
340
341     it("limit search to first source", function () {
342         var hits_all_targets = get_hit_counter();
343         var source_number = 2; // 2=first source
344         // wait for a stat response
345         var waitcount = 0;
346         // do not click on wikipedia link - no author or subject facets possible
347         var link = "div.mkws-facet[data-mkws-facet='xtargets'] div.mkws-term a";
348
349         // wait for a visible source link in facets
350         waitsFor(function () {
351             var terms = $(link);
352             return terms && terms.length > 0;
353         }, "wait for source facets after author search", 5 * jasmine_config.second);
354
355
356         runs(function () {
357             var terms = $(link);
358             for (var i = 0; i < terms.length; i++) {
359                 var term = $(terms[i]).text();
360                 debug("check for good source: " + term);
361
362                 if (term.match(/wikipedia/i)) {
363                     debug("ignore source facet: " + term);
364                     source_number++;
365                 } else {
366                     break;
367                 }
368             }
369             debug("Source counter: " + terms.length + ", select: " + (source_number - 1));
370
371             if ($("div.mkws-facet[data-mkws-facet='xtargets'] div.mkws-term:nth-child(" + source_number + ") a").text().length == 0) {
372                 debug("No good source found. Not clicking on the bad ones");
373                 return;
374             }
375
376             debug("click on source link nth-child(): " + source_number);
377             $("div.mkws-facet[data-mkws-facet='xtargets'] div.mkws-term:nth-child(" + source_number + ") a").trigger("click");
378
379             $(".mkws-pager").bind("DOMNodeInserted DOMNodeRemoved propertychange", function () {
380                 waitcount++;
381                 debug("DOM change mkws-pager, for stat: " + waitcount);
382             });
383         });
384
385         waitsFor(function () {
386             if ($("div.mkws-navi").length && $("div.mkws-navi").text().match(/(Source|datenquelle|kilder): /i)) {
387                 return true;
388             } else {
389                 return false;
390             }
391         }, "Search for source in navi bar", 4 * jasmine_config.second);
392
393         // Note: it may happens that limited source search returns the same number of hits
394         // as before. Thats not really an error, but unfortunate
395         waitsFor(function () {
396             var hits_single_target = get_hit_counter();
397
398             return waitcount >= 2 && hits_single_target > 0 && hits_single_target <= hits_all_targets ? true : false;
399         }, "Limited source search for less than " + hits_all_targets + " hits", 5 * jasmine_config.second);
400
401         runs(function () {
402             var hits_single_target = get_hit_counter();
403             debug("get less hits for sources: " + hits_all_targets + " >= " + hits_single_target);
404             expect(hits_all_targets).not.toBeLessThan(hits_single_target);
405             jasmine_status.source_click = 1;
406
407             $(".mkws-pager").unbind("DOMNodeInserted DOMNodeRemoved propertychange");
408         });
409     });
410 });
411
412
413 describe("Check record list", function () {
414     var $ = mkws.$;
415
416     it("check for single active client", function () {
417         if (!jasmine_status.source_click) {
418             debug("skip clients check due missing source click");
419             return;
420         }
421
422         waitsFor(function () {
423             var clients = $("div.mkws-stat span.mkws-client-count");
424             //debug("clients: " + clients.text());
425             return clients.length == 1 && clients.text().match("/1$");
426         }, "wait for Active clients: x/1", 5 * jasmine_config.second);
427
428         runs(function () {
429             var clients = $("div.mkws-stat span.mkws-client-count");
430             debug("span.mkws-client-count: " + clients.text());
431             expect(clients.text()).toMatch("/1$");
432         });
433     });
434
435     it("got a record", function () {
436         var linkaddr = "div.mkws-records div.mkws-summary:nth-child(1) a";
437
438         waitsFor(function () {
439             // remove + insert node: must be at least 2
440             return $(linkaddr).length > 0;
441         }, "wait until we see a new record", 2.5 * jasmine_config.second);
442
443         runs(function () {
444             expect($(linkaddr).length).toBeGreaterThan(0);
445         });
446     });
447 });
448
449 describe("Show record", function () {
450     var $ = mkws.$;
451
452     var record_number = 1; // the Nth record in hit list
453     it("show record author", function () {
454         var click = $("div.mkws-records div.mkws-summary:nth-child(" + record_number + ") a").trigger("click");
455         debug("show record click is success: " + click.length);
456         expect(click.length).toBe(1);
457
458         // wait until the record pops up
459         waitsFor(function () {
460             var show = $("div.mkws-records div.mkws-summary:nth-child(" + record_number + ") > div.mkws-details");
461             //debug("poprecord: " + (show ? show.length : -1) + " " + $("div.mkws-records div.mkws-summary").text());
462             return show != null && show.length ? true : false;
463         }, "wait some miliseconds to show up a record", 2 * jasmine_config.second);
464
465         runs(function () {
466             debug("show record pop up");
467             expect($("div.mkws-records div.mkws-summary:nth-child(" + record_number + ") div")).not.toBe(null);
468         });
469     });
470
471     it("extract URL", function () {
472         if (jasmine_config.show_record_url == false) {
473             debug("ignore test for URL in record")
474             return;
475         }
476
477         var urls = $("div.mkws-records div.mkws-summary:nth-child(" + record_number + ") div table tbody tr td a");
478         debug("number of extracted URL from record: " + urls.length);
479         // expect(urls.length).toBeGreaterThan(0); // LoC has records without links
480         for (var i = 0; i < urls.length; i++) {
481             var url = $(urls[i]);
482             debug("URL: " + url.attr('href') + " text: " + url.text());
483
484             expect(url.attr('href')).not.toBe(null);
485             expect(url.attr('href')).toMatch(/^https?:\/\/[a-z0-9\-]+\.[0-9a-z].*\//i);
486             expect(url.text()).not.toBe("");
487         }
488     });
489 });
490
491 describe("Check switch menu Records/Targets", function () {
492     var $ = mkws.$;
493
494     it("check mkws-switch", function () {
495         expect($("div.mkws-switch").length).toBe(1);
496
497         // expect 2 clickable links
498         expect($("div.mkws-switch > a").length).toBe(2);
499     });
500
501     it("switch to target view", function () {
502         $("div.mkws-switch > a").eq(1).trigger("click");
503
504         // now the target table must be visible
505         expect($("div.mkws-targets").is(":visible")).toBe(true);
506         expect($("div.mkws-records").is(":visible")).toBe(false);
507
508         // wait a half second, to show the target view
509         var time = (new Date).getTime();
510         waitsFor(function () {
511             return (new Date).getTime() - time > 700 ? true : false;
512         }, "wait some miliseconds", 1 * jasmine_config.second);
513
514         // look for table header
515         runs(function () {
516             expect($("div.mkws-targets").html()).toMatch(/Target ID/);
517         });
518     });
519
520     it("switch back to record view", function () {
521         $("div.mkws-switch > a").eq(0).trigger("click");
522
523         // now the target table must be visible
524         expect($("div.mkws-targets").is(":visible")).toBe(false);
525         expect($("div.mkws-records").is(":visible")).toBe(true);
526     });
527 });
528
529 describe("Check status client counter", function () {
530     var $ = mkws.$;
531
532     function get_time() {
533         var date = new Date();
534         return date.getTime();
535     }
536     var time = get_time();
537
538     it("check status clients", function () {
539         if (!jasmine_status.source_click) {
540             debug("skip clients check due missing source click");
541             return;
542         }
543
544         waitsFor(function () {
545             var clients = $("div.mkws-stat span.mkws-client-count");
546             debug("clients: " + clients.text());
547             if (clients.length == 1 && clients.text().match("0/1$")) {
548                 return true;
549             } else {
550                 return false;
551             }
552         }, "wait for Active clients: 0/1", 4 * jasmine_config.second);
553
554         runs(function () {
555             var clients = $("div.mkws-stat span.mkws-client-count");
556             debug("span.mkws-client-count: " + clients.text());
557             expect(clients.text()).toMatch("0/1$");
558         });
559     });
560 });
561
562 /* remove the "source" and "author" facet link to get more records again */
563 describe("Check removable facets links", function () {
564     var $ = mkws.$;
565
566     it("remove links for source and author", function () {
567         var waitcount = 0;
568         if (!jasmine_config.check_sortby) {
569             debug("ignore check for removable facets");
570             return;
571         }
572
573
574         runs(function () {
575             var click = $("a.mkws-removable").eq(0).trigger("click");
576             debug("Removed first facets link: " + click.length);
577             expect(click.length).toBe(1);
578         });
579
580         runs(function () {
581             $("div.mkws-records").bind("DOMNodeInserted DOMNodeRemoved propertychange", function () {
582                 waitcount++;
583                 if (waitcount <= 5 || (waitcount % 5 == 0)) {
584                     debug("DOM change mkws-records for removeable: " + waitcount);
585                 }
586             });
587         });
588
589         waitsFor(function () {
590             return waitcount >= 2 && $("a.mkws-removable").length == 1 ? 1 : 0;
591         }, "Records DOM change mkws-records, removable", 2 * jasmine_config.second);
592
593         runs(function () {
594             debug("unbind removable");
595             $("div.mkws-records").unbind("DOMNodeInserted DOMNodeRemoved propertychange");
596             waitcount = 0;
597
598             $("div.mkws-records").bind("DOMNodeInserted DOMNodeRemoved propertychange", function () {
599                 waitcount++;
600                 if (waitcount <= 5 || (waitcount % 5 == 0)) {
601                     debug("DOM change mkws-records for removeable2: " + waitcount);
602                 }
603             });
604
605             var click = $("a.mkws-removable").eq(0).trigger("click");
606             debug("Removed second facets link: " + click.length);
607             expect(click.length).toBe(1);
608         });
609
610         waitsFor(function () {
611             return waitcount >= 2 && $("a.mkws-removable").length == 0 ? true : false;
612         }, "DOM change mkws-records, removable2", 2 * jasmine_config.second);
613
614         runs(function () {
615             debug("unbind removable2");
616             $("div.mkws-records").unbind("DOMNodeInserted DOMNodeRemoved propertychange");
617         });
618     });
619 });
620
621
622 describe("Check per page options", function () {
623     var $ = mkws.$;
624
625     it("show per page", function () {
626         if (!jasmine_config.check_sortby) {
627             debug("ignore check for per page select");
628             return;
629         }
630         var waitcount = 0;
631         var per_page_number = 20;
632
633
634         runs(function () {
635             var select = $("select.mkws-perpage option[selected='selected']");
636             debug("per page default is: " + select.text() + " and unselect it");
637             select.removeAttr('selected');
638
639             select = $("select.mkws-perpage option[value='" + per_page_number + "']").attr('selected', true);
640             debug("per page is set to: " + select.text());
641             select.trigger("change");
642
643             $("div.mkws-records").bind("DOMNodeInserted DOMNodeRemoved propertychange", function () {
644                 waitcount++;
645                 if (waitcount <= 5 || (waitcount % 10 == 0)) {
646                     debug("DOM change mkws-records, per page: " + waitcount);
647                 }
648             });
649         });
650
651         waitsFor(function () {
652             // debug("per page waitcounter: " + waitcount)
653             return waitcount >= (per_page_number + 10) ? true : false;
654         }, "DOM change mkws-records, by per page", 3 * jasmine_config.second);
655
656         runs(function () {
657             debug("unbind per page");
658             $("div.mkws-records").unbind("DOMNodeInserted DOMNodeRemoved propertychange");
659
660             var records = $("div.mkws-records > div.mkws-summary");
661             debug("Per page got now " + records.length + " records");
662             expect(records.length).toBe(per_page_number);
663         });
664     });
665 });
666
667 describe("Check SortBy options", function () {
668     var $ = mkws.$;
669
670     it("show per page", function () {
671         if (!jasmine_config.check_sortby) {
672             debug("ignore check for sort by");
673             return;
674         }
675
676         var waitcount = 0;
677         var sort_value = 'title:1';
678         var per_page_number = 20;
679
680         // keep current title list
681         var title_list_old = title_list("xxx ");
682
683         function title_list(prefix) {
684             var list = [];
685             var terms = $("div.mkws-records > div.mkws-summary > div.mkws-field-data span.mkws-field-title");
686             for (var i = 0; i < terms.length; i++) {
687                 var term = $(terms[i]).text().trim();
688                 list.push(term);
689                 // debug(prefix + "title: " + term);
690             }
691             return list;
692         }
693
694         runs(function () {
695             $("div.mkws-records").bind("DOMNodeInserted DOMNodeRemoved propertychange", function () {
696                 waitcount++;
697                 if (waitcount <= 5 || (waitcount % 10 == 0)) {
698                     debug("DOM change mkws-records, sort by: " + waitcount);
699                 }
700             });
701
702             var select = $("select.mkws-sort option[selected='selected']");
703             debug("Sort by default is: " + select.text() + " and unselect it");
704             select.removeAttr('selected');
705
706             select = $("select.mkws-sort option[value='" + sort_value + "']").attr('selected', true);
707             debug("sort by is set to: " + select.text());
708             select.trigger("change");
709         });
710
711         waitsFor(function () {
712             //debug("wait for2: " + waitcount);
713             return waitcount >= (per_page_number + 10) ? true : false;
714         }, "DOM change mkws-records, by sort page", 3 * jasmine_config.second);
715
716         runs(function () {
717             $("div.mkws-records").unbind("DOMNodeInserted DOMNodeRemoved propertychange");
718             debug("unbind by sort");
719
720             var records = $("div.mkws-records > div.mkws-summary");
721             debug("Sort by got now " + records.length + " records");
722             expect(records.length).toBe(per_page_number);
723         });
724
725         runs(function () {
726             var title_list_new = title_list("yyy ");
727             var diff_flag = 0;
728             for (var i = 0; i < title_list_old.length; i++) {
729                 debug((i + 1) + ". " + title_list_old[i] + " :: " + title_list_new[i]);
730
731                 if (title_list_old[i] != title_list_new[i]) {
732                     diff_flag++;
733                 }
734             }
735             debug("Title changes: " + diff_flag + " out of " + per_page_number);
736             expect(diff_flag).not.toBe(0);
737         });
738     });
739 });
740
741 describe("Check translations", function () {
742     var $ = mkws.$;
743
744     // handle html entities, "Zur&uuml;ck" => "Zurück"
745     var M = function (string) {
746             var text = $("<span/>").html(mkws.M(string)).text()
747             debug("translate check for: " + text);
748             return text;
749         };
750     var lang = function () {
751             return mkws.config.lang
752         };
753
754     function check_translation(list, text) {
755         expect(list.length).toBe(text.length);
756
757         for (var i = 0; i < text.length; i++) {
758             expect($(list[i]).text()).toBe(M(text[i]));
759         }
760     }
761
762     it("check language", function () {
763         var lang = mkws.config.lang;
764         debug("lang: " + lang);
765         expect(lang).toMatch(/^(de|da|)$/);
766     });
767
768 /*
769   locale_lang: {
770     "de": {
771       "Authors": "Autoren",
772       "Subjects": "Schlagw&ouml;rter",
773       "Sources": "Daten und Quellen",
774       "source": "datenquelle",
775       "Facets": "Termlisten",
776       "Next": "Weiter",
777       "Prev": "Zur&uuml;ck",
778       "Search": "Suche",
779       "Sort by": "Sortieren nach",
780       "and show": "und zeige",
781       "per page": "pro Seite",
782       "Displaying": "Zeige",
783       "to": "von",
784       "of": "aus",
785       "found": "gefunden",
786       "Title": "Titel",
787       "Author": "Autor",
788       "author": "autor",
789       "Date": "Datum",
790       "Subject": "Schlagwort",
791       "subject": "schlagwort",
792       "Location": "Ort",
793       "Records": "Datens&auml;tze",
794       "Targets": "Datenbanken",
795
796       "dummy": "dummy"
797     },
798 */
799
800     it("search button", function () {
801         var list = $(".mkws-pager-desc > span");
802         expect($("form > input[type=submit]").attr("value")).toBe(M("Search"));
803     });
804
805     it("switch", function () {
806         var list = $(".mkws-switch > a")
807         var text = ["Records", "Targets"];
808
809         check_translation(list, text);
810     });
811
812
813     it("ranking form", function () {
814         var list = $(".mkws-ranking > form > span");
815         var text = ["Sort by", "and show", "per page"];
816
817         check_translation(list, text);
818
819         // double check
820         if (lang == "de") {
821             expect("Sortieren nach").toBe(M("Sort by"));
822             expect("Sortieren nach").toBe($(list[0]).text());
823         } else if (lang == "da") {
824             expect("Sorter efter").toBe(M("Sort by"));
825             expect("Sorter efter").toBe($(list[0]).text());
826         }
827     });
828
829     xit("facets sidebar", function () {
830         var list = $(".mkws-facet-title");
831         var text = ["Sources", "Subjects", "Authors"];
832
833         check_translation(list, text);
834     });
835
836     it("facets navigation/filter", function () {
837         var list = $(".mkws-navi > span");
838         var text = ["source", "author"];
839
840         check_translation(list, text);
841     });
842
843     it("navigation", function () {
844         var list = $(".mkws-pager-desc > span");
845         var text = ["Displaying", "to", "of", "found"];
846
847         check_translation(list, text);
848
849         expect($(".mkws-next").text()).toBe(M("Next"));
850         expect($(".mkws-prev").text()).toBe(M("Prev"));
851     });
852
853     it("record details", function () {
854         var text = ["Title", "Date", "Author"]; // , "Subject", "Locations"];
855         var list = $("div.mkws-details table > tbody > tr > th");
856
857         // compare only the first 3 elements
858         list = list.splice(0, text.length)
859
860         check_translation(list, text);
861     });
862 });
863
864 xdescribe("Check async widget discovery", function () {
865     var $ = mkws.$;
866     it("initialises a new widget", function () {
867         $("div.mkws-search").after('<div id="asyncSearch"><div class="mkws-search mkws-team-async"></div></div>');
868         mkws.init("Another search box", "#asyncSearch");
869         waitsFor(function () {
870             return $("#asyncSearch input").length >= 1 ? true : false;
871         }, "Call init() to build an .mkws-search", 750);
872         runs(function () {
873             var numInput = $("div.mkws-search input").length;
874             debug("Input elements present: " + numInput);
875             expect(numInput).toBe(4);
876             var numRec = $("div.mkws-records > div.mkws-summary").length;
877             debug("Records should still be present. There are: " + numRec);
878             expect(numRec).toBeGreaterThan(0);
879         });
880     });
881 });
882
883 /* done */
884 describe("All tests are done", function () {
885     it(">>> hooray <<<", function () {
886         mkws.jasmine_done = true;
887         debug(">>> hooray <<<");
888     });
889 });