X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=89176ef85f7678685c68122f5af2a515923f7fbb;hb=2727ad6eee0eba75cbd1b42045beb39722a22ada;hp=1f1dc749aacbd0b6f26b784ef82e310244a5e2d2;hpb=aa8a489733292471244291be1890103b6f680e97;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 1f1dc74..89176ef 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -9,11 +9,15 @@ var debug = function (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 = {}; } +var jasmine_status = { + source_click: 0 +}; + /* check config for jasmine test * * you can override the default values in the config @@ -79,7 +83,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 +100,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 +117,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 +233,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; } @@ -314,6 +318,7 @@ describe("Check Termlist", 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); + jasmine_status.source_click = 1; $(".mkwsPager").unbind("DOMNodeInserted DOMNodeRemoved propertychange"); }); @@ -323,6 +328,11 @@ describe("Check Termlist", function () { describe("Check record list", function () { it("check for single active client", function () { + if (!jasmine_status.source_click) { + debug("skip clients check due missing source click"); + return; + } + waitsFor(function () { var clients = $("div#mkwsStat span.clients"); //debug("clients: " + clients.text()); @@ -436,6 +446,11 @@ describe("Check status client counter", function () { var time = get_time(); it("check status clients", function () { + if (!jasmine_status.source_click) { + debug("skip clients check due missing source click"); + return; + } + waitsFor(function () { var clients = $("div#mkwsStat span.clients"); debug("clients: " + clients.text());