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