X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=1f1dc749aacbd0b6f26b784ef82e310244a5e2d2;hb=aa8a489733292471244291be1890103b6f680e97;hp=fe1e746e5b001ae06212cc3c2ab15391a5668720;hpb=738d2b9639224b05db381edd0e2f0c577310fb64;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index fe1e746..1f1dc74 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -6,7 +6,7 @@ // get references from mkws.js, lazy evaluation var debug = function (text) { - mkws.debug("Jasmine: " + text) + mkws.log("Jasmine: " + text) } // Define empty mkws_config for simple applications that don't define it. @@ -289,6 +289,13 @@ describe("Check Termlist", function () { $("div.mkwsFacetSources div.term:nth-child(" + source_number + ") a").trigger("click"); + // wait for a stat response + var waitcount = 0; + $(".mkwsPager").bind("DOMNodeInserted DOMNodeRemoved propertychange", function () { + waitcount++; + debug("DOM wait for stat: " + waitcount); + }); + waitsFor(function () { if ($("div.mkwsNavi").length && $("div.mkwsNavi").text().match(/(Source|datenquelle|kilder): /i)) { return true; @@ -300,34 +307,46 @@ describe("Check Termlist", function () { // Note: it may happens that limited source search returns the same number of hits // as before. Thats not really an error, but unfortunate waitsFor(function () { - return get_hit_counter() <= hits_all_targets ? true : false; + return waitcount >= 2 && get_hit_counter() <= hits_all_targets ? true : false; }, "Limited source search for less than " + hits_all_targets + " hits", 5 * jasmine_config.second); runs(function () { var hits_single_target = get_hit_counter(); debug("get less hits for sources: " + hits_all_targets + " > " + hits_single_target); expect(hits_all_targets).not.toBeLessThan(hits_single_target); + + $(".mkwsPager").unbind("DOMNodeInserted DOMNodeRemoved propertychange"); }); }); }); + describe("Check record list", function () { + it("check for single active client", function () { + waitsFor(function () { + var clients = $("div#mkwsStat span.clients"); + //debug("clients: " + clients.text()); + + return clients.length == 1 && clients.text().match("/1$"); + }, "wait for Active clients: x/1", 5 * jasmine_config.second); + + runs(function () { + var clients = $("div#mkwsStat span.clients"); + debug("span.clients: " + clients.text()); + expect(clients.text()).toMatch("/1$"); + }); + }); + it("got a record", function () { - // make sure we have a link. var linkaddr = "div.mkwsRecords div.record:nth-child(1) a"; - var waitcount = 0; waitsFor(function () { - waitcount++; - debug("waiting for the link " + waitcount + " " + $(linkaddr) + " =" + $(linkaddr).length + " " + $(linkaddr).text()); - return ($(linkaddr).length > 0); - }, "wait until we see a link", 1 * jasmine_config.second); + // remove + insert node: must be at least 2 + return $(linkaddr).length > 0; + }, "wait until we see a new record", 2.5 * jasmine_config.second); runs(function () { - var link = $(linkaddr); - debug("== waited (" + waitcount + ") for the link..." + $(linkaddr) + " =" + $(linkaddr).length + " " + $(linkaddr).text()); - expect(link.length).toBe(1); - // link.trigger("click"); + expect($(linkaddr).length).toBeGreaterThan(0); }); }); }); @@ -341,7 +360,9 @@ describe("Show record", function () { // wait until the record pops up waitsFor(function () { - var show = $("div.mkwsRecords div.record:nth-child(" + record_number + ") div"); + var show = $("div.mkwsRecords div.record:nth-child(" + record_number + ") > div.details"); + //debug("poprecord: " + (show ? show.length : -1) + " " + $("div.mkwsRecords div.record").text()); + return show != null && show.length ? true : false; }, "wait some miliseconds to show up a record", 2 * jasmine_config.second); @@ -365,7 +386,7 @@ describe("Show record", function () { debug("URL: " + url.attr('href') + " text: " + url.text()); expect(url.attr('href')).not.toBe(null); - expect(url.attr('href')).toMatch(/^https?:\/\/[a-z0-9]+\.[0-9a-z].*\//i); + expect(url.attr('href')).toMatch(/^https?:\/\/[a-z0-9\-]+\.[0-9a-z].*\//i); expect(url.text()).not.toBe(""); } }); @@ -417,19 +438,19 @@ describe("Check status client counter", function () { it("check status clients", function () { waitsFor(function () { var clients = $("div#mkwsStat span.clients"); + debug("clients: " + clients.text()); if (clients.length == 1 && clients.text().match("0/1$")) { return true; } else { return false; } }, "wait for Active clients: 0/1", 4 * jasmine_config.second); -/* + runs(function () { var clients = $("div#mkwsStat span.clients"); debug("span.clients: " + clients.text()); - expect(clients.text()).toEqual("0/1"); + expect(clients.text()).toMatch("0/1$"); }); - */ }); });