X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-pazpar2.js;h=b19b71e6f2f5b728a75ab1c7ff0b84be642dd026;hb=b3a8a8a4adfaa2c0b5b29228112709c94ff5e094;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..b19b71e 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -9,7 +9,7 @@ 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 = {}; } @@ -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; @@ -203,33 +203,33 @@ describe("Check Termlist", function () { expect(termlist.length).toBe(1); waitsFor(function () { - return $("div.mkwsFacetSources").length == 1 ? true : false; + return $('div.mkwsFacet[data-mkws-facet="xtargets"]').length == 1 ? true : false; }, "check for facet sources", 4 * jasmine_config.second); // everything displayed? runs(function () { - var sources = $("div.mkwsFacetSources"); + var sources = $('div.mkwsFacet[data-mkws-facet="xtargets"]'); debug("Termlist sources success: " + sources.length); expect(sources.length).toBe(1); - var subjects = $("div.mkwsFacetSubjects"); + var subjects = $('div.mkwsFacet[data-mkws-facet="subject"]'); expect(subjects.length).toBe(1); - var authors = $("div.mkwsFacetAuthors"); + var authors = $('div.mkwsFacet[data-mkws-facet="author"]'); expect(authors.length).toBe(1); }); waitsFor(function () { - return $("div.mkwsFacetAuthors div.term").length >= 2 ? true : false; + return $('div.mkwsFacet[data-mkws-facet="author"] div.term').length >= 2 ? true : false; }, "At least one author link displayed", 4 * jasmine_config.second); runs(function () { - expect($("div.mkwsFacetAuthors div.term").length).toBeGreaterThan(1); + expect($('div.mkwsFacet[data-mkws-facet="author"] div.term').length).toBeGreaterThan(1); }); }); 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; }