-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path__init__.py
91 lines (78 loc) · 2.92 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# -*- coding: utf-8 -*-
import os
import codecs
import unittest
import plim
from plim import syntax
class TestCaseBase(unittest.TestCase):
def setUp(self):
here = os.path.abspath(os.path.dirname(__file__))
self.templates_dir = os.path.join(here, 'fixtures')
self.maxDiff = None
self.syntax = plim.syntax.Mako()
def tearDown(self):
pass
def get_file_contents(self, template_name):
return codecs.open(os.path.join(self.templates_dir, template_name), 'r', 'utf-8').read()
def check_relevant_chars(self, value1, value2):
value1 = value1.strip().replace('\n\n\n\n', '\n\n').replace('\n\n\n', '\n\n').replace('\n\n', '\n')
value2 = value2.strip().replace('\n\n\n\n', '\n\n').replace('\n\n\n', '\n\n').replace('\n\n', '\n')
self.assertEqual(value1, value2)
class TestPreprocessorSyntax(TestCaseBase):
def test_plim(self):
cases = [
'pipe',
'plim_line',
'if',
'unless',
'python',
'for',
'while',
'until',
'with',
'try',
'def_block',
'style_script',
'comment',
'one_liners',
'mako_text',
'early_return',
'call',
'multiline_variable',
'literal_one_liners',
'no_filtering',
'linebreak',
'explicit_space',
'unicode_attributes',
'inline_conditions',
'handlebars',
]
for test_case in cases:
source = self.get_file_contents(test_case + '_test.plim')
result = self.get_file_contents(test_case + '_result.mako')
data = plim.preprocessor(source)
self.check_relevant_chars(data.strip(), result.strip())
def test_dynamic_attributes(self):
test_case = 'dynamic_attributes'
source = self.get_file_contents(test_case + '_test.plim')
result = self.get_file_contents(test_case + '_result.mako')
data = plim.preprocessor(source)
# normalize data
data = data.replace("<a \n", "<a\n")
# normalize for Test4
data = data.replace("\n \n", "\n\n")
self.assertEqual(data.strip(), result.strip())
def test_inline_loops(self):
test_case = 'inline_loop'
source = self.get_file_contents(test_case + '_test.plim')
result = self.get_file_contents(test_case + '_result.mako')
data = plim.preprocessor(source)
self.assertEqual(data.strip(), result.strip())
def test_embedded_markup(self):
test_case = 'embedded'
source = self.get_file_contents(test_case + '_test.plim')
result = self.get_file_contents(test_case + '_result.mako')
data = plim.preprocessor(source)
# normalize result
result = result.strip().replace('\n---\n', '')
self.assertEqual(data.strip(), result)