forked from snychka/python-static-site-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_module3.py
executable file
·574 lines (445 loc) · 18.9 KB
/
test_module3.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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
import pytest
@pytest.mark.test_content_imports_module3
def test_content_imports_module3(parse):
# import re
# from collections.abc import Mapping
# from yaml import load, FullLoader
content = parse("content")
assert content.success, content.message
re_import = "re" in content.get_imports()
assert re_import, "Have you imported `re`?"
collections_import = "Mapping" in content.get_from_import("collections.abc")
assert collections_import, "Have you imported `Mapping` from `collections.abc`?"
yaml_load = "load" in content.get_from_import("yaml")
yaml_full = "FullLoader" in content.get_from_import("yaml")
yaml_imports = yaml_load and yaml_full
assert collections_import, "Have you imported `load` and `FullLoader` from `yaml`?"
@pytest.mark.test_content_class_module3
def test_content_class_module3(parse):
# class Content(Mapping):
# __delimiter = r"^(?:-|\+){3}\s*$"
# __regex = re.compile(__delimiter, re.MULTILINE)
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
inheriting = content_class.code.inherit_from.name.value == "Mapping"
assert inheriting, "Is `Content` a sub-class of the `Mapping` class?"
delimiter = content.get_by_value("assignment", "__delimiter", content_class.code)
assert (
delimiter.exists
), "Have you created a variable called `__delimiter` and assigned it a regular expression pattern?"
delimiter_correct = (
delimiter.code.value.value.replace("'", '"') == 'r"^(?:-|\\+){3}\\s*$"'
)
assert (
delimiter_correct
), "Do you have the correct regular expression assigned to `__delimiter`?"
regex = content.get_by_value("assignment", "__regex", content_class.code)
assert (
regex.exists
), "Have you created a variable called `__regex` and assigned it correctly?"
re_compile_call = regex.code.find(
"atomtrailers",
lambda node: node[0].value == "re"
and node[1].value == "compile"
and node[2].type == "call",
)
assert re_compile_call, "Are you setting `__regex` to a call to `re.compile()`?"
compile_args = list(
re_compile_call.find_all("call_argument").map(lambda node: str(node.value))
)
args_correct = (
len(compile_args) == 2
and compile_args[0] == "__delimiter"
and compile_args[1] == "re.MULTILINE"
)
assert (
args_correct
), "Are you passing the correct number of arguments to `re.compile()`?"
@pytest.mark.test_content_classmethod_load_module3
def test_content_classmethod_load_module3(parse):
# @classmethod
# def load(cls, string):
# _, fm, content = cls.__regex.split(string, 2)
# metadata = load(fm, Loader=FullLoader)
# return cls(metadata, content)
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
load = content.get_by_name("def", "load", content_class.code)
assert (
load.exists
), "Have you created a class method called `load` in the `Content` class?"
cls_arg = content.get_by_value("def_argument", "cls", load.code)
assert cls_arg.exists, "Does the `load` method have a `cls` argument?"
path_arg = content.get_by_value("def_argument", "string", load.code)
assert path_arg.exists, "Does the `load` method have a `string` argument?"
decorator_exists = load.code.decorators.dotted_name.name.value == "classmethod"
assert (
decorator_exists
), "Does the `load` method have a decorator of `@classmethod`?"
tuple_return = load.code.find_all(
"assignment",
lambda node: node.find(
"tuple",
lambda node: node[0].name.value == "_"
and node[1].name.value == "fm"
and node[2].name.value == "content",
),
)
tuple_return_exists = tuple_return is not None
assert (
tuple_return_exists
), "Are you assigning a tuple the results of a call `to cls.__regex.split()`?"
split_call = (
tuple_return.find(
"atomtrailers",
lambda node: node[0].value == "cls"
and node[1].value == "__regex"
and node[2].value == "split"
and node[3].type == "call",
)
is not None
)
assert (
split_call
), "Do you have a call to `cls.__regex.split()` in the `load` method?"
split_args = content.get_args(content.get_call("split", tuple_return).code)
args_correct = (
len(split_args) == 2
and split_args[0] == "None:string"
and split_args[1] == "None:2"
)
assert (
args_correct
), "Are you passing the correct arguments to `cls.__regex.split()`?"
metadata = content.get_by_value("assignment", "metadata", load.code)
assert (
metadata.exists
), "Have you created a variable called `metadata` and assigned it correctly?"
yaml_load = content.get_call("load", metadata.code)
yaml_load_args = content.get_args(yaml_load.code)
yaml_args_correct = (
len(yaml_load_args) == 2
and yaml_load_args[0] == "None:fm"
and yaml_load_args[1] == "Loader:FullLoader"
)
assert yaml_args_correct, "Are you passing the correct arguments to `load()`?"
return_cls_call = load.code.return_ is not None
assert return_cls_call, "Are you returning a call to `cls()`?"
cls_call = content.get_call("cls", load.code.return_)
cls_args = content.get_args(cls_call.code)
cls_args_correct = (
len(cls_args) == 2
and cls_args[0] == "None:metadata"
and cls_args[1] == "None:content"
)
assert cls_args_correct, "Are you passing the correct arguments to `cls()`?"
@pytest.mark.test_content_init_module3
def test_content_init_module3(parse):
# def __init__(self, metadata, content):
# self.data = metadata
# self.data["content"] = content
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
init_def = content.get_by_name("def", "__init__", content_class.code)
assert init_def.exists, "Does the class `Site` have an `__init__` method?"
self_arg = content.get_by_value("def_argument", "self", init_def.code)
assert self_arg.exists, "Does the `__init__` method have a `self` argument?"
metadata_arg = content.get_by_value("def_argument", "metadata", init_def.code)
assert metadata_arg.exists, "Does the `__init__` method have a `metadata` argument?"
content_arg = content.get_by_value("def_argument", "content", init_def.code)
assert content_arg.exists, "Does the `__init__` method have a `content` argument?"
self_data = content.get_by_value("assignment", "self.data", init_def.code)
self_data_exists = self_data.exists and self_data.code.value.value == "metadata"
assert self_data_exists, "Are you assigning `self.data` correctly?"
self_content = init_def.code.find(
"assignment",
lambda node: node.find(
"atomtrailers",
lambda node: len(node) == 3
and node[0].name.value == "self"
and node[1].name.value == "data"
and node[2].string.value.replace("'", '"') == '"content"',
),
)
self_content_exists = (
self_content is not None and self_content.value.value == "content"
)
assert self_content_exists, 'Are you assigning `self.data["content"]` correctly?'
@pytest.mark.test_content_body_property_module3
def test_content_body_property_module3(parse):
# @property
# def body(self):
# return self.data["content"]
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
body = content.get_by_name("def", "body", content_class.code)
assert (
body.exists
), "Have you created a class method called `body` in the `Content` class?"
self_arg = content.get_by_value("def_argument", "self", body.code)
assert self_arg.exists, "Does the `body` method have a `self` argument?"
decorator_exists = body.code.decorators.dotted_name.name.value == "property"
assert decorator_exists, "Does the `body` method have a decorator of `@property`?"
body_return = (
body.code.return_.find(
"atomtrailers",
lambda node: len(node) == 3
and node[0].name.value == "self"
and node[1].name.value == "data"
and node[2].string.value.replace("'", '"') == '"content"',
)
is not None
)
assert body_return, 'Are you returning `self.data["content"]` from `body`?'
@pytest.mark.test_content_type_property_module3
def test_content_type_property_module3(parse):
# @property
# def type(self):
# return self.data["type"] if "type" in self.data else None
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
type = content.get_by_name("def", "type", content_class.code)
assert (
type.exists
), "Have you created a class method called `type` in the `Content` class?"
self_arg = content.get_by_value("def_argument", "self", type.code)
assert self_arg.exists, "Does the `type` method have a `self` argument?"
decorator_exists = type.code.decorators.dotted_name.name.value == "property"
assert decorator_exists, "Does the `type` method have a decorator of `@property`?"
type_return = type.code.return_
ternary = type_return.ternary_operator
ternary_first = ternary.first.find(
"atomtrailers",
lambda node: len(node) == 3
and node[0].name.value == "self"
and node[1].name.value == "data"
and node[2].string.value.replace("'", '"') == '"type"',
)
ternary_comparison = (
ternary.comparison.first.string.value.replace("'", '"') == '"type"'
and ternary.comparison.comparison_operator.first == "in"
and str(ternary.comparison.second) == "self.data"
)
full_return = (
type_return is not None
and ternary is not None
and ternary_first is not None
and ternary_comparison
and ternary.second.name.value == "None"
)
assert full_return, 'Are you returning `self.data["type"]` from `type`?'
@pytest.mark.test_content_type_setter_module3
def test_content_type_setter_module3(parse):
# @type.setter
# def type(self, type):
# self.data["type"] = type
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
type_setter = content_class.code.find(
"def",
lambda node: node.name == "type"
and len(node.arguments) == 2
and str(node.decorators[0]) == "@type.setter",
)
type_setter_exists = type_setter is not None
assert (
type_setter_exists
), "Do you have a `type` method with a `@type.setter` decorator?"
self_arg = content.get_by_value("def_argument", "self", type_setter)
assert self_arg.exists, "Does the `type` method have a `self` argument?"
type_arg = content.get_by_value("def_argument", "type", type_setter)
assert type_arg.exists, "Does the `type` method have a `type` argument?"
self_content = type_setter.find(
"assignment",
lambda node: node.find(
"atomtrailers",
lambda node: len(node) == 3
and node[0].name.value == "self"
and node[1].name.value == "data"
and node[2].string.value.replace("'", '"') == '"type"',
),
)
self_content_exists = self_content is not None
assert (
self_content_exists and self_content.value.value == "type"
), 'Are you assigning `self.data["type"]` correctly?'
@pytest.mark.test_content_getitem_module3
def test_content_getitem_module3(parse):
# def __getitem__(self, key):
# return self.data[key]
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
getitem = content.get_by_name("def", "__getitem__", content_class.code)
assert (
getitem.exists
), "Have you created a class method called `__getitem__` in the `Content` class?"
self_arg = content.get_by_value("def_argument", "self", getitem.code)
assert self_arg.exists, "Does the `__getitem__` method have a `self` argument?"
key_arg = content.get_by_value("def_argument", "key", getitem.code)
assert key_arg.exists, "Does the `__getitem__` method have a `key` argument?"
getitem_return = (
getitem.code.return_.find(
"atomtrailers",
lambda node: len(node) == 3
and node[0].name.value == "self"
and node[1].name.value == "data"
and node[2].name.value == "key",
)
is not None
)
assert getitem_return, "Are you returning `self.data[key]` from `__getitem__`?"
@pytest.mark.test_content_iter_module3
def test_content_iter_module3(parse):
# def __iter__(self):
# self.data.__iter__()
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
iter_def = content.get_by_name("def", "__iter__", content_class.code)
assert (
iter_def.exists
), "Have you created a class method called `__iter__` in the `Content` class?"
self_arg = content.get_by_value("def_argument", "self", iter_def.code)
assert self_arg.exists, "Does the `__iter__` method have a `self` argument?"
iter_call = (
iter_def.code.find(
"atomtrailers",
lambda node: node[0].name.value == "self"
and node[1].name.value == "data"
and node[2].name.value == "__iter__"
and node[3].type == "call",
)
is not None
)
assert iter_call, "Are you calling `__iter__()` on `self.data`?"
@pytest.mark.test_content_len_module3
def test_content_len_module3(parse):
# def __len__(self):
# return len(self.data)
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
len_def = content.get_by_name("def", "__len__", content_class.code)
assert (
len_def.exists
), "Have you created a class method called `__len__` in the `Content` class?"
self_arg = content.get_by_value("def_argument", "self", len_def.code)
assert self_arg.exists, "Does the `__len__` method have a `self` argument?"
len_call = content.get_call("len", len_def.code.return_)
len_correct = len_call.exists and str(len_call.code.atomtrailers) == "self.data"
assert (
len_correct
), "Are you returning a call to `len()` and passing the correct argument?"
@pytest.mark.test_content_repr_module3
def test_content_repr_module3(parse):
# def __repr__(self):
# data = {}
# return str(data)
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
repr_def = content.get_by_name("def", "__repr__", content_class.code)
assert (
repr_def.exists
), "Have you created a class method called `__repr__` in the `Content` class?"
self_arg = content.get_by_value("def_argument", "self", repr_def.code)
assert self_arg.exists, "Does the `__repr__` method have a `self` argument?"
str_call = content.get_call("str", repr_def.code.return_)
str_correct = str_call.exists and str_call.code.call_argument.name.value == "data"
assert (
str_correct
), "Are you returning a call to `str()` and passing the correct argument?"
@pytest.mark.test_content_repr_for_loop_module3
def test_content_repr_for_loop_module3(parse):
# for key, value in self.data.items():
# if key != "content":
# data[key] = value
content = parse("content")
assert content.success, content.message
content_class = content.get_by_name("class", "Content")
assert (
content_class.exists
), "Have you created a class called `Content` in the `content.py` file?"
repr_def = content.get_by_name("def", "__repr__", content_class.code)
assert (
repr_def.exists
), "Have you created a class method called `__repr__` in the `Content` class?"
for_loop = repr_def.code.for_
for_tuple = for_loop.iterator
for_loop_exists = (
for_loop is not None
and for_tuple is not None
and len(for_tuple) == 2
and for_tuple[0].name.value == "key"
and for_tuple[1].name.value == "value"
)
assert (
for_loop_exists
), "Does the `__repr__` method have a `for` loop with the current item split into `key, value`?"
for_target = for_loop.target
items_call = for_target.find(
"atomtrailers",
lambda node: node[0].value == "self"
and node[1].value == "data"
and node[2].value == "items"
and node[3].type == "call",
)
assert items_call, "Is the `for` loop, looping through `self.data.items()`?"
if_test = (
for_loop.if_.test.first.name.value == "key"
and for_loop.if_.test.value.first == "!="
and for_loop.if_.test.second.string.value.replace("'", '"') == '"content"'
)
assert (
if_test
), 'Do you have an `if` statement in the `for` loop that tests if `key` is not equal to `"content"`?'
data_key = (
for_loop.if_.find(
"assignment",
lambda node: node.find(
"atomtrailers",
lambda node: node[0].name.value == "data"
and node[1].name.value == "key",
)
and node.value.value == "value",
)
is not None
)
assert data_key, "Are you assigning `data[key]` `value`?"