From: Wolfram Schneider Date: Wed, 28 Aug 2013 11:21:05 +0000 (+0200) Subject: check termlist, and for the sub-component: sources, subjects and authors X-Git-Tag: 0.9.1~202^2~47 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=a36ef401f97d851d5bb6cddfc63168ab734db401;p=mkws-moved-to-github.git check termlist, and for the sub-component: sources, subjects and authors Click on the first source, and limit search --- diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 0185e52..46dd488 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -119,7 +119,28 @@ describe("Check pazpar2 hit counter", function () { expect(click.length == 1).toBe(true); }); - /* + it("found Termlist", function () { + var termlist = $("div#mkwsTermlists"); + debug("Termlist success: " + termlist.length); + expect(termlist.length == 1).toBe(true); + + var sources = $("div#mkwsFacetSources"); + expect(sources.length == 1).toBe(true); + + var subjects = $("div#mkwsFacetSubjects"); + expect(subjects.length == 1).toBe(true); + + var authors = $("div#mkwsFacetAuthors"); + expect(authors.length == 1).toBe(true); + }); + + it("Limit search to first source", function () { + var click = $("div#mkwsFacetSources div.term:nth-child(2) a").trigger("click"); + debug("limit source click is success: " + click.length); + expect(click.length == 1).toBe(true); + }); + +/* it("Final success message in search input field", function () { $("input#mkwsQuery").val("jasmine test is done"); expect($("input#mkwsQuery").val()).toMatch(/done/);