From a36ef401f97d851d5bb6cddfc63168ab734db401 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Wed, 28 Aug 2013 13:21:05 +0200 Subject: [PATCH] check termlist, and for the sub-component: sources, subjects and authors Click on the first source, and limit search --- test/spec/mkws-pazpar2.js | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) 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/); -- 1.7.10.4