X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=2dab391abc300d6d4ca9c2ece32ad360651dec84;hb=ee3953c2d2dcdec10648134bc75ae6fcf257e9b0;hp=78f6f12a64e582afd0e07048a7589a3dd7ce7d63;hpb=dc511ecf30c67726bb5f5b0538c20549e43f2b4d;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 78f6f12..2dab391 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -6,10 +6,10 @@ // 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. +// Define empty jasmine_config for simple applications that don't define it. if (jasmine_config == null || typeof jasmine_config != 'object') { var jasmine_config = {}; } @@ -79,7 +79,7 @@ describe("Check MOTD before search", function () { // Check that the MOTD has been moved into its container, and // is visible before the search. // the mkwsMOTD div was originally inside a testMOTD div, which should - // now be emtpy + // now be empty // Note that the testMOTD is a regular div, and uses #testMOTD, // since the automagic class-making does not apply to it. it("MOTD is hidden", function () { @@ -96,7 +96,7 @@ describe("Check MOTD before search", function () { describe("Check pazpar2 search", function () { it("pazpar2 was successfully initialized", function () { - expect(mkws_config.error).toBe(undefined); + expect(mkws.config.error).toBe(undefined); }); it("validate HTML id's", function () { @@ -113,7 +113,7 @@ describe("Check pazpar2 search", function () { debug("set search query: " + search_query) expect($("input.mkwsQuery").val()).toMatch("^" + search_query + "$"); - if (mkws_config.use_service_proxy) { + if (mkws.config.use_service_proxy) { // wait for service proxy auth waitsFor(function () { return mkws.authenticated; @@ -229,7 +229,7 @@ describe("Check Termlist", function () { }); it("limit search to first author", function () { - if (mkws_config.disable_facet_authors_search) { + if (mkws.config.disable_facet_authors_search) { debug("Facets: ignore limit search for authors"); return; } @@ -325,7 +325,7 @@ describe("Check record list", function () { it("check for single active client", function () { waitsFor(function () { var clients = $("div#mkwsStat span.clients"); - debug("clients: " + clients.text()); + //debug("clients: " + clients.text()); return clients.length == 1 && clients.text().match("/1$"); }, "wait for Active clients: x/1", 5 * jasmine_config.second); @@ -361,7 +361,7 @@ describe("Show record", function () { // 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()); + //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);