iteration.test.js 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. "use strict"
  2. const test = require("./util").test
  3. const assert = require("assert")
  4. describe("iteration", () => {
  5. describe("without index", () => {
  6. it("should repeat string N times", () => {
  7. test(
  8. [
  9. "{{~it.arr:x}}*{{~}}",
  10. "{{~ it.arr:x }}*{{~}}",
  11. "{{~ it.arr: x }}*{{~}}",
  12. "{{~ it.arr :x }}*{{~}}",
  13. ],
  14. {arr: Array(3)},
  15. "***"
  16. )
  17. })
  18. it("should concatenate items", () => {
  19. test(["{{~it.arr:x}}{{=x}}{{~}}"], {arr: [1, 2, 3]}, "123")
  20. })
  21. })
  22. describe("with index", () => {
  23. it("should repeat string N times", () => {
  24. test(["{{~it.arr:x:i}}*{{~}}", "{{~ it.arr : x : i }}*{{~}}"], {arr: Array(3)}, "***")
  25. })
  26. it("should concatenate indices", () => {
  27. test(["{{~it.arr:x:i}}{{=i}}{{~}}"], {arr: Array(3)}, "012")
  28. })
  29. it("should concatenate indices and items", () => {
  30. test(
  31. ["{{~it.arr:x:i}}{{?i}}, {{?}}{{=i}}:{{=x}}{{~}}"],
  32. {arr: [10, 20, 30]},
  33. "0:10, 1:20, 2:30"
  34. )
  35. })
  36. it("should interpolate nested array even if the same index variable is used", () => {
  37. test(
  38. ["{{~it.arr:x:i}}{{~x:y:i}}{{=y}}{{~}}{{~}}"],
  39. {
  40. arr: [
  41. [1, 2, 3],
  42. [4, 5, 6],
  43. ],
  44. },
  45. "123456"
  46. )
  47. })
  48. })
  49. describe("iterables", () => {
  50. const set = new Set([1, 2, 3])
  51. describe("without index", () => {
  52. it("should repeat string N times", () => {
  53. assert.strictEqual(Array.isArray(set.values()), false)
  54. test(["{{~it.arr:x}}*{{~}}"], {arr: set.values()}, "***")
  55. })
  56. it("should concatenate items", () => {
  57. test(["{{~it.arr:x}}{{=x}}{{~}}"], {arr: set.values()}, "123")
  58. })
  59. })
  60. describe("with index", () => {
  61. it("should repeat string N times", () => {
  62. test(["{{~it.arr:x:i}}*{{~}}"], {arr: set.values()}, "***")
  63. })
  64. it("should concatenate indices", () => {
  65. test(["{{~it.arr:x:i}}{{=i}}{{~}}"], {arr: set.values()}, "012")
  66. })
  67. it("should concatenate indices and items", () => {
  68. test(
  69. ["{{~it.arr:x:i}}{{?i}}, {{?}}{{=i}}:{{=x}}{{~}}"],
  70. {arr: set.values()},
  71. "0:1, 1:2, 2:3"
  72. )
  73. })
  74. })
  75. })
  76. })