X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=002a7056693ff822d46af74511b1cb8b78be9fea;hb=53dc53783dfabd95a00a1a06472fe0982fa4ebf0;hp=06447f65f7dd1fd3235607e30ce95a8775740b97;hpb=7af3eb37f12c0e1f8a4cd4d8397d9bf80812bbc6;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 06447f6..002a705 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -4,8 +4,10 @@ * */ -var debug_level = mkws.debug_level; -var debug = mkws.debug_function; +// get references from mkws.js, lazy evaluation +var debug = function (text) { + mkws.debug_function(text) + } var get_hit_counter = function () { // not yet here @@ -44,10 +46,14 @@ describe("Check pazpar2 search", function () { debug("set search query: " + search_query) expect($("input#mkwsQuery").val()).toMatch("^" + search_query + "$"); - // wait for service proxy auth - waitsFor(function () { - return mkws.authenticated; - }, "SP auth done", 10 * 1000); + if (mkws_config.use_service_proxy) { + // wait for service proxy auth + waitsFor(function () { + return mkws.authenticated; + }, "SP auth done", 10 * 1000); + } else { + debug("running raw pp2, don't wait for mkws auth"); + } runs(function () { debug("Click on submit button"); @@ -185,7 +191,7 @@ describe("Check Termlist", function () { expect(click.length).toBe(1); waitsFor(function () { - if ($("div#mkwsNavi").length && $("div#mkwsNavi").text().match(/^Source/)) { + if ($("div#mkwsNavi").length && $("div#mkwsNavi").text().match(/Source: /)) { return true; } else { return false; @@ -207,8 +213,8 @@ describe("Check Termlist", 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 + ") :nth-child(2)").trigger("click"); - debug("show click is success: " + click.length); + var click = $("div#mkwsRecords div.record: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 @@ -224,6 +230,11 @@ describe("Show record", function () { }); it("extract URL", function () { + if (mkws_config.jasmine && mkws_config.jasmine.show_record_url == false) { + debug("ignore test for URL in record") + return; + } + var url = $("div#mkwsRecords div.record:nth-child(" + record_number + ") div table tbody tr td a").text(); debug("extracted URL from record: " + url); @@ -242,7 +253,7 @@ describe("Check switch menu Records/Targets", function () { it("switch to target view", function () { var click = $("a#mkwsSwitch_targets").trigger("click"); - debug("target click is success: " + click.length); + debug("target view click is success: " + click.length); expect(click.length).toBe(1); // now the target table must be visible @@ -263,7 +274,7 @@ describe("Check switch menu Records/Targets", function () { it("switch back to record view", function () { var click = $("a#mkwsSwitch_records").trigger("click"); - debug("record click is success: " + click.length); + debug("record view click is success: " + click.length); expect(click.length).toBe(1); // now the target table must be visible @@ -282,19 +293,21 @@ describe("Check status client counter", function () { it("check status clients", function () { waitsFor(function () { var clients = $("div#mkwsStat span.clients"); - if (clients.length == 1 && clients.text() == "0/1") { + if (clients.length == 1 && clients.text().match("0/1$")) { return true; } else { return false; } - }, "wait for status", 4 * 1000); + }, "wait for Active clients: 0/1", 4 * 1000); +/* runs(function () { var clients = $("div#mkwsStat span.clients"); debug("span.clients: " + clients.text()); expect(clients.text()).toEqual("0/1"); }); + */ });