-
Notifications
You must be signed in to change notification settings - Fork 0
/
snippettesterlib.py
306 lines (235 loc) · 8.19 KB
/
snippettesterlib.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
"""
Utility to execute and verify snippets. The idea is to import the lib
in a script, set the config and add actions. Then create files with
snippets!
Example script:
```py
from snippettesterlib import config, addAction, iterateSnippets, run, show
config.rootDir = os.path.dirname(__file__)
config.dirs = ["snippets"]
config.separator = "####"
config.pattern = "*.py"
@addAction("echo")
def action_echo(source):
return source
if __name__ == "__main__":
ok = run()
sys.exit(0 if ok else 1)
```
Example snippet file:
```py
# example snippetfile
#### echo: foo
foo
#### output
foo
#### end
#### echo: bar
foo
bar
#### output
foo
bar
#### end
```
"""
import os
import glob
__version__ = "0.1.0"
version_info = tuple(int(i) for i in __version__.split("."))
# %% Utils
class Config:
pass
config = Config()
# Fields must be set from user-code
config.rootDir = os.path.dirname(__file__)
config.dirs = []
config.separator = "THE_SEPARATOR"
config.pattern = ""
# name -> func to apply to a snippet source
ACTIONS = {}
# %% API
def iterateSnippets():
"""A generator producing Snippet objects."""
return SnippetCollection().iterSnippets()
def addAction(name):
"""Decorator to apply to a function to mark it as an action."""
def wrapper(func):
ACTIONS[name] = func
return func
return wrapper
def show():
"""Show a summary of the detected snippets."""
collection = SnippetCollection()
nfiles = len(collection.files)
nsnippets = sum(len(file.snippets) for file in collection.files)
print(f"Found {nfiles} files with a total of {nsnippets} snippets.")
for snippet in collection.iterSnippets():
print(" " + snippet.repr())
def run():
"""Run all snippets. Returns True if all results were as expected."""
collection = SnippetCollection()
nfiles = len(collection.files)
nsnippets = sum(len(file.snippets) for file in collection.files)
print(f"Found {nfiles} files with a total of {nsnippets} snippets.\n")
missing = []
fails = []
for snippet in collection.iterSnippets():
ok = snippet.run()
res = "ok " if ok else "FAIL"
print(f" {res} {snippet.repr(False)}")
if not ok:
if snippet.expect is None:
missing.append(snippet)
else:
fails.append(snippet)
print()
for file in collection.files:
file.save()
if missing:
print(f"Missing expected output for {len(missing)}/{nsnippets} snippets:")
for snippet in missing:
print(" " + snippet.repr(True, clickableFilename=True))
print()
if fails:
print(f"Failed {len(fails)}/{nsnippets} snippets:")
for snippet in fails:
print(" " + snippet.repr(True, clickableFilename=True))
print()
else:
print("No failed snippets.")
print()
if missing or fails:
return False
else:
print(f"All {nsnippets} snippets passed :)")
print()
return True
# %% Core classes
class SnippetCollection:
"""Represents a set of files with snippets."""
def __init__(self):
self.dirnames = [os.path.join(config.rootDir, p) for p in config.dirs]
self.collect()
def collect(self):
self.files = []
for dirname in self.dirnames:
assert os.path.isdir(dirname)
filenames = glob.glob(
os.path.join(dirname, "**", config.pattern), recursive=True
)
for filename in filenames:
snippetFile = SnippetFile(filename)
self.files.append(snippetFile)
def iterSnippets(self):
for file in self.files:
for snippet in file.snippets:
yield snippet
class SnippetFile:
"""Represents a file with zero or more snippets."""
def __init__(self, filename):
self.filename = filename
self.load()
def load(self):
self.snippets = []
assert os.path.isfile(self.filename)
with open(self.filename, "rb") as f:
self.text = f.read().decode()
lines = self.text.split("\n")
pending_snippet = None
lastsep = 0
for lineid, line in enumerate(lines):
if line.startswith(config.separator):
if ":" in line:
action, _, title = line[len(config.separator) :].partition(":")
action = action.strip()
title = title.strip()
if action:
pending_snippet = Snippet(
self.filename, lineid + 1, action, title
)
pending_snippet.linenr = lineid + 1
elif pending_snippet:
sniptext = "\n".join(lines[lastsep + 1 : lineid])
if pending_snippet.source is None:
pending_snippet.source = sniptext
self.snippets.append(pending_snippet)
elif pending_snippet.expect is None:
pending_snippet.expect = sniptext
elif pending_snippet.result is None:
pending_snippet.result = sniptext
else:
pass # drop this piece
lastsep = lineid
def save(self):
# Produce new text. Assign line numbers along the way
linenr = 1
newText = ""
for snippet in self.snippets:
text = snippet.toText()
newText += text
snippet.linenr = linenr
linenr += text.count("\n")
# Write only when the text has changed
if newText != self.text:
with open(self.filename, "wb") as f:
f.write(newText.encode())
class Snippet:
"""Represents a snippet, consisting of at least two parts, the source, and the expected output."""
def __init__(
self, filename, linenr, action, title, source=None, expect=None, result=None
):
# Meta data, just to repr the snippet better
self.filename = filename
self.linenr = linenr
# Snippet info
self.action = action
self.title = title
self.source = source
self.expect = expect
self.result = result
def repr(self, showLine=True, *, clickableFilename=False):
fname = self.filename
if clickableFilename: # in most (?) IDE's anyway
fname = f'"{self.filename}"'
else:
fname = os.path.relpath(self.filename, config.rootDir)
line = ""
if showLine:
line = f"line {self.linenr:<4}"
return f"{fname} {line} - {self.action}: {self.title}"
def toText(self):
assert isinstance(self.source, str)
lines = []
# Source
lines.append(f"{config.separator} {self.action}: {self.title}")
lines.extend(self.source.split("\n"))
ending = "end"
# Expected and actual output
if self.expect is None:
if self.result is not None and not self.result:
ending = "end (no output)"
else:
ending = "end (missing expected output)"
elif self.result is None:
lines.append(f"{config.separator} (expected) output")
lines.extend(self.expect.split("\n"))
elif self.expect == self.result:
lines.append(f"{config.separator} output")
lines.extend(self.expect.split("\n"))
else:
lines.append(f"{config.separator} expected output")
lines.extend(self.expect.split("\n"))
lines.append(f"{config.separator} actual output")
lines.extend(self.result.split("\n"))
# End sep and spacing
lines.append(f"{config.separator} {ending}")
lines.extend(["", "", "", ""])
return "\n".join(lines)
def run(self):
assert isinstance(self.source, str)
if self.action not in ACTIONS:
raise RuntimeError(f"Unknown action: {self.action}")
fun = ACTIONS[self.action]
self.result = fun(self)
return (self.expect or "") == self.result