X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fspec%2Fmkws-config.js;h=cf4894b660baa4137fbbf29ac0f1e492183c42b7;hb=bca4935cd8f8853122abaf5f6feb0e26eecc7942;hp=8cf22e200ce8e3e5ec5021350a556958ec67bce9;hpb=c5d1ba8a251f55565705b4864da7b24bcf8cf307;p=mkws-moved-to-github.git diff --git a/test/spec/mkws-config.js b/test/spec/mkws-config.js index 8cf22e2..cf4894b 100644 --- a/test/spec/mkws-config.js +++ b/test/spec/mkws-config.js @@ -1,50 +1,67 @@ -/* Copyright (c) 2013 IndexData ApS. http://indexdata.com +/* Copyright (c) 2013-2014 Index Data ApS. http://indexdata.com * * check mkws_config = {} object in browser * */ -describe("Check mkws_config object", function () { - it("mkws_config exists", function () { - expect(mkws_config).not.toBe(undefined); +describe("Check for external JavaScript libs", function () { + it("JSNlog", function () { + expect(typeof JL).not.toBe('undefined'); }); - it("mkws_config service proxy config", function () { - expect(mkws_config.service_proxy_url).toBe(undefined); + it("Handlebars", function () { + expect(typeof Handlebars).not.toBe('undefined'); }); - it("mkws_config locale check German", function () { + it("jQuery", function () { + expect(typeof mkws.$).not.toBe('undefined'); + }); + + it("jQuery UI", function () { + // if we have a popup widget, check for the jQuery UI lib + if (mkws.$(".popup").length > 0) { + expect(typeof mkws.$.ui).not.toBe('undefined'); + } + }); +}); + +describe("Check mkws.config object", function () { + it("mkws.config exists", function () { + expect(mkws.config).not.toBe(undefined); + }); + + it("mkws.config locale check German", function () { expect(mkws.locale_lang.de.Authors).toMatch(/^Autoren$/); expect(mkws.locale_lang.de.Location).toMatch(/^Ort$/); }); - it("mkws_config locale check Danish", function () { + it("mkws.config locale check Danish", function () { expect(mkws.locale_lang.da.Authors).toMatch(/^Forfattere$/); expect(mkws.locale_lang.da.Location).toMatch(/^Lokation$/); }); - it("mkws_config service proxy enabled", function () { - expect(mkws_config.use_service_proxy).toBe(true); + /* + * this is a test if the config value is a boolean JavaScript object: true or false + * and nothing else (0, '0', undefined, "false" etc.) + */ + it("mkws.config service proxy enabled/disabled", function () { + if (mkws.config.use_service_proxy) { + expect(mkws.config.use_service_proxy).toBe(true); + } else { + expect(mkws.config.use_service_proxy).toBe(false); + } }); }); describe("Check pazpar2 config", function () { - it("pazpar2path is a path or an full URL", function () { - expect(pazpar2path).toMatch(/^(\/|http:\/\/)/) - }); - - it("usesessions false", function () { - expect(usesessions).toBe(false); - }); - - it("my_paz is defined", function () { - expect(mkws.my_paz).not.toBe(undefined); + it("pazpar2_url is a path or an full URL", function () { + expect(mkws.config.pazpar2_url).toMatch(/^(\/|https?:\/\/|undefined$)/) }); }); describe("Check pazpar2 runtime", function () { - it("pazpar2 was successfully initialize", function () { - expect(mkws_config.error).toBe(undefined); + it("pazpar2 was successfully initialized", function () { + expect(mkws.config.error).toBe(undefined); }); });