From: Wolfram Schneider Date: Wed, 21 Aug 2013 14:07:26 +0000 (+0200) Subject: working test for examples/htdocs/index-full.html X-Git-Tag: 0.9.1~202^2~103 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=56d5229e4595706d0b6b92bfe4d9ed0681ed72ff;p=mkws-moved-to-github.git working test for examples/htdocs/index-full.html --- diff --git a/test/spec/mkws-index-full.spec.js b/test/spec/mkws-index-full.spec.js new file mode 100644 index 0000000..ff9f47a --- /dev/null +++ b/test/spec/mkws-index-full.spec.js @@ -0,0 +1,66 @@ +/* Copyright (c) 2013 IndexData ApS. http://indexdata.com + * + * jQuery test with DOM/windows object + * + */ + +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 + * [["a","b"], ["c"], "d"] => ["a", "b", "c", "d"] + * + */ +function flat_list (list) { + var data = []; + + for(var i = 0; i < list.length; i++) { + if (typeof list[i] == 'object') { + for(var j = 0; j < list[i].length; j++) { + data.push(list[i][j]); + } + + } else { + data.push(list[i]); + } + } + + return data; +} + + +describe("index-full.html test", function() { + it("html test", function() { + expect(index_full).toBeDefined(); + + expect(index_full).toMatch(//); // forgotten doctype? + expect(index_full).toMatch(//); + expect(index_full).toMatch(//); + expect(index_full).toMatch(/<\/html.*?>/); + expect(index_full).toMatch(/<\/head.*?>/); + expect(index_full).toMatch(/<\/body.*?>/); + + expect(index_full).toMatch(/.+<\/title>/i); + expect(index_full).toMatch(/'; + // console.log(data) + expect(index_full).toMatch(data); + } + }); +});