tumble/test/01_basics_mocha.coffee

95 lines
2.4 KiB
CoffeeScript
Raw Normal View History

2013-03-06 17:57:12 +00:00
chai = require 'chai'
assert = chai.assert
expect = chai.expect
should = chai.should()
2013-04-17 17:10:06 +00:00
tumble = require('../lib/tumble').parse;
2013-03-06 17:57:12 +00:00
test_data = [
{
'input': '',
'output': '',
'description': "no input"
}
{
'input': '<html>',
'output': '<html>',
'description': "just text"
}
{
'input': '<h1>{name}</h1>'
'output': '<h1>Elf Sternberg</h1>'
'data': {'name': 'Elf Sternberg'},
'description': "a simple substitution"
}
{
'input': '<h1>{title} {name}</h1>'
'output': '<h1>Mr. Elf Sternberg</h1>'
'data': {'name': 'Elf Sternberg', 'title': 'Mr.'},
'description': "two simple substitutions"
}
2013-04-17 17:10:06 +00:00
{
2013-04-17 17:10:06 +00:00
'input': '<ul>{if:title}{title}BBB{/if:title}</ul>'
'output': '<ul>AAABBB</ul>'
2013-04-17 17:10:06 +00:00
'data': {'title': 'AAA'}
'description': "a conditional block"
2013-04-17 17:10:06 +00:00
}
{
'input': '<ul>{if:title}{title}BBB{/if:title}</ul>'
'output': '<ul></ul>'
'data': {'title': ''}
'description': "a conditional block with no input"
}
{
'input': '<ul>{block:stories}{title}{/block:stories}</ul>'
'output': '<ul></ul>'
'data': {'stories': {'title': ''}}
'description': "a descendent block"
}
{
'input': '<ul>{block:stories}{title}BBB{/block:stories}</ul>'
'output': '<ul>AAABBB</ul>'
'data': {'stories': {'title': 'AAA'}}
'description': "a descendent block 2"
}
{
'input': '<ul>{many:stories}{title}{/many:stories}</ul>'
'output': '<ul></ul>'
'data': {'stories': [{'title': ''}]}
'description': "an iterative block"
}
{
'input': '<ul>{many:stories}{title}BBB{/many:stories}</ul>'
'output': '<ul>AAABBBCCCBBB</ul>'
'data': {'stories': [{'title': 'AAA'}, {'title': 'CCC'}]},
'description': "an iterative block 2"
}
{
'input': '<ul>{author}{many:stories}{title}BBB{author}{/many:stories}</ul>'
'output': '<ul>DDDAAABBBDDDCCCBBBDDD</ul>'
'data': {'author': 'DDD', 'stories': [{'title': 'AAA'}, {'title': 'CCC'}]},
'description': "an iterative block with ascent"
}
]
describe "Basic Functionality", ->
for data in test_data
do (data) ->
it "should work with #{data.description}", ->
r = tumble(data.input)(data.data)
r.should.equal data.output