refactor to check more HTML pages in mkws/examples/htdocs
[mkws-moved-to-github.git] / test / spec / mkws-index-full.spec.js
index ff9f47a..3627e14 100644 (file)
@@ -4,18 +4,8 @@
  *
  */
 
-var file = '../examples/htdocs/index-full.html'
-
-var jsdom = require('jsdom').jsdom;
-var myWindow = jsdom().createWindow();
-var $ = jQuery = require('jquery').create(myWindow);
 
 var fs = require("fs");
-var index_full = fs.readFileSync(file, "utf-8");
-
-var mkws_tags_required = ["mkwsSearch", "mkwsResults"];
-var mkws_tags_optional = ["mkwsSwitch", "mkwsLang", "mkwsTargets"];
-var mkws_tags_optional2 = ["mkwsMOTD", "mkwsStat", "footer"];
 
 /*
  * combine arrays, return a flat list
@@ -39,28 +29,88 @@ function flat_list (list) {
   return data;
 }
 
+/*
+ * simple test with string matching of the HTML page
+ *
+ */
+
+function html_check (file, tags_array, ignore_doctype) {
+  var html = fs.readFileSync(file, "utf-8");
+  var tags = flat_list(tags_array);
+
+  describe("index-full.html string test for " + file, function() {
+    it("html test", function() {
+      expect(html).toBeDefined();
 
-describe("index-full.html test", function() {
-  it("html test", function() {
-    expect(index_full).toBeDefined();
+      // forgotten doctype declaration
+      if (!ignore_doctype) {
+        expect(html).toMatch(/<html.*?>/);
+        expect(html).toMatch(/<\/html.*?>/);
+      }
+      expect(html).toMatch(/<head.*?>/);
+      expect(html).toMatch(/<body.*?>/);
+      expect(html).toMatch(/<\/head.*?>/);
+      expect(html).toMatch(/<\/body.*?>/);
 
-    expect(index_full).toMatch(/<html.*?>/); // forgotten doctype?
-    expect(index_full).toMatch(/<head.*?>/);
-    expect(index_full).toMatch(/<body.*?>/);
-    expect(index_full).toMatch(/<\/html.*?>/);
-    expect(index_full).toMatch(/<\/head.*?>/);
-    expect(index_full).toMatch(/<\/body.*?>/);
+      expect(html).toMatch(/<meta .*?charset=utf-8/i);
+      expect(html).toMatch(/<title>.+<\/title>/i);
+      expect(html).toMatch(/<link .*?type="text\/css" href=".*?\/?mkwsStyle.css"/);
 
-    expect(index_full).toMatch(/<meta .*?charset=utf-8/i);
-    expect(index_full).toMatch(/<title>.+<\/title>/i);
-    expect(index_full).toMatch(/<link .*?type="text\/css" href=".*?\/mkwsStyle.css"/);
 
-    var tags = flat_list([mkws_tags_required, mkws_tags_optional, mkws_tags_optional2]);
+      for(var i = 0, data = ""; i < tags.length; i++) {
+        data = '<div id="' + tags[i] + '">';
+        // console.log(data)
+        expect(html).toMatch(data);
+      }
+    });
+  });
+}
+
+var mkws_tags_required = ["mkwsSearch", "mkwsResults"];
+var mkws_tags_optional = ["mkwsSwitch", "mkwsLang", "mkwsTargets"];
+var mkws_tags_optional2 = ["mkwsMOTD", "mkwsStat", "footer"];
+html_check('../examples/htdocs/index-full.html', [mkws_tags_required, mkws_tags_optional, mkws_tags_optional2]);
+html_check('../examples/htdocs/index-mobile.html', [mkws_tags_required, mkws_tags_optional]);
+html_check('../examples/htdocs/index-popup.html', [], true);
+// html_check('../examples/htdocs/index-wolfram.html', [mkws_tags_required, mkws_tags_optional]);
+html_check('../examples/htdocs/index-jquery.html', []);
+
+var file = '../examples/htdocs/index-full.html';
+var html = fs.readFileSync(file, "utf-8");
+/*
+ * parse HTML data to DOM, and run jQuery request on it
+ *
+ */
+describe("index-full.html jsdom + jquery", function() {
+  var window = require('jsdom').jsdom(html, null, {
+
+    FetchExternalResources: false,
+    ProcessExternalResources: false,
+    MutationEvents: false,
+    QuerySelector: false
+  }).createWindow();
 
-    for(var i = 0, data = ""; i < tags.length; i++) {
-      data = '<div id="' + tags[i] + '">';
-      // console.log(data)
-      expect(index_full).toMatch(data);
+  /* apply jquery to the window */
+  var $ = jQuery = require('jquery').create(window);
+
+
+  it("html jquery test", function() {
+    expect(html).toBeDefined();
+
+    expect($("body").length == 0).toEqual(false);
+    expect($("body").length == 1).toEqual(true);
+    expect($("head").length == 1).toEqual(true);
+
+    var tags = flat_list([mkws_tags_required, mkws_tags_optional, mkws_tags_optional2]);
+    for(var i = 0; i < tags.length; i++) {
+      expect($("#" + tags[i]).length == 1).toEqual(true);
     }
   });
+
+  it("html jquery fail test", function() {
+    expect(html).toBeDefined();
+
+    expect($("body_does_not_exists").length == 1).toEqual(false);
+    expect($("#body_does_not_exists").length == 1).toEqual(false);
+  });
 });