123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- # Fields
- const x = 5
- # Test substring
- static:
- assert "test".substring(3) == "t"
- assert "test".substring(2,1) == "s"
- assert "test".substring(3,2) == "t"
- assert "test".substring(1,2) == "es"
- # Various parsing tests
- when true:
- block: #no_substitution
- proc actual: string = tmpli html"""
- <p>Test!</p>
- """
- const expected = html"""
- <p>Test!</p>
- """
- doAssert actual() == expected
- block: #basic
- proc actual: string = tmpli html"""
- <p>Test $$x</p>
- $x
- """
- const expected = html"""
- <p>Test $x</p>
- 5
- """
- doAssert actual() == expected
- block: #expression
- proc actual: string = tmpli html"""
- <p>Test $$(x * 5)</p>
- $(x * 5)
- """
- const expected = html"""
- <p>Test $(x * 5)</p>
- 25
- """
- doAssert actual() == expected
- block: #escape
- proc actual: string = tmpli js"""
- [{
- "hello world"
- }]
- """
- const expected = js"""
- [{
- "hello world"
- }]
- """
- doAssert actual() == expected
- block: #forIn
- proc actual: string = tmpli html"""
- <p>Test for</p>
- <ul>
- $for y in 0..2 {
- <li>$y</li>
- }
- </ul>
- """
- const expected = html"""
- <p>Test for</p>
- <ul>
- <li>0</li>
- <li>1</li>
- <li>2</li>
- </ul>
- """
- doAssert actual() == expected
- block: #while
- proc actual: string = tmpli html"""
- <p>Test while/stmt</p>
- <ul>
- ${ var y = 0 }
- $while y < 4 {
- <li>$y</li>
- ${ inc(y) }
- }
- </ul>
- """
- const expected = html"""
- <p>Test while/stmt</p>
- <ul>
- <li>0</li>
- <li>1</li>
- <li>2</li>
- <li>3</li>
- </ul>
- """
- doAssert actual() == expected
- block: #ifElifElse
- proc actual: string = tmpli html"""
- <p>Test if/elif/else</p>
- $if x == 8 {
- <div>x is 8!</div>
- }
- $elif x == 7 {
- <div>x is 7!</div>
- }
- $else {
- <div>x is neither!</div>
- }
- """
- const expected = html"""
- <p>Test if/elif/else</p>
- <div>x is neither!</div>
- """
- doAssert actual() == expected
- block: #multiLineStatements
- proc actual: string = tmpli html"""
- <p>Test multiline statements</p>
- ${
- var x = 5
- var y = 7
- }
- <span>$x</span><span>$y</span>
- """
- const expected = html"""
- <p>Test multiline statements</p>
- <span>5</span><span>7</span>
- """
- doAssert actual() == expected
- block: #caseOfElse
- proc actual: string = tmpli html"""
- <p>Test case</p>
- $case x
- $of 5 {
- <div>x == 5</div>
- }
- $of 6 {
- <div>x == 6</div>
- }
- $else {}
- """
- const expected = html"""
- <p>Test case</p>
- <div>x == 5</div>
- """
- doAssert actual() == expected
- when true: #embeddingTest
- proc no_substitution: string = tmpli html"""
- <h1>Template test!</h1>
- """
- # # Single variable substitution
- proc substitution(who = "nobody"): string = tmpli html"""
- <div id="greeting">hello $who!</div>
- """
- # Expression template
- proc test_expression(nums: openArray[int] = []): string =
- var i = 2
- tmpli html"""
- $(no_substitution())
- $(substitution("Billy"))
- <div id="age">Age: $($nums[i] & "!!")</div>
- """
- proc test_statements(nums: openArray[int] = []): string =
- tmpli html"""
- $(test_expression(nums))
- $if true {
- <ul>
- $for i in nums {
- <li>$(i * 2)</li>
- }
- </ul>
- }
- """
- var actual = test_statements([0,1,2])
- const expected = html"""
- <h1>Template test!</h1>
- <div id="greeting">hello Billy!</div>
- <div id="age">Age: 2!!</div>
- <ul>
- <li>0</li>
- <li>2</li>
- <li>4</li>
- </ul>
- """
- doAssert actual == expected
- when defined(future):
- block: #tryCatch
- proc actual: string = tmpli html"""
- <p>Test try/catch</p>
- <div>
- $try {
- <div>Lets try this!</div>
- }
- $except {
- <div>Uh oh!</div>
- }
- </div>
- """
- const expected = html"""
- <p>Test try/catch</p>
- <div>
- <div>Lets try this!</div>
- </div>
- """
- doAssert actual() == expected
|