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