do not click on author with numbers, e.g.: Bower, James M. Beeman, David, 1938-,...
[mkws-moved-to-github.git] / test / spec / mkws-pazpar2.js
1 /* Copyright (c) 2013 IndexData 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         mkws.debug_function(text)
10     }
11
12 var get_hit_counter = function () {
13         // not yet here
14         if ($("#mkwsPager").length == 0) return -1;
15
16         var found = $("#mkwsPager").text();
17         var re = /\([A-Za-z]+:\s+([0-9]+)\)/;
18         re.exec(found);
19         var hits = -1;
20
21         if (RegExp.$1) {
22             hits = parseInt(RegExp.$1);
23             expect(hits).toBeGreaterThan(0);
24         }
25
26         //debug("Hits: " + hits);
27         return hits;
28     }
29
30 describe("Check pazpar2 search", function () {
31     it("pazpar2 was successfully initialize", function () {
32         expect(mkws_config.error).toBe(undefined);
33     });
34
35     it("validate HTML id's", function () {
36         expect($("input#mkwsQuery").length).toBe(1);
37         expect($("input#mkwsButton").length).toBe(1);
38
39         expect($("#mkwsNext").length).not.toBe(1);
40         expect($("#mkwsPrev").length).not.toBe(1);
41     });
42
43     it("run search query", function () {
44         var search_query = "freebsd"; // short hit counter with some paging
45         $("input#mkwsQuery").val(search_query);
46         debug("set search query: " + search_query)
47         expect($("input#mkwsQuery").val()).toMatch("^" + search_query + "$");
48
49         if (mkws_config.use_service_proxy) {
50             // wait for service proxy auth
51             waitsFor(function () {
52                 return mkws.authenticated;
53             }, "SP auth done", 10 * 1000);
54         } else {
55             debug("running raw pp2, don't wait for mkws auth");
56         }
57
58         runs(function () {
59             debug("Click on submit button");
60             var click = $("input#mkwsButton").trigger("click");
61             expect(click.length).toBe(1);
62         })
63     });
64 });
65
66
67 /*
68  * This part runs in background. It should be rewritten with
69  * async jasmine functions
70  *
71  */
72 describe("Check pazpar2 navigation", function () {
73     // Asynchronous part
74     it("check running search next/prev", function () {
75         expect($("#mkwsPager").length).toBe(1);
76
77         function my_click(id, time) {
78             setTimeout(function () {
79                 debug("trigger click on id: " + id);
80                 var click = $(id).trigger("click");
81
82                 debug("next/prev: " + id + " click is success: " + click.length);
83                 expect(click.length).toBe(1);
84             }, time * 1000);
85         }
86
87         waitsFor(function () {
88             return $("div#mkwsPager div:nth-child(2) a").length >= 2 ? true : false;
89         }, "Expect next link 2", 10 * 1000);
90
91         runs(function () {
92             // click next/prev after N seconds
93             my_click("#mkwsNext", 0);
94         });
95
96         waitsFor(function () {
97             return $("div#mkwsPager div:nth-child(2) a").length >= 3 ? true : false;
98         }, "Expect next link 3", 5 * 1000);
99
100         runs(function () {
101             // click next/prev after N seconds
102             my_click("#mkwsNext", 0);
103             my_click("#mkwsPrev", 0.2);
104         });
105     });
106 });
107
108 describe("Check pazpar2 hit counter", function () {
109     it("check running search hit counter", function () {
110         var max_time = 16; // in seconds
111         var expected_hits = 80; // at least expected hit counter
112         var hits = 0;
113
114         waitsFor(function () {
115             hits = get_hit_counter();
116
117             return hits > expected_hits;
118         }, "Expect " + expected_hits + " hits", max_time * 1000);
119
120
121         runs(function () {
122             debug("mkws pager found records: '" + hits + "'");
123             expect($("#mkwsPager").length).toBe(1);
124             expect(hits).toBeGreaterThan(expected_hits);
125         });
126     });
127 });
128
129 describe("Check Termlist", function () {
130     it("found Termlist", function () {
131         var termlist = $("div#mkwsTermlists");
132         debug("Termlist success: " + termlist.length);
133         expect(termlist.length).toBe(1);
134
135         waitsFor(function () {
136             return $("div#mkwsFacetSources").length == 1 ? true : false;
137         }, "check for facet sources", 2 * 1000);
138
139
140         // everything displayed?
141         runs(function () {
142             var sources = $("div#mkwsFacetSources");
143             debug("Termlist sources success: " + sources.length);
144             expect(sources.length).toBe(1);
145
146             var subjects = $("div#mkwsFacetSubjects");
147             expect(subjects.length).toBe(1);
148
149             var authors = $("div#mkwsFacetAuthors");
150             expect(authors.length).toBe(1);
151         });
152
153         waitsFor(function () {
154             return $("div#mkwsFacetAuthors div.term").length >= 2 ? true : false;
155         }, "At least one author link displayed", 2 * 1000);
156
157         runs(function () {
158             expect($("div#mkwsFacetAuthors div.term").length).toBeGreaterThan(1);
159         });
160     });
161
162     it("limit search to first author", function () {
163         var hits_all_targets = get_hit_counter();
164         var author_number = 2; // 2=first author
165
166         var author_name = $("div#mkwsFacetAuthors div.term:nth-child(" + author_number + ") a").text();
167         // do not click on author with numbers, e.g.: Bower, James M. Beeman, David, 1938-
168         if (author_name.match(/[0-9].+[0-9]/)) {
169             author_number++;
170         }
171
172         var click = $("div#mkwsFacetAuthors div.term:nth-child(" + author_number + ") a").trigger("click");
173         debug("limit author click is success: " + click.length);
174         expect(click.length).toBe(1);
175
176         waitsFor(function () {
177             return get_hit_counter() < hits_all_targets ? true : false;
178         }, "Limited author search for less than " + hits_all_targets + " hits", 6 * 1000);
179
180         runs(function () {
181             var hits_single_target = get_hit_counter();
182             debug("get less hits for authors: " + hits_all_targets + " > " + hits_single_target);
183             expect(hits_all_targets).toBeGreaterThan(hits_single_target);
184         });
185     });
186
187     it("limit search to first source", function () {
188         var hits_all_targets = get_hit_counter();
189         var source_number = 2; // 2=first source
190         var source_name = $("div#mkwsFacetSources div.term:nth-child(" + source_number + ") a").text();
191         // do not click on wikipedia link - no author or subject facets possible
192         if (source_name.match(/wikipedia/i)) {
193             source_number++;
194         }
195
196         var click = $("div#mkwsFacetSources div.term:nth-child(" + source_number + ") a").trigger("click");
197         debug("limit source click " + (source_number - 1) + " is success: " + click.length);
198         expect(click.length).toBe(1);
199
200         waitsFor(function () {
201             if ($("div#mkwsNavi").length && $("div#mkwsNavi").text().match(/Source: /)) {
202                 return true;
203             } else {
204                 return false;
205             }
206         }, "Search for source in navi bar", 1000);
207
208         // Note: it may happens that limited source search returns the same number of hits
209         // as before. Thats not really an error, but unfortunate
210         waitsFor(function () {
211             return get_hit_counter() <= hits_all_targets ? true : false;
212         }, "Limited source search for less than " + hits_all_targets + " hits", 5 * 1000);
213
214         runs(function () {
215             var hits_single_target = get_hit_counter();
216             debug("get less hits for sources: " + hits_all_targets + " > " + hits_single_target);
217             expect(hits_all_targets).not.toBeLessThan(hits_single_target);
218         });
219     });
220 });
221
222 describe("Show record", function () {
223     var record_number = 1; // the Nth record in hit list
224     it("show record author", function () {
225         var click = $("div#mkwsRecords div.record:nth-child(" + record_number + ") a").trigger("click");
226         debug("show record click is success: " + click.length);
227         expect(click.length).toBe(1);
228
229         // wait until the record pops up
230         waitsFor(function () {
231             var show = $("div#mkwsRecords div.record:nth-child(" + record_number + ") div");
232             return show != null && show.length ? true : false;
233         }, "wait some miliseconds to show up a record", 2 * 1000);
234
235         runs(function () {
236             debug("show record pop up");
237             expect($("div#mkwsRecords div.record:nth-child(" + record_number + ") div")).not.toBe(null);
238         });
239     });
240
241     it("extract URL", function () {
242         if (mkws_config.jasmine && mkws_config.jasmine.show_record_url == false) {
243             debug("ignore test for URL in record")
244             return;
245         }
246
247         var url = $("div#mkwsRecords div.record:nth-child(" + record_number + ") div table tbody tr td a").text();
248         debug("extracted URL from record: " + url);
249
250         expect(url).not.toBe(null);
251         expect(url).toMatch(/^http:\/\/[a-z0-9]+\.[0-9a-z].*\//i);
252     });
253 });
254
255 describe("Check switch menu Records/Targets", function () {
256     it("check mkwsSwitch", function () {
257         expect($("div#mkwsSwitch").length).toBe(1);
258
259         // expect 2 clickable links
260         expect($("div#mkwsSwitch a").length).toBe(2);
261     });
262
263     it("switch to target view", function () {
264         var click = $("a#mkwsSwitch_targets").trigger("click");
265         debug("target view click is success: " + click.length);
266         expect(click.length).toBe(1);
267
268         // now the target table must be visible
269         expect($("div#mkwsBytarget").is(":visible")).toBe(true);
270         expect($("div#mkwsRecords").is(":visible")).toBe(false);
271
272         // wait a half second, to show the target view
273         var time = (new Date).getTime();
274         waitsFor(function () {
275             return (new Date).getTime() - time > 700 ? true : false;
276         }, "wait some miliseconds", 1 * 1000);
277
278         // look for table header
279         runs(function () {
280             expect($("div#mkwsBytarget").html()).toMatch(/Target ID/);
281         });
282     });
283
284     it("switch back to record view", function () {
285         var click = $("a#mkwsSwitch_records").trigger("click");
286         debug("record view click is success: " + click.length);
287         expect(click.length).toBe(1);
288
289         // now the target table must be visible
290         expect($("div#mkwsBytarget").is(":visible")).toBe(false);
291         expect($("div#mkwsRecords").is(":visible")).toBe(true);
292     });
293 });
294
295 describe("Check status client counter", function () {
296     function get_time() {
297         var date = new Date();
298         return date.getTime();
299     }
300     var time = get_time();
301
302     it("check status clients", function () {
303         waitsFor(function () {
304             var clients = $("div#mkwsStat span.clients");
305             if (clients.length == 1 && clients.text().match("0/1$")) {
306                 return true;
307             } else {
308                 return false;
309             }
310
311         }, "wait for Active clients: 0/1", 4 * 1000);
312
313 /*
314         runs(function () {
315             var clients = $("div#mkwsStat span.clients");
316             debug("span.clients: " + clients.text());
317             expect(clients.text()).toEqual("0/1");
318         });
319         */
320
321     });
322
323 });
324
325 /* dummy EOF */
326 describe("All tests are done", function () {
327     it(">>> hooray <<<", function () {});
328 });