defines.test.js 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. "use strict"
  2. const doT = require("..")
  3. const assert = require("assert")
  4. describe("defines", () => {
  5. describe("without parameters", () => {
  6. it("should render define", () => {
  7. testDef("{{##def.tmp:<div>{{=it.foo}}</div>#}}{{#def.tmp}}")
  8. })
  9. it("should render define if it is passed to doT.compile", () => {
  10. testDef("{{#def.tmp}}", {tmp: "<div>{{=it.foo}}</div>"})
  11. })
  12. })
  13. describe("with parameters", () => {
  14. it("should render define", () => {
  15. testDef("{{##def.tmp:foo:<div>{{=foo}}</div>#}}{{ var bar = it.foo; }}{{# def.tmp:bar }}")
  16. })
  17. it("should render define multiline params", () => {
  18. testDef(
  19. "{{##def.tmp:data:{{=data.openTag}}{{=data.foo}}{{=data.closeTag}}#}}\n" +
  20. "{{# def.tmp:{\n" +
  21. " foo: it.foo,\n" +
  22. ' openTag: "<div>",\n' +
  23. ' closeTag: "</div>"\n' +
  24. "} }}"
  25. )
  26. })
  27. function compiledDefinesParamTemplate(param) {
  28. const tmpl = `{{##def.tmp:input:<div>{{=input.foo}}</div>#}}{{#def.tmp:${param}}}`
  29. return doT.template(tmpl)
  30. }
  31. it("should render define with standard parameter", () => {
  32. const definesParamCompiled = compiledDefinesParamTemplate("it")
  33. assert.equal(definesParamCompiled({foo: "A"}), "<div>A</div>")
  34. assert.equal(definesParamCompiled({}), "<div>undefined</div>")
  35. })
  36. it("should render define with property parameter", () => {
  37. const definesParamCompiled = compiledDefinesParamTemplate("it.bar")
  38. assert.equal(definesParamCompiled({bar: {foo: "B"}}), "<div>B</div>")
  39. assert.throws(() => {
  40. definesParamCompiled({})
  41. }, /TypeError: Cannot read property 'foo' of undefined/)
  42. })
  43. it("should render define with square bracket property parameter", () => {
  44. const definesParamCompiled = compiledDefinesParamTemplate("it['bar']")
  45. assert.equal(definesParamCompiled({bar: {foo: "C"}}), "<div>C</div>")
  46. assert.throws(() => {
  47. definesParamCompiled({})
  48. }, /TypeError: Cannot read property 'foo' of undefined/)
  49. })
  50. it("should render define with square bracket property with space parameter", () => {
  51. const definesParamCompiled = compiledDefinesParamTemplate("it['bar baz']")
  52. assert.equal(definesParamCompiled({"bar baz": {foo: "D"}}), "<div>D</div>")
  53. assert.throws(() => {
  54. definesParamCompiled({})
  55. }, /TypeError: Cannot read property 'foo' of undefined/)
  56. })
  57. it("should render define with array index property parameter", () => {
  58. const definesParamCompiled = compiledDefinesParamTemplate("it[1]")
  59. assert.equal(definesParamCompiled(["not this", {foo: "E"}, "not this"]), "<div>E</div>")
  60. assert.throws(() => {
  61. definesParamCompiled({})
  62. }, /TypeError: Cannot read property 'foo' of undefined/)
  63. })
  64. it("should render define with deep properties parameter", () => {
  65. const definesParamCompiled = compiledDefinesParamTemplate("it['bar baz'].qux[1]")
  66. assert.equal(
  67. definesParamCompiled({"bar baz": {qux: ["not this", {foo: "F"}, "not this"]}}),
  68. "<div>F</div>"
  69. )
  70. assert.throws(() => {
  71. definesParamCompiled({})
  72. }, /TypeError: Cannot read property 'qux' of undefined/)
  73. })
  74. })
  75. function testDef(tmpl, defines) {
  76. const fn = doT.compile(tmpl, defines)
  77. assert.equal(fn({foo: "http"}), "<div>http</div>")
  78. assert.equal(fn({foo: "http://abc.com"}), "<div>http://abc.com</div>")
  79. assert.equal(fn({}), "<div>undefined</div>")
  80. }
  81. })