wating for 80 records is enough
[mkws-moved-to-github.git] / test / spec / mkws-pazpar2.js
index ee096b4..e7138bd 100644 (file)
@@ -94,15 +94,15 @@ describe("Check pazpar2 navigation", function () {
 
 describe("Check pazpar2 hit counter", function () {
     it("check running search hit counter", function () {
-        var max_time = 10; // in seconds
-        var expected_hits = 116; // at least expected hit counter
+        var max_time = 16; // in seconds
+        var expected_hits = 80; // at least expected hit counter
         var hits = 0;
 
         waitsFor(function () {
             hits = get_hit_counter();
 
             return hits >= expected_hits;
-        }, "Expect N hits in x seconds", max_time * 1000);
+        }, "Expect " + expected_hits + " hits", max_time * 1000);
 
 
         runs(function () {
@@ -114,13 +114,6 @@ describe("Check pazpar2 hit counter", function () {
 });
 
 describe("Check Termlist", function () {
-    function show_record() {
-        var click = $("div#mkwsRecords div.record:nth-child(3) :nth-child(2)").trigger("click");
-        debug("show click is success: " + click.length);
-        expect(click.length == 1).toBe(true);
-    }
-
-    // show_record();
     it("found Termlist", function () {
         var termlist = $("div#mkwsTermlists");
         debug("Termlist success: " + termlist.length);
@@ -179,9 +172,32 @@ describe("Check Termlist", function () {
             expect(hits_all_targets).toBeGreaterThan(hits_single_target);
         });
     });
+});
 
+describe("Show record", function () {
     it("show record author", function () {
-        show_record();
+        var click = $("div#mkwsRecords div.record:nth-child(3) :nth-child(2)").trigger("click");
+        debug("show click is success: " + click.length);
+        expect(click.length == 1).toBe(true);
+
+        // wait until the record pops up
+        waitsFor(function () {
+            var show = $("div#mkwsRecords div.record:nth-child(3) div");
+            return show != null && show.length ? true : false;
+        }, "wait some miliseconds", 1 * 1000);
+
+        runs(function () {
+            debug("show record pop up");
+            expect($("div#mkwsRecords div.record:nth-child(3) div")).not.toBe(null);
+        });
+    });
+
+    it("extract URL", function () {
+        var url = $("div#mkwsRecords div.record:nth-child(3) div table tbody tr td a").text();
+        debug("extracted URL from record: " + url);
+
+        expect(url).not.toBe(null);
+        expect(url).toMatch(/^http:\/\/[a-z0-9]+\.[0-9a-z].*\//i);
     });
 });