reorder JS lib tests
[mkws-moved-to-github.git] / test / spec / mkws-pazpar2.js
index eeb3e67..29bb300 100644 (file)
@@ -7,7 +7,7 @@
 // get references from mkws.js, lazy evaluation
 var debug = function (text) {
         // use a debug function with time stamps
-        mkws.teams["AUTO"].log("Jasmine: " + text);
+        mkws.teams["AUTO"].info("Jasmine: " + text);
 
         //mkws.log("Jasmine: " + text)
     }
@@ -227,13 +227,13 @@ describe("Check pazpar2 hit counter", function () {
     });
 });
 
-describe("Check Termlist", function () {
+describe("Check Facets", function () {
     var $ = mkws.$;
 
-    it("found Termlist", function () {
-        var termlist = $("div.mkws-termlists");
-        debug("Termlist success: " + termlist.length);
-        expect(termlist.length).toBe(1);
+    it("found Facets", function () {
+        var facets = $("div.mkws-facets");
+        debug("Facet success: " + facets.length);
+        expect(facets.length).toBe(1);
 
         waitsFor(function () {
             return $("div.mkws-facet[data-mkws-facet='xtargets']").length == 1 ? true : false;
@@ -242,7 +242,7 @@ describe("Check Termlist", function () {
         // everything displayed?
         runs(function () {
             var sources = $("div.mkws-facet[data-mkws-facet='xtargets']");
-            debug("Termlist sources success: " + sources.length);
+            debug("Facet sources success: " + sources.length);
             expect(sources.length).toBe(1);
 
             var subjects = $("div.mkws-facet[data-mkws-facet='subject']");
@@ -670,11 +670,13 @@ describe("Check SortBy options", function () {
         var waitcount = 0;
         var sort_value = 'title:1';
         var per_page_number = 20;
+
+        // keep current title list
         var title_list_old = title_list("xxx ");
 
         function title_list(prefix) {
             var list = [];
-            var terms = $("div.mkws-records > div.mkws-summary > a");
+            var terms = $("div.mkws-records > div.mkws-summary > div.mkws-field-data span.mkws-field-title");
             for (var i = 0; i < terms.length; i++) {
                 var term = $(terms[i]).text().trim();
                 list.push(term);
@@ -707,7 +709,7 @@ describe("Check SortBy options", function () {
             $("div.mkws-records").unbind("DOMNodeInserted DOMNodeRemoved propertychange");
             debug("unbind by sort");
 
-            var records = $("div.mkws-records > div.mkws-summary > a");
+            var records = $("div.mkws-records > div.mkws-summary");
             debug("Sort by got now " + records.length + " records");
             expect(records.length).toBe(per_page_number);
         });
@@ -716,7 +718,7 @@ describe("Check SortBy options", function () {
             var title_list_new = title_list("yyy ");
             var diff_flag = 0;
             for (var i = 0; i < title_list_old.length; i++) {
-                debug((i+1) + ". " + title_list_old[i] + " :: " + title_list_new[i]);
+                debug((i + 1) + ". " + title_list_old[i] + " :: " + title_list_new[i]);
 
                 if (title_list_old[i] != title_list_new[i]) {
                     diff_flag++;
@@ -729,22 +731,22 @@ describe("Check SortBy options", function () {
 });
 
 describe("Check async widget discovery", function () {
-  var $ = mkws.$;
-  it("initialises a new widget", function() {
-    $("div.mkws-search").after('<div id="asyncSearch"><div class="mkws-search mkws-team_async"></div></div>');
-    mkws.init("Another search box", "#asyncSearch");
-    waitsFor(function () {
-      return $("#asyncSearch input").length >= 1 ? true : false;
-    }, "Call init() to build an .mkws-search", 750);
-    runs(function () {
-      var numInput = $("div.mkws-search input").length;
-      debug("Input elements present: " + numInput);
-      expect(numInput).toBe(4);
-      var numRec = $("div.mkws-records > div.mkws-summary > a").length;
-      debug("Records should still be present. There are: " + numRec);
-      expect(numRec).toBeGreaterThan(0);
+    var $ = mkws.$;
+    it("initialises a new widget", function () {
+        $("div.mkws-search").after('<div id="asyncSearch"><div class="mkws-search mkws-team-async"></div></div>');
+        mkws.init("Another search box", "#asyncSearch");
+        waitsFor(function () {
+            return $("#asyncSearch input").length >= 1 ? true : false;
+        }, "Call init() to build an .mkws-search", 750);
+        runs(function () {
+            var numInput = $("div.mkws-search input").length;
+            debug("Input elements present: " + numInput);
+            expect(numInput).toBe(4);
+            var numRec = $("div.mkws-records > div.mkws-summary").length;
+            debug("Records should still be present. There are: " + numRec);
+            expect(numRec).toBeGreaterThan(0);
+        });
     });
-  });
 });
 
 /* done */