1 /* Copyright (c) 2013-2014 IndexData ApS. http://indexdata.com
3 * perform papzpar2 / pz2.js search & retrieve request in the browser
7 // get references from mkws.js, lazy evaluation
8 var debug = function (text) {
9 mkws.debug("Jasmine: " + text)
12 // Define empty mkws_config for simple applications that don't define it.
13 if (jasmine_config == null || typeof jasmine_config != 'object') {
14 var jasmine_config = {};
17 /* check config for jasmine test
19 * you can override the default values in the config
20 * object: jasmine_config = {};
23 function init_jasmine_config() {
25 var jasmine_config_default = {
26 search_query: "freebsd",
30 // at least expected hit counter
32 // miliseconds to seconds
33 show_record_url: true,
34 // check for valid URL in records
38 // use default values for undefined values
39 for (var key in jasmine_config_default) {
40 if (!jasmine_config.hasOwnProperty(key)) {
41 jasmine_config[key] = jasmine_config_default[key];
43 debug("jasmine config: " + key + " => " + jasmine_config[key]);
46 mkws.jasmine_done = false;
49 var get_hit_counter = function () {
51 if ($(".mkwsPager").length == 0) return -1;
53 var found = $(".mkwsPager").text();
54 var re = /\([A-Za-z]+:\s+([0-9]+)\)/;
59 hits = parseInt(RegExp.$1);
60 expect(hits).toBeGreaterThan(0);
63 //debug("Hits: " + hits);
67 describe("Init jasmine config", function () {
68 it("jasmine was successfully initialized", function () {
69 init_jasmine_config();
71 expect(jasmine_config.search_query).toMatch(/\w/);
72 expect(jasmine_config.second).toBeGreaterThan(100);
73 expect(jasmine_config.max_time).toBeGreaterThan(1);
74 expect(jasmine_config.expected_hits).toBeGreaterThan(1);
78 describe("Check MOTD before search", function () {
79 // Check that the MOTD has been moved into its container, and
80 // is visible before the search.
81 // the mkwsMOTD div was originally inside a testMOTD div, which should
83 // Note that the testMOTD is a regular div, and uses #testMOTD,
84 // since the automagic class-making does not apply to it.
85 it("MOTD is hidden", function () {
86 expect($(".mkwsMOTD").length).toBe(1);
87 expect($("#testMOTD").length).toBe(1);
88 expect($("#testMOTD").text()).toMatch("^ *$");
91 it("mkwsMOTDContainer has received the text", function () {
92 expect($(".mkwsMOTDContainer").length).toBe(1);
93 expect($(".mkwsMOTDContainer").text()).toMatch(/MOTD/);
99 describe("Check pazpar2 search", function () {
100 it("pazpar2 was successfully initialized", function () {
101 expect(mkws_config.error).toBe(undefined);
104 it("validate HTML id's", function () {
105 expect($("input.mkwsQuery").length).toBe(1);
106 expect($("input.mkwsButton").length).toBe(1);
108 expect($(".mkwsNext").length).not.toBe(1);
109 expect($(".mkwsPrev").length).not.toBe(1);
112 it("run search query", function () {
113 var search_query = jasmine_config.search_query; // short hit counter with some paging
114 $("input.mkwsQuery").val(search_query);
115 debug("set search query: " + search_query)
116 expect($("input.mkwsQuery").val()).toMatch("^" + search_query + "$");
118 if (mkws_config.use_service_proxy) {
119 // wait for service proxy auth
120 waitsFor(function () {
121 return mkws.authenticated;
122 }, "SP auth done", 10 * jasmine_config.second);
124 debug("running raw pp2, don't wait for mkws auth");
128 debug("Click on submit button");
129 $("input.mkwsButton").trigger("click");
134 describe("Check MOTD after search", function () {
135 it("MOTD is hidden", function () {
136 expect($(".mkwsMOTD").length).toBe(1);
137 expect($(".mkwsMOTD").is(":hidden")).toBe(true);
138 debug("motd " + $(".mkwsMOTD"));
139 debug("motd t=" + $(".mkwsMOTD").text());
140 debug("motd v=" + $(".mkwsMOTD").is(":visible"));
141 //expect($("div.mkwsBytarget").is(":visible")).toBe(true);
148 * This part runs in background. It should be rewritten with
149 * async jasmine functions
152 describe("Check pazpar2 navigation", function () {
154 it("check running search next/prev", function () {
155 expect($(".mkwsPager").length).toBe(1);
157 function my_click(id, time) {
158 setTimeout(function () {
159 debug("trigger click on id: " + id);
160 $(id).trigger("click");
161 }, time * jasmine_config.second);
164 waitsFor(function () {
165 return $("div.mkwsPager div:nth-child(2) a").length >= 2 ? true : false;
166 }, "Expect next link 2", 10 * jasmine_config.second);
169 // click next/prev after N seconds
170 my_click(".mkwsNext", 0);
173 waitsFor(function () {
174 return $("div.mkwsPager div:nth-child(2) a").length >= 3 ? true : false;
175 }, "Expect next link 3", 5 * jasmine_config.second);
178 // click next/prev after N seconds
179 my_click(".mkwsNext", 0);
180 my_click(".mkwsPrev", 0.2);
185 describe("Check pazpar2 hit counter", function () {
186 it("check running search hit counter", function () {
187 var max_time = jasmine_config.max_time; // in seconds
188 var expected_hits = jasmine_config.expected_hits; // at least expected hit counter
191 waitsFor(function () {
192 hits = get_hit_counter();
194 return hits > expected_hits;
195 }, "Expect " + expected_hits + " hits", max_time * jasmine_config.second);
199 debug("mkws pager found records: '" + hits + "'");
200 expect($(".mkwsPager").length).toBe(1);
201 expect(hits).toBeGreaterThan(expected_hits);
206 describe("Check Termlist", function () {
207 it("found Termlist", function () {
208 var termlist = $("div.mkwsTermlists");
209 debug("Termlist success: " + termlist.length);
210 expect(termlist.length).toBe(1);
212 waitsFor(function () {
213 return $("div.mkwsFacetSources").length == 1 ? true : false;
214 }, "check for facet sources", 4 * jasmine_config.second);
217 // everything displayed?
219 var sources = $("div.mkwsFacetSources");
220 debug("Termlist sources success: " + sources.length);
221 expect(sources.length).toBe(1);
223 var subjects = $("div.mkwsFacetSubjects");
224 expect(subjects.length).toBe(1);
226 var authors = $("div.mkwsFacetAuthors");
227 expect(authors.length).toBe(1);
230 waitsFor(function () {
231 return $("div.mkwsFacetAuthors div.term").length >= 2 ? true : false;
232 }, "At least one author link displayed", 4 * jasmine_config.second);
235 expect($("div.mkwsFacetAuthors div.term").length).toBeGreaterThan(1);
239 it("limit search to first author", function () {
240 if (mkws_config.disable_facet_authors_search) {
241 debug("Facets: ignore limit search for authors");
245 var hits_all_targets = get_hit_counter();
246 var author_number = 2; // 2=first author
247 // do not click on author with numbers, e.g.: "Bower, James M. Beeman, David, 1938-"
248 // do not click on author names without a comma, e.g.: "Joe Barbara"
249 var terms = $("div.mkwsFacetAuthors div.term a");
250 for (var i = 0; i < terms.length; i++) {
251 var term = $(terms[i]).text();
252 if (term.match(/[0-9].+[0-9]/i) || !term.match(/,/)) {
253 debug("ignore author facet: " + term);
259 if ($("div.mkwsFacetAuthors div.term:nth-child(" + author_number + ") a").text().length == 0) {
260 debug("No good authors found. Not clicking on the bad ones");
264 debug("Clicking on author (" + author_number + ") " + $("div.mkwsFacetAuthors div.term:nth-child(" + author_number + ") a").text());
265 $("div.mkwsFacetAuthors div.term:nth-child(" + author_number + ") a").trigger("click");
267 waitsFor(function () {
268 return get_hit_counter() < hits_all_targets ? true : false;
269 }, "Limited author search for less than " + hits_all_targets + " hits", 6 * jasmine_config.second);
272 var hits_single_target = get_hit_counter();
273 debug("get less hits for authors: " + hits_all_targets + " > " + hits_single_target);
274 expect(hits_all_targets).toBeGreaterThan(hits_single_target);
278 it("limit search to first source", function () {
279 var hits_all_targets = get_hit_counter();
280 var source_number = 2; // 2=first source
281 // do not click on wikipedia link - no author or subject facets possible
282 var terms = $("div.mkwsFacetSources div.term a");
283 for (var i = 0; i < terms.length; i++) {
284 var term = $(terms[i]).text();
285 if (term.match(/wikipedia/i)) {
286 debug("ignore source facet: " + term);
293 $("div.mkwsFacetSources div.term:nth-child(" + source_number + ") a").trigger("click");
295 waitsFor(function () {
296 if ($("div.mkwsNavi").length && $("div.mkwsNavi").text().match(/(Source|datenquelle|kilder): /i)) {
301 }, "Search for source in navi bar", 4 * jasmine_config.second);
303 // Note: it may happens that limited source search returns the same number of hits
304 // as before. Thats not really an error, but unfortunate
305 waitsFor(function () {
306 return get_hit_counter() <= hits_all_targets ? true : false;
307 }, "Limited source search for less than " + hits_all_targets + " hits", 5 * jasmine_config.second);
310 var hits_single_target = get_hit_counter();
311 debug("get less hits for sources: " + hits_all_targets + " > " + hits_single_target);
312 expect(hits_all_targets).not.toBeLessThan(hits_single_target);
317 describe("Show record", function () {
318 var record_number = 1; // the Nth record in hit list
319 it("show record author", function () {
320 // make sure we have a link.
321 var linkaddr = "div.mkwsRecords div.record:nth-child(1) a";
323 waitsFor(function () {
325 debug("waiting for the link " + waitcount + " " + $(linkaddr) + " =" + $(linkaddr).length + " " + $(linkaddr).text());
326 return ($(linkaddr).length > 0);
327 }, "wait until we see a link", 1 * jasmine_config.second);
330 var link = $(linkaddr);
331 debug("== waited (" + waitcount + ") for the link..." + $(linkaddr) + " =" + $(linkaddr).length + " " + $(linkaddr).text());
332 expect(link.length).toBe(1);
333 link.trigger("click");
336 // wait until the record pops up
337 waitsFor(function () {
338 var show = $("div.mkwsRecords div.record:nth-child(" + record_number + ") div");
339 return show != null && show.length ? true : false;
340 }, "wait some miliseconds to show up a record", 2 * jasmine_config.second);
343 debug("show record pop up");
344 expect($("div.mkwsRecords div.record:nth-child(" + record_number + ") div")).not.toBe(null);
348 it("extract URL", function () {
349 if (jasmine_config.show_record_url == false) {
350 debug("ignore test for URL in record")
354 var urls = $("div#mkwsRecords div.record:nth-child(" + record_number + ") div table tbody tr td a");
355 debug("number of extracted URL from record: " + urls.length);
356 for (var i = 0; i < urls.length; i++) {
357 var url = $(urls[i]);
358 debug("URL: " + url.attr('href'));
359 expect(url.attr('href')).not.toBe(null);
360 expect(url.attr('href')).toMatch(/^https?:\/\/[a-z0-9]+\.[0-9a-z].*\//i);
361 expect(url.attr('href')).toBe(url.text());
366 describe("Check switch menu Records/Targets", function () {
367 it("check mkwsSwitch", function () {
368 expect($("div.mkwsSwitch").length).toBe(1);
370 // expect 2 clickable links
371 expect($("div.mkwsSwitch a").length).toBe(2);
374 it("switch to target view", function () {
375 $("div.mkwsSwitch").children('a').eq(1).trigger("click");
377 // now the target table must be visible
378 expect($("div.mkwsBytarget").is(":visible")).toBe(true);
379 expect($("div.mkwsRecords").is(":visible")).toBe(false);
381 // wait a half second, to show the target view
382 var time = (new Date).getTime();
383 waitsFor(function () {
384 return (new Date).getTime() - time > 700 ? true : false;
385 }, "wait some miliseconds", 1 * jasmine_config.second);
387 // look for table header
389 expect($("div.mkwsBytarget").html()).toMatch(/Target ID/);
393 it("switch back to record view", function () {
394 $("div.mkwsSwitch").children('a').eq(0).trigger("click");
396 // now the target table must be visible
397 expect($("div.mkwsBytarget").is(":visible")).toBe(false);
398 expect($("div.mkwsRecords").is(":visible")).toBe(true);
402 describe("Check status client counter", function () {
403 function get_time() {
404 var date = new Date();
405 return date.getTime();
407 var time = get_time();
409 it("check status clients", function () {
410 waitsFor(function () {
411 var clients = $("div#mkwsStat span.clients");
412 if (clients.length == 1 && clients.text().match("0/1$")) {
418 }, "wait for Active clients: 0/1", 4 * jasmine_config.second);
422 var clients = $("div#mkwsStat span.clients");
423 debug("span.clients: " + clients.text());
424 expect(clients.text()).toEqual("0/1");
433 describe("All tests are done", function () {
434 it(">>> hooray <<<", function () {
435 mkws.jasmine_done = true;