X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=fa088fa8df4aa16f28081236d5165d35fb7f7564;hb=5710282758daaa01312c510231168058e587b63d;hp=eff1c5464cd02c9f2f9f0344615151b3f61c440a;hpb=1bbb36b215f5bb382effc8467b3e79c20e10fcbb;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index eff1c54..fa088fa 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -322,30 +322,31 @@ describe("Check Termlist", function () { describe("Check record list", function () { - it("got a record", function () { - var linkaddr = "div.mkwsRecords div.record:nth-child(1) a"; - var waitcount = 2; + it("check for single active client", function () { + waitsFor(function () { + var clients = $("div#mkwsStat span.clients"); + //debug("clients: " + clients.text()); -/* - // wait for new records, propertychange is for IE8 - $("div.mkwsRecords").bind("DOMNodeInserted propertychange", function () { - waitcount++; - debug("DOM DOMNodeInserted:" + waitcount + " " + $("div.mkwsRecords div.record").length); - }); - $("div.mkwsRecords").bind("DOMNodeRemoved", function () { - waitcount++; - debug("DOM DOMNodeRemoved:" + waitcount + " " + $("div.mkwsRecords div.record").length); + 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 () { + var linkaddr = "div.mkwsRecords div.record:nth-child(1) a"; waitsFor(function () { // remove + insert node: must be at least 2 - return waitcount >= 2 && $(linkaddr).length > 0; - }, "wait until we see a new record: " + waitcount, 2.2 * jasmine_config.second); + return $(linkaddr).length > 0; + }, "wait until we see a new record", 2.5 * jasmine_config.second); runs(function () { - expect(waitcount).toBeGreaterThan(0); - $("div.mkwsRecords").unbind("DOMNodeInserted DOMNodeRemoved"); + expect($(linkaddr).length).toBeGreaterThan(0); }); }); }); @@ -359,11 +360,11 @@ describe("Show record", function () { // wait until the record pops up waitsFor(function () { - var show = $("div.mkwsRecords div.record:nth-child(" + record_number + ") div"); - debug($("div.mkwsRecords div.record").text()); + 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", 4 * jasmine_config.second); + }, "wait some miliseconds to show up a record", 2 * jasmine_config.second); runs(function () { debug("show record pop up"); @@ -437,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$"); }); - */ }); });