it could take some milliseconds until the source facets appeared in termlist
[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 sourcs", 1 * 1000);
126
127         var sources = $("div#mkwsFacetSources");
128         debug("Termlist sources success: " + sources.length);
129         expect(sources.length).toBe(1);
130
131         var subjects = $("div#mkwsFacetSubjects");
132         expect(subjects.length).toBe(1);
133
134         var authors = $("div#mkwsFacetAuthors");
135         expect(authors.length).toBe(1);
136     });
137
138     it("limit search to first author", function () {
139         var hits_all_targets = get_hit_counter();
140
141         var click = $("div#mkwsFacetAuthors div.term:nth-child(2) a").trigger("click");
142         debug("limit author click is success: " + click.length);
143         expect(click.length).toBe(1);
144
145         waitsFor(function () {
146             return get_hit_counter() < hits_all_targets ? true : false;
147         }, "Search for with less hits", 9 * 1000);
148
149         runs(function () {
150             var hits_single_target = get_hit_counter();
151             debug("get less hits for authors: " + hits_all_targets + " > " + hits_single_target);
152             expect(hits_all_targets).toBeGreaterThan(hits_single_target);
153         });
154     });
155
156     it("limit search to first source", function () {
157         var hits_all_targets = get_hit_counter();
158         var source_number = 2; // 2=first source
159         var source_name = $("div#mkwsFacetSources div.term:nth-child(" + source_number + ") a").text();
160         // do not click on wikipedia link - no author or subject facets possible
161         if (source_name.match(/wikipedia/i)) {
162             source_number++;
163         }
164
165         var click = $("div#mkwsFacetSources div.term:nth-child(" + source_number + ") a").trigger("click");
166         debug("limit source click " + (source_number - 1) + " is success: " + click.length);
167         expect(click.length).toBe(1);
168
169         waitsFor(function () {
170             if ($("div#mkwsNavi").length && $("div#mkwsNavi").text().match(/^Source/)) {
171                 return true;
172             } else {
173                 return false;
174             }
175         }, "Search for source in navi bar", 1000);
176
177         waitsFor(function () {
178             return get_hit_counter() < hits_all_targets ? true : false;
179         }, "Search for with less hits", 9 * 1000);
180
181         runs(function () {
182             var hits_single_target = get_hit_counter();
183             debug("get less hits for sources: " + hits_all_targets + " > " + hits_single_target);
184             expect(hits_all_targets).toBeGreaterThan(hits_single_target);
185         });
186     });
187 });
188
189 describe("Show record", function () {
190     var record_number = 2; // the Nth record in hit list
191     it("show record author", function () {
192         var click = $("div#mkwsRecords div.record:nth-child(" + record_number + ") :nth-child(2)").trigger("click");
193         debug("show click is success: " + click.length);
194         expect(click.length).toBe(1);
195
196         // wait until the record pops up
197         waitsFor(function () {
198             var show = $("div#mkwsRecords div.record:nth-child(" + record_number + ") div");
199             return show != null && show.length ? true : false;
200         }, "wait some miliseconds", 2 * 1000);
201
202         runs(function () {
203             debug("show record pop up");
204             expect($("div#mkwsRecords div.record:nth-child(" + record_number + ") div")).not.toBe(null);
205         });
206     });
207
208     it("extract URL", function () {
209         var url = $("div#mkwsRecords div.record:nth-child(" + record_number + ") div table tbody tr td a").text();
210         debug("extracted URL from record: " + url);
211
212         expect(url).not.toBe(null);
213         expect(url).toMatch(/^http:\/\/[a-z0-9]+\.[0-9a-z].*\//i);
214     });
215 });
216
217 describe("Check switch menu Records/Targets", function () {
218     it("check mkwsSwitch", function () {
219         expect($("div#mkwsSwitch").length).toBe(1);
220
221         // expect 2 clickable links
222         expect($("div#mkwsSwitch a").length).toBe(2);
223     });
224
225     it("switch to target view", function () {
226         var click = $("a#mkwsSwitch_targets").trigger("click");
227         debug("target click is success: " + click.length);
228         expect(click.length).toBe(1);
229
230         // now the target table must be visible
231         expect($("div#mkwsBytarget").is(":visible")).toBe(true);
232         expect($("div#mkwsRecords").is(":visible")).toBe(false);
233
234         // wait a half second, to show the target view
235         var time = (new Date).getTime();
236         waitsFor(function () {
237             return (new Date).getTime() - time > 700 ? true : false;
238         }, "wait some miliseconds", 1 * 1000);
239         // look for table header
240         runs(function () {
241             expect($("div#mkwsBytarget").html()).toMatch(/Target ID/);
242         });
243     });
244
245     it("switch back to record view", function () {
246         var click = $("a#mkwsSwitch_records").trigger("click");
247         debug("record click is success: " + click.length);
248         expect(click.length).toBe(1);
249
250         // now the target table must be visible
251         expect($("div#mkwsBytarget").is(":visible")).toBe(false);
252         expect($("div#mkwsRecords").is(":visible")).toBe(true);
253     });
254 });
255
256 describe("Check status client counter", function () {
257     function get_time() {
258         var date = new Date();
259         return date.getTime();
260     }
261     var time = get_time();
262
263     it("check status clients", function () {
264
265         waitsFor(function () {
266             var clients = $("div#mkwsStat span.clients");
267             if (clients.length == 1 && clients.text() == "0/1") {
268                 return true;
269             } else {
270                 return false;
271             }
272
273         }, "wait for status", 4 * 1000);
274
275     });
276     runs(function () {
277         var clients = $("div#mkwsStat span.clients");
278         debug("span.clients: " + clients.text());
279         expect(clients.text()).toEqual("0/1");
280     });
281
282 });
283
284 /* dummy EOF */
285 describe("All tests are done", function () {
286     it(">>> hooray <<<", function () {});
287 });