X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=4c3c0a8c1b76a5a2be9ea340242611e80777b124;hb=bcc3a1316c58f9ea2f69b2586bd9e1cf7c4b490c;hp=0affaaca82f24c9d02c889bb09f1bded7543983a;hpb=488cca89d455a440eae959ecd1d53c0770dcaaf1;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 0affaac..4c3c0a8 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -288,14 +288,14 @@ describe("Check Author Facets", function () { describe("Check active clients author", function () { it("check for active clients after limited author search", function () { waitsFor(function () { - var clients = $("div.mkwsStat span.clients"); + var clients = $("div.mkwsStat span.mkwsClientCount"); // debug("clients: " + clients.text()); return clients.length == 1 && clients.text().match("/[1-9]+[0-9]*$"); }, "wait for Active clients: x/y", 5.5 * jasmine_config.second); runs(function () { - var clients = $("div.mkwsStat span.clients"); - debug("span.clients: " + clients.text()); + var clients = $("div.mkwsStat span.mkwsClientCount"); + debug("span.mkwsClientCount: " + clients.text()); expect(clients.text()).toMatch("/[1-9]+[0-9]*$"); // exact match of active clients (e.g. a SP misconfiguration) @@ -388,20 +388,20 @@ describe("Check record list", function () { } waitsFor(function () { - var clients = $("div.mkwsStat span.clients"); + var clients = $("div.mkwsStat span.mkwsClientCount"); //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()); + var clients = $("div.mkwsStat span.mkwsClientCount"); + debug("span.mkwsClientCount: " + clients.text()); expect(clients.text()).toMatch("/1$"); }); }); it("got a record", function () { - var linkaddr = "div.mkwsRecords div.record:nth-child(1) a"; + var linkaddr = "div.mkwsRecords div.mkwsSummary:nth-child(1) a"; waitsFor(function () { // remove + insert node: must be at least 2 @@ -417,20 +417,20 @@ describe("Check record list", function () { describe("Show record", function () { var record_number = 1; // the Nth record in hit list it("show record author", function () { - var click = $("div.mkwsRecords div.record:nth-child(" + record_number + ") a").trigger("click"); + var click = $("div.mkwsRecords div.mkwsSummary:nth-child(" + record_number + ") a").trigger("click"); debug("show record click is success: " + click.length); expect(click.length).toBe(1); // wait until the record pops up waitsFor(function () { - var show = $("div.mkwsRecords div.record:nth-child(" + record_number + ") > div.details"); - //debug("poprecord: " + (show ? show.length : -1) + " " + $("div.mkwsRecords div.record").text()); + var show = $("div.mkwsRecords div.mkwsSummary:nth-child(" + record_number + ") > div.mkwsDetails"); + //debug("poprecord: " + (show ? show.length : -1) + " " + $("div.mkwsRecords div.mkwsSummary").text()); return show != null && show.length ? true : false; }, "wait some miliseconds to show up a record", 2 * jasmine_config.second); runs(function () { debug("show record pop up"); - expect($("div.mkwsRecords div.record:nth-child(" + record_number + ") div")).not.toBe(null); + expect($("div.mkwsRecords div.mkwsSummary:nth-child(" + record_number + ") div")).not.toBe(null); }); }); @@ -440,7 +440,7 @@ describe("Show record", function () { return; } - var urls = $("div.mkwsRecords div.record:nth-child(" + record_number + ") div table tbody tr td a"); + var urls = $("div.mkwsRecords div.mkwsSummary:nth-child(" + record_number + ") div table tbody tr td a"); debug("number of extracted URL from record: " + urls.length); // expect(urls.length).toBeGreaterThan(0); // LoC has records without links for (var i = 0; i < urls.length; i++) { @@ -504,7 +504,7 @@ describe("Check status client counter", function () { } waitsFor(function () { - var clients = $("div.mkwsStat span.clients"); + var clients = $("div.mkwsStat span.mkwsClientCount"); debug("clients: " + clients.text()); if (clients.length == 1 && clients.text().match("0/1$")) { return true; @@ -514,8 +514,8 @@ describe("Check status client counter", function () { }, "wait for Active clients: 0/1", 4 * jasmine_config.second); runs(function () { - var clients = $("div.mkwsStat span.clients"); - debug("span.clients: " + clients.text()); + var clients = $("div.mkwsStat span.mkwsClientCount"); + debug("span.mkwsClientCount: " + clients.text()); expect(clients.text()).toMatch("0/1$"); }); });