mirror of
https://github.com/venthur/blag.git
synced 2025-11-25 12:42:41 +00:00
67 lines
1.5 KiB
Python
67 lines
1.5 KiB
Python
import datetime
|
|
|
|
from jinja2 import Environment, PackageLoader
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def environment():
|
|
env = Environment(
|
|
loader=PackageLoader('blag', 'templates')
|
|
)
|
|
yield env
|
|
|
|
|
|
@pytest.fixture
|
|
def page_template(environment):
|
|
yield environment.get_template('page.html')
|
|
|
|
|
|
@pytest.fixture
|
|
def article_template(environment):
|
|
yield environment.get_template('article.html')
|
|
|
|
|
|
@pytest.fixture
|
|
def archive_template(environment):
|
|
yield environment.get_template('archive.html')
|
|
|
|
|
|
def test_page(page_template):
|
|
ctx = {
|
|
'content': 'this is the content',
|
|
'title': 'this is the title',
|
|
}
|
|
result = page_template.render(ctx)
|
|
assert 'this is the content' in result
|
|
assert 'this is the title' in result
|
|
|
|
|
|
def test_article(article_template):
|
|
ctx = {
|
|
'content': 'this is the content',
|
|
'title': 'this is the title',
|
|
}
|
|
result = article_template.render(ctx)
|
|
assert 'this is the content' in result
|
|
assert 'this is the title' in result
|
|
|
|
|
|
def test_archive(archive_template):
|
|
entry = {
|
|
'title': 'this is a title',
|
|
'dst': 'https://example.com/link',
|
|
'date': datetime.datetime(1980, 5, 9),
|
|
}
|
|
archive = [entry]
|
|
ctx = {
|
|
'title': 'this is the title',
|
|
'archive': archive,
|
|
}
|
|
result = archive_template.render(ctx)
|
|
assert 'this is the title' in result
|
|
|
|
assert 'this is a title' in result
|
|
assert '1980-05-09' in result
|
|
assert 'https://example.com/link' in result
|