conditionals.test.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. "use strict"
  2. const test = require("./util").test
  3. describe("conditionals", () => {
  4. describe("without else", () => {
  5. const templates = [
  6. "{{?it.one < 2}}{{=it.one}}{{?}}{{=it.two}}",
  7. "{{? it.one < 2 }}{{= it.one }}{{?}}{{= it.two }}",
  8. ]
  9. it("should evaluate condition and include template if valid", () => {
  10. test(templates, {one: 1, two: 2}, "12")
  11. })
  12. it("should evaluate condition and do NOT include template if invalid", () => {
  13. test(templates, {one: 3, two: 2}, "2")
  14. })
  15. })
  16. describe("with else", () => {
  17. const templates = [
  18. "{{?it.one < 2}}{{=it.one}}{{??}}{{=it.two}}{{?}}",
  19. "{{? it.one < 2 }}{{= it.one }}{{??}}{{= it.two }}{{?}}",
  20. ]
  21. it('should evaluate condition and include "if" template if valid', () => {
  22. test(templates, {one: 1, two: 2}, "1")
  23. })
  24. it('should evaluate condition and include "else" template if invalid', () => {
  25. test(templates, {one: 3, two: 2}, "2")
  26. })
  27. })
  28. describe("with else if", () => {
  29. const templates = [
  30. "{{?it.one < 2}}{{=it.one}}{{??it.two < 3}}{{=it.two}}{{??}}{{=it.three}}{{?}}",
  31. "{{? it.one < 2 }}{{= it.one }}{{?? it.two < 3 }}{{= it.two }}{{??}}{{= it.three }}{{?}}",
  32. ]
  33. it('should evaluate condition and include "if" template if valid', () => {
  34. test(templates, {one: 1, two: 2, three: 3}, "1")
  35. })
  36. it('should evaluate condition and include "else if" template if second condition valid', () => {
  37. test(templates, {one: 10, two: 2, three: 3}, "2")
  38. })
  39. it('should evaluate condition and include "else" template if invalid', () => {
  40. test(templates, {one: 10, two: 20, three: 3}, "3")
  41. })
  42. })
  43. })