forked from nautobot/pynautobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.py
334 lines (253 loc) · 9.71 KB
/
tasks.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
"""Tasks for use with Invoke."""
import os
import sys
from distutils.util import strtobool
from invoke import task
try:
import toml
except ImportError:
sys.exit("Please make sure to `pip install toml` or enable the Poetry shell and run `poetry install`.")
PYPROJECT_CONFIG = toml.load("pyproject.toml")
TOOL_CONFIG = PYPROJECT_CONFIG["tool"]["poetry"]
NAUTOBOT_VER = os.getenv("INVOKE_PYNAUTOBOT_NAUTOBOT_VER", os.getenv("NAUTOBOT_VER", "stable"))
# Can be set to a separate Python version to be used for launching or building image
PYTHON_VER = os.getenv("INVOKE_PYNAUTOBOT_PYTHON_VER", os.getenv("PYTHON_VER", "3.8"))
def _get_image_name_and_tag():
"""Return image name and tag. Necessary to avoid double build in upstream testing"""
workflow_name = os.getenv("GITHUB_WORKFLOW", "")
if "upstream" in workflow_name.lower():
return "pynautobot/nautobot", f"{NAUTOBOT_VER}-py{PYTHON_VER}"
image_name = os.getenv("IMAGE_NAME", TOOL_CONFIG["name"])
image_tag = os.getenv("IMAGE_VER", f"{TOOL_CONFIG['version']}-py{PYTHON_VER}")
return image_name, image_tag
IMAGE_NAME, IMAGE_VER = _get_image_name_and_tag()
# Gather current working directory for Docker commands
PWD = os.getcwd()
# Local or Docker execution provide "local" to run locally without docker execution
INVOKE_LOCAL = strtobool(os.getenv("INVOKE_LOCAL", "False"))
_DEFAULT_SERVICE = "pynautobot-dev"
_DOCKER_COMPOSE_ENV = {
"COMPOSE_FILE": "development/docker-compose.yml",
"COMPOSE_HTTP_TIMEOUT": "86400",
"COMPOSE_PROJECT_NAME": "pynautobot",
"IMAGE_NAME": IMAGE_NAME,
"IMAGE_VER": IMAGE_VER,
"NAUTOBOT_VER": NAUTOBOT_VER,
"PYTHON_VER": PYTHON_VER,
}
@task
def start(context):
print("Starting Nautobot in detached mode...")
return context.run("docker compose up -d", env=_DOCKER_COMPOSE_ENV, pty=True)
@task
def stop(context):
print("Stopping Nautobot...")
return context.run("docker compose stop", env=_DOCKER_COMPOSE_ENV, pty=True)
@task
def destroy(context):
down(context, remove=True)
@task
def down(context, remove=False):
print("Stopping Nautobot and removing resources...")
command = [
"docker compose",
"down",
"--remove-orphans",
"--rmi local" if remove else "",
"--volumes" if remove else "",
]
return context.run(" ".join(command), env=_DOCKER_COMPOSE_ENV, pty=True)
@task(
help={
"service": "docker compose service name to view (default: nautobot)",
"follow": "Follow logs",
"tail": "Tail N number of lines or 'all'",
}
)
def logs(context, service="", follow=False, tail=None):
"""View the logs of a docker-compose service."""
command = [
"docker compose logs",
"--follow" if follow else "",
f"--tail={tail}" if tail else "",
service if service else "",
]
context.run(" ".join(command), env=_DOCKER_COMPOSE_ENV, pty=True)
@task
def debug(context, service=_DEFAULT_SERVICE):
print("Starting Nautobot in debug mode...")
return context.run(f"docker compose up -- {service}", env=_DOCKER_COMPOSE_ENV, pty=True)
def run_cmd(context, exec_cmd, local=INVOKE_LOCAL, service=_DEFAULT_SERVICE, port=None):
"""Wrapper to run the invoke task commands.
Args:
context ([invoke.task]): Invoke task object.
exec_cmd ([str]): Command to run.
local (bool): Define as `True` to execute locally
service (str): Service to run command in if not local
Returns:
result (obj): Contains Invoke result from running task.
"""
if local:
print(f"LOCAL - Running command {exec_cmd}")
result = context.run(exec_cmd, pty=True)
else:
print(f"DOCKER - Running command: {exec_cmd} service: {service}")
if port:
result = context.run(
f"docker compose run --rm --publish {port} -- {service} {exec_cmd}", env=_DOCKER_COMPOSE_ENV, pty=True
)
else:
result = context.run(f"docker compose run --rm -- {service} {exec_cmd}", env=_DOCKER_COMPOSE_ENV, pty=True)
return result
@task
def build(context, nocache=False, service=_DEFAULT_SERVICE):
"""Build a Docker image.
Args:
context (obj): Used to run specific commands
nocache (bool): Do not use cache when building the image
service (str): Service to build
"""
command = [
"docker compose build",
"--progress=plain",
"--no-cache" if nocache else "",
"--",
service,
]
result = context.run(" ".join(command), env=_DOCKER_COMPOSE_ENV, pty=True)
if result.exited != 0:
print(f"Failed to build {service} image\nError: {result.stderr}")
@task
def clean(context, remove=True):
"""Remove the project specific image.
Args:
context (obj): Used to run specific commands
"""
print("Attempting to remove all docker compose resources")
down(context, remove)
@task
def rebuild(context, remove=False):
"""Clean the Docker image and then rebuild without using cache.
Args:
context (obj): Used to run specific commands
remove (bool): Remove docker compose resources
"""
clean(context, remove)
build(context, nocache=True)
@task(aliases=("unittest",))
def pytest(context, local=INVOKE_LOCAL, label="", failfast=False, keepdb=False):
"""Run pytest for the specified name and Python version.
Args:
context (obj): Used to run specific commands
local (bool): Define as `True` to execute locally
label (str): Label to run tests for
failfast (bool): Stop on first failure
keepdb (bool): Keep the database between test runs, not implemented yet, argument is necessary for upstream CI tests
"""
if keepdb:
print("WARNING: `--keepdb` is not implemented yet, ignoring...")
command = [
"pytest -vv",
"--maxfail=1" if failfast else "",
label,
]
run_cmd(context, " ".join(command), local, service="pynautobot-dev-tests")
@task
def black(context, local=INVOKE_LOCAL, autoformat=False):
"""Run black to check that Python files adherence to black standards.
Args:
context (obj): Used to run specific commands
local (bool): Define as `True` to execute locally
autoformat (bool): Autoformat the code
"""
exec_cmd = "black ." if autoformat else "black --check --diff ."
run_cmd(context, exec_cmd, local)
@task
def flake8(context, local=INVOKE_LOCAL):
"""Run flake8 for the specified name and Python version.
Args:
context (obj): Used to run specific commands
local (bool): Define as `True` to execute locally
"""
# pty is set to true to properly run the docker commands due to the invocation process of docker
# https://docs.pyinvoke.org/en/latest/api/runners.html - Search for pty for more information
exec_cmd = "flake8 ."
run_cmd(context, exec_cmd, local)
@task
def pylint(context, local=INVOKE_LOCAL):
"""Run pylint for the specified name and Python version.
Args:
context (obj): Used to run specific commands
local (bool): Define as `True` to execute locally
"""
exec_cmd = 'find . -name "*.py" | xargs pylint'
run_cmd(context, exec_cmd, local)
@task
def yamllint(context, local=INVOKE_LOCAL):
"""Run yamllint to validate formatting adheres to NTC defined YAML standards.
Args:
context (obj): Used to run specific commands
local (bool): Define as `True` to execute locally
"""
exec_cmd = "yamllint ."
run_cmd(context, exec_cmd, local)
@task
def pydocstyle(context, local=INVOKE_LOCAL):
"""Run pydocstyle to validate docstring formatting adheres to NTC defined standards.
Args:
context (obj): Used to run specific commands
local (bool): Define as `True` to execute locally
"""
exec_cmd = "pydocstyle ."
run_cmd(context, exec_cmd, local)
@task
def bandit(context, local=INVOKE_LOCAL):
"""Run bandit to validate basic static code security analysis.
Args:
context (obj): Used to run specific commands
local (bool): Define as `True` to execute locally
"""
exec_cmd = "bandit --recursive ./ --configfile .bandit.yml"
run_cmd(context, exec_cmd, local)
@task
def cli(context):
"""Enter the image to perform troubleshooting or dev work.
Args:
context (obj): Used to run specific commands
"""
run_cmd(context, "bash", False)
@task
def tests(context, local=INVOKE_LOCAL):
"""Run all tests for the specified name and Python version.
Args:
context (obj): Used to run specific commands
local (bool): Define as `True` to execute locally
"""
black(context, local)
flake8(context, local)
# Too much to deal with atm.
# pylint(context, local)
yamllint(context, local)
# Skipping due to using different doc strings atm.
# pydocstyle(context, local)
bandit(context, local)
pytest(context, local)
print("All tests have passed!")
@task
def wait(context):
"""Wait for Nautobot to be ready."""
context.run(
"timeout 300 bash -c 'while [[ \"$(curl -s -o /dev/null -w ''%{http_code}'' localhost:8000)\" != \"200\" ]]; do echo \"waiting for Nautobot\"; sleep 5; done' || false"
)
@task
def export(context):
"""Export compose configuration to `compose.yaml` file."""
context.run("docker-compose convert > compose.yaml", env=_DOCKER_COMPOSE_ENV, pty=True)
@task
def docs(context, local=INVOKE_LOCAL):
"""Build and serve docs locally for development."""
exec_cmd = "mkdocs serve -v --dev-addr=0.0.0.0:8001"
run_cmd(context, exec_cmd, local, port="8001:8001")
@task
def check_migrations(context):
"""Upstream CI test runs check-migration test, but pynautobot has no migration to be tested; Hence including to pass CI test"""