X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=643b41560c920ccdd052d9c40a1886fdbf60871e;hb=ebf56de9280402768922e39ac1580a9c1ac132f8;hp=8f51dce901daa1e170317a0381527a5e2582a035;hpb=e4d23a0734328dbd993ca78fea30fec4c61eb184;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 8f51dce..643b415 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -57,6 +57,11 @@ describe("Check pazpar2 search", function () { }); +/* + * This part runs in background. It should be rewritten with + * async jasmine functions + * + */ describe("Check pazpar2 navigation", function () { // Asynchronous part it("check running search next/prev", function () { @@ -67,7 +72,7 @@ describe("Check pazpar2 navigation", function () { debug("trigger click on id: " + id); var click = $(id).trigger("click"); - debug("next click is success: " + click.length); + debug("next/prev: " + id + " click is success: " + click.length); expect(click.length).toBe(1); }, time * 1000); } @@ -124,6 +129,8 @@ describe("Check Termlist", function () { return $("div#mkwsFacetSources").length == 1 ? true : false; }, "check for facet sources", 2 * 1000); + + // everything displayed? runs(function () { var sources = $("div#mkwsFacetSources"); debug("Termlist sources success: " + sources.length); @@ -136,6 +143,13 @@ describe("Check Termlist", function () { expect(authors.length).toBe(1); }); + waitsFor(function () { + return $("div#mkwsFacetAuthors div.term").length >= 2 ? true : false; + }, "At least one author link displayed", 2 * 1000); + + runs(function () { + expect($("div#mkwsFacetAuthors div.term").length).toBeGreaterThan(1); + }); }); it("limit search to first author", function () { @@ -147,7 +161,7 @@ describe("Check Termlist", function () { waitsFor(function () { return get_hit_counter() < hits_all_targets ? true : false; - }, "Search for with less hits", 9 * 1000); + }, "Limited author search for less than " + hits_all_targets + " hits", 8 * 1000); runs(function () { var hits_single_target = get_hit_counter(); @@ -179,7 +193,7 @@ describe("Check Termlist", function () { waitsFor(function () { return get_hit_counter() < hits_all_targets ? true : false; - }, "Search for with less hits", 9 * 1000); + }, "Limited source earch for less than " + hits_all_targets + " hits", 9 * 1000); runs(function () { var hits_single_target = get_hit_counter();