-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_mmddata.py
167 lines (146 loc) · 4.75 KB
/
test_mmddata.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import unittest
from docdata import mmddata
class TestBuildCollection(unittest.TestCase):
def setUp(self):
mmddata.tc._registery = {}
mmddata.tc.default = (lambda v: v)
def test_build_global_collection(self):
@mmddata.transformer()
def default(value):
return ' '.join(value)
@mmddata.transformer('summary')
def summary(value):
return '\n'.join(value)
self.assertEqual(len(mmddata.tc._registery.items()), 1)
self.assertEqual(mmddata.tc.default, default)
self.assertEqual(mmddata.tc._registery['summary'], summary)
def test_build_collection_instance(self):
tc = mmddata.TransformerCollection()
@tc.register()
def default(value):
return ' '.join(value)
@tc.register('summary')
def summary(value):
return '\n'.join(value)
self.assertEqual(len(tc._registery.items()), 1)
self.assertEqual(tc.default, default)
self.assertEqual(tc._registery['summary'], summary)
def test_build_collection_init(self):
def default(value):
return ' '.join(value)
def summary(value):
return '\n'.join(value)
def title(value):
return value[0].upper()
tc = mmddata.TransformerCollection(
items={'summary': summary, 'title': title},
default=default
)
self.assertEqual(len(tc._registery.items()), 2)
self.assertEqual(tc.default, default)
self.assertEqual(tc._registery['summary'], summary)
self.assertEqual(tc._registery['title'], title)
class TestCollectionTransform(unittest.TestCase):
def setUp(self):
self.tc = mmddata.TransformerCollection(
items={
'author': (lambda v: v[0].upper()),
'summary': (lambda v: '\n'.join(v)),
'tags': (lambda v: v)
},
default=(lambda v: ' '.join(v))
)
self.data = {
'author': ['Bob', 'Jane'],
'summary': ['foo', 'bar'],
'tags': ['foo', 'bar'],
'unknown': ['foo', 'bar']
}
def test_transform(self):
self.assertEqual(
self.tc.transform('author', self.data['author']),
'BOB'
)
self.assertEqual(
self.tc.transform('summary', self.data['summary']),
'foo\nbar'
)
self.assertEqual(
self.tc.transform('tags', self.data['tags']),
['foo', 'bar']
)
self.assertEqual(
self.tc.transform('unknown', self.data['unknown']),
'foo bar'
)
def test_transform_dict(self):
self.assertEqual(
self.tc.transform_dict(self.data),
{
'author': 'BOB',
'summary': 'foo\nbar',
'tags': ['foo', 'bar'],
'unknown': 'foo bar'
}
)
class TestDataParser(unittest.TestCase):
def setUp(self):
# Deliminated doc
self.ddoc = """---
Title: Foo Bar
Author: John
Summary: Line one
Line two
Tags: foo,bar
---
Doc body
"""
# Non deliminated doc
self.ndoc = self.ddoc.replace('---\n', '')
self.tc = mmddata.TransformerCollection(
items={
'author': (lambda v: v[0].upper()),
'summary': (lambda v: '\n'.join(v)),
'tags': (lambda v: v[0].split(','))
},
default=(lambda v: ' '.join(v))
)
def test_deliminated_raw_data(self):
self.assertEqual(
mmddata.get_raw_data(self.ddoc),
(
'Doc body\n',
{
'title': ['Foo Bar'],
'author': ['John'],
'summary': ['Line one', 'Line two'],
'tags': ['foo,bar']
}
)
)
def test_nondeliminated_raw_data(self):
self.assertEqual(
mmddata.get_raw_data(self.ndoc),
(
'Doc body\n',
{
'title': ['Foo Bar'],
'author': ['John'],
'summary': ['Line one', 'Line two'],
'tags': ['foo,bar']
}
)
)
def test_get_data(self):
self.assertEqual(
mmddata.get_data(self.ddoc, self.tc),
(
'Doc body\n',
{
'title': 'Foo Bar',
'author': 'JOHN',
'summary': 'Line one\nLine two',
'tags': ['foo', 'bar']
}
)
)