forked from snychka/python-static-site-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_module1.py
executable file
·374 lines (276 loc) · 12.3 KB
/
test_module1.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
import re
import pytest
@pytest.mark.test_site_path_import_module1
def test_site_path_import_module1(parse):
# from pathlib import Path
site = parse("site")
assert site.success, site.message
path_import = "Path" in site.get_from_import("pathlib")
assert path_import, "Have you imported `Path` from `pathlib`?"
@pytest.mark.test_site_class_module1
def test_site_class_module1(parse):
# class Site:
# def __init__(self, source, dest):
# self.source = Path(source)
# self.dest = Path(dest)
site = parse("site")
assert site.success, site.message
site_class = site.get_by_name("class", "Site")
assert (
site_class.exists
), "Have you created a class called `Site` in the `site.py` file?"
init_def = site.get_by_name("def", "__init__", site_class.code)
assert init_def.exists, "Does the class `Site` have an `__init__` method?"
self_arg = site.get_by_value("def_argument", "self", init_def.code)
assert self_arg.exists, "Does the `__init__` method have a `self` argument?"
source_arg = site.get_by_value("def_argument", "source", init_def.code)
assert source_arg.exists, "Does the `__init__` method have a `source` argument?"
dest_arg = site.get_by_value("def_argument", "dest", init_def.code)
assert dest_arg.exists, "Does the `__init__` method have a `dest` argument?"
self_source = site.get_by_value("assignment", "self.source", init_def.code)
assert self_source.exists, "Are you assigning the correct value to `self.source`?"
self_dest = site.get_by_value("assignment", "self.dest", init_def.code)
assert self_dest.exists, "Are you assigning the correct value to `self.dest`?"
path_source_call = self_source.code.find_all(
"atomtrailers",
lambda node: node.find(
"name",
lambda node: node.value == "Path"
and node.next_intuitive.find("name", value="source"),
),
)[0]
path_source_call_exists = path_source_call is not None
assert (
path_source_call_exists
), "Are you assigning `self.source` a call to `Path()` passing in `source`?"
path_dest_call = self_dest.code.find_all(
"atomtrailers",
lambda node: node.find(
"name",
lambda node: node.value == "Path"
and node.next_intuitive.find("name", value="dest"),
),
)[0]
path_dest_call_exists = path_dest_call is not None
assert (
path_dest_call_exists
), "Are you assigning `self.dest` a call to `Path()` passing in `dest`?"
@pytest.mark.test_site_create_dir_function_module1
def test_site_create_dir_function_module1(parse):
# def create_dir(self, path):
# directory = self.dest / path.relative_to(self.source)
site = parse("site")
assert site.success, site.message
site_class = site.get_by_name("class", "Site")
assert (
site_class.exists
), "Have you created a class called `Site` in the `site.py` file?"
create_dir = site.get_by_name("def", "create_dir", site_class.code)
assert (
create_dir.exists
), "Have you created a method called `create_dir` in the `Site` class?"
self_arg = site.get_by_value("def_argument", "self", create_dir.code)
assert self_arg.exists, "Does the `create_dir` method have a `self` argument?"
path_arg = site.get_by_value("def_argument", "path", create_dir.code)
assert path_arg.exists, "Does the `create_dir` method have a `path` argument?"
directory = site.get_by_value("assignment", "directory", create_dir.code)
assert directory.exists, "Are you assigning the correct value to `directory`?"
directory_path = directory.code.find_all("binary_operator", value="/")
directory_path_exists = len(directory_path) == 1
assert directory_path_exists, "Are you assigning the correct path to `directory`?"
first_exist = str(directory_path[0].first) == "self.dest"
assert (
first_exist
), "Are you assigning the correct path to `directory`? The first part of the path should be `self.dest`."
second_exist = (
directory_path[0].second[0].value == "path"
and directory_path[0].second[1].value == "relative_to"
and str(directory_path.find("call_argument").value) == "self.source"
)
assert second_exist, "Are you passing `self.source` to `path.relative_to()`?"
@pytest.mark.test_site_create_dir_mkdir_module1
def test_site_create_dir_mkdir_module1(parse):
# directory.mkdir(parents=True, exist_ok=True)
site = parse("site")
assert site.success, site.message
site_class = site.get_by_name("class", "Site")
assert (
site_class.exists
), "Have you created a class called `Site` in the `site.py` file?"
create_dir = site.get_by_name("def", "create_dir", site_class.code)
assert (
create_dir.exists
), "Have you created a method called `create_dir` in the `Site` class?"
mkdir_call = create_dir.code.find(
"atomtrailers",
lambda node: node.value[0].value == "directory"
and node.value[1].value == "mkdir"
and node.value[2].type == "call",
)
mkdir_call_exist = mkdir_call is not None
assert mkdir_call_exist, "Are you calling `mkdir()` on `directory`?"
mkdir_call_args = site.get_args(mkdir_call)
parents = "parents:True" in mkdir_call_args
assert parents, "Are you passing `parents` set to `True` to `mkdir()`?"
exist_ok = "exist_ok:True" in mkdir_call_args
assert exist_ok, "Are you passing `exist_ok` set to `True` to `mkdir()`?"
@pytest.mark.test_site_build_function_module1
def test_site_build_function_module1(parse):
# def build(self):
# self.dest.mkdir(parents=True, exist_ok=True)
site = parse("site")
assert site.success, site.message
site_class = site.get_by_name("class", "Site")
assert (
site_class.exists
), "Have you created a class called `Site` in the `site.py` file?"
build = site.get_by_name("def", "build", site_class.code)
assert build.exists, "Have you created a method called `build` in the `Site` class?"
self_arg = site.get_by_value("def_argument", "self", build.code)
assert self_arg.exists, "Does the `build` method have a `self` argument?"
mkdir_call = build.code.find(
"atomtrailers",
lambda node: node[0].value == "self"
and node[1].value == "dest"
and node[2].value == "mkdir"
and node[3].type == "call",
)
mkdir_call_exist = mkdir_call is not None
assert mkdir_call_exist, "Are you calling `mkdir()` on `self.dest`?"
mkdir_call_args = site.get_args(mkdir_call)
parents = "parents:True" in mkdir_call_args
assert parents, "Are you passing `parents` set to `True` to `mkdir()`?"
exist_ok = "exist_ok:True" in mkdir_call_args
assert exist_ok, "Are you passing `exist_ok` set to `True` to `mkdir()`?"
@pytest.mark.test_site_path_rglob_module1
def test_site_path_rglob_module1(parse):
# for path in self.source.rglob("*"):
# if path.is_dir():
# self.create_dir(path)
site = parse("site")
assert site.success, site.message
site_class = site.get_by_name("class", "Site")
assert (
site_class.exists
), "Have you created a class called `Site` in the `site.py` file?"
build = site.get_by_name("def", "build", site_class.code)
assert build.exists, "Have you created a method called `build` in the `Site` class?"
for_loop = build.code.for_
for_loop_exists = for_loop is not None
assert for_loop_exists, "Have you created a for loop in the `build` method?"
for_loop_target_exists = (
str(for_loop.target).replace("'", '"') == 'self.source.rglob("*")'
)
assert (
for_loop_target_exists
), "Have you created a for loop in the `build` method? That loops through `self.source` with the `rglob` method?"
for_loop_iterator_exists = for_loop.iterator.value == "path"
assert (
for_loop_iterator_exists
), "Have you created a `for` loop in the `build` method? Are you calling the current loop item `path`?"
if_is_dir = for_loop.if_.find(
"atomtrailers",
lambda node: node[0].value == "path"
and node[1].value == "is_dir"
and node[2].type == "call",
)
if_is_dir_exist = if_is_dir is not None
assert (
if_is_dir_exist
), "Have you created an `if` statement that checks if `path` is a directory?"
if_line = len(for_loop.if_.value) == 1
assert if_line, "Do you have at least one statement in your `if` statement?"
self_create_dir_exists = (
for_loop.if_.value[0].find(
"atomtrailers",
lambda node: node.value[0].value == "self"
and node[1].value == "create_dir"
and node[2].type == "call"
and node[2].value[0].value.value == "path",
)
is not None
)
assert (
self_create_dir_exists
), "Are you calling the `create_dir()` method and passing the correct parameters?"
@pytest.mark.test_ssg_imports_module1
def test_ssg_imports_module1(parse):
# import typer
# from ssg.site import Site
ssg = parse("ssg")
assert ssg.success, ssg.message
typer_import = "typer" in ssg.get_imports()
assert typer_import, "Are you importing `typer`?"
site_import = "Site" in ssg.get_from_import("ssg.site")
assert site_import, "Are you importing `Site` from `ssg.site`?"
@pytest.mark.test_ssg_main_command_module1
def test_ssg_main_command_module1(parse):
# def main(source="content", dest="dist"):
# config = {
# "source": source,
# "dest": dest
# }
ssg = parse("ssg")
assert ssg.success, ssg.message
main = ssg.get_by_name("def", "main")
assert (
main.exists
), "Have you created a function called `main` in the `ssg.py` file?"
source_arg = ssg.get_by_value("def_argument", "source", main.code)
assert source_arg.exists, "Does the `main` function have a `source` argument?"
source_default = source_arg.code.value.value.replace("'", '"') == '"content"'
assert (
source_default
), 'Does the `source` argument have a default value of `"content"`?'
dest_arg = ssg.get_by_value("def_argument", "dest", main.code)
assert dest_arg.exists, "Does the `main` function have a `dest` argument?"
dest_default = dest_arg.code.value.value.replace("'", '"') == '"dist"'
assert dest_default, 'Does the `source` argument have a default value of `"dist"`?'
config = ssg.get_by_value("assignment", "config", main.code)
config_dict = ssg.flatten(config.code.value)
config_exists = config.exists and config.code.value.type == "dict"
assert (
config_exists
), "Are you assigning a dictionary to a variable named `config` in the `main` function?"
source_kv = "source:source" in config_dict
assert (
source_kv
), 'Does the `config` dictionary have a `"source": source` key value pair?'
dest_kv = "dest:dest" in config_dict
assert dest_kv, 'Does the `config` dictionary have a `"dest": dest` key value pair?'
@pytest.mark.test_ssg_build_call_module1
def test_ssg_build_call_module1(parse):
# Site(**config).build()
ssg = parse("ssg")
assert ssg.success, ssg.message
main = ssg.get_by_name("def", "main")
assert (
main.exists
), "Have you created a function called `main` in the `ssg.py` file?"
build_call = main.code.find(
"atomtrailers",
lambda node: node.value[0].value == "Site"
and node[1].type == "call"
and node[1].value[0].type == "dict_argument"
and node[1].value[0].value.value == "config"
and node[2].value == "build"
and node[3].type == "call",
)
build_call_exists = build_call is not None
assert (
build_call_exists
), "Are you calling the `build()` method on `Site()` in the `main` function? Are you also passing `**config` to the `Site()` instance?"
@pytest.mark.test_ssg_typer_run_module1
def test_ssg_typer_run_module1(parse):
# typer.run(main)
ssg = parse("ssg")
assert ssg.success, ssg.message
run_call = ssg.code.find(
"atomtrailers",
lambda node: node[0].value == "typer"
and node[1].value == "run"
and node[2].type == "call"
and node[2].value[0].value.value == "main",
)
run_call_exist = run_call is not None
assert run_call_exist, "Are you calling `run()` on `typer` and passing in `main`?"