forked from Tecnativa/doodba-copier-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.py
144 lines (126 loc) · 4.95 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
"""Template maintenance tasks.
These tasks are to be executed with https://www.pyinvoke.org/ in Python 3.6+
and are related to the maintenance of this template project, not the child
projects generated with it.
"""
import re
import shutil
from pathlib import Path
from unittest import mock
from invoke import task
from invoke.util import yaml
from invoke.vendor.yaml3.reader import Reader
TEMPLATE_ROOT = Path(__file__).parent.resolve()
ESSENTIALS = ("git", "python3", "poetry")
def _load_copier_conf():
"""Load copier.yml."""
with open("copier.yml") as copier_fd:
# HACK https://stackoverflow.com/a/44875714/1468388
# TODO Remove hack when https://github.com/pyinvoke/invoke/issues/708 is fixed
with mock.patch.object(
Reader,
"NON_PRINTABLE",
re.compile(
"[^\x09\x0A\x0D\x20-\x7E\x85\xA0-"
"\uD7FF\uE000-\uFFFD\U00010000-\U0010FFFF]"
),
):
return yaml.safe_load(copier_fd)
@task
def check_dependencies(c):
"""Check essential development dependencies are present."""
failures = []
for dependency in ESSENTIALS:
try:
c.run(f"{dependency} --version", hide=True)
except Exception:
failures.append(dependency)
if failures:
print(f"Missing essential dependencies: {failures}")
@task(check_dependencies)
def develop(c):
"""Set up a development environment."""
with c.cd(str(TEMPLATE_ROOT)):
if not Path(".venv").is_dir():
c.run("python3 -m venv .venv")
c.run("git submodule update --init --checkout --recursive")
# Use poetry to set up development environment in a local venv
c.run("poetry env use .venv/bin/python")
c.run("poetry install")
c.run("poetry run pre-commit install")
@task(develop)
def lint(c, verbose=False):
"""Lint & format source code."""
flags = ["--show-diff-on-failure", "--all-files", "--color=always"]
if verbose:
flags.append("--verbose")
flags = " ".join(flags)
with c.cd(str(TEMPLATE_ROOT)):
c.run(f"poetry run pre-commit run {flags}")
@task(develop)
def test(c, verbose=False):
"""Test project."""
flags = ["-n", "auto", "--color=yes"]
if verbose:
flags.append("-vv")
flags = " ".join(flags)
with c.cd(str(TEMPLATE_ROOT)):
c.run(f"poetry run pytest {flags} tests")
@task(develop)
def update_test_samples(c):
"""Update test samples renderings.
Since this project is just a template, some render results are stored as
tests to be able to check the templates produce the right results.
However, when something changes, the samples must be properly updated and
reviewed to make sure they are still OK.
This job updates all those samples.
"""
with c.cd(str(TEMPLATE_ROOT)):
# Make sure git repo is clean
try:
c.run("git diff --quiet --exit-code")
except Exception:
print("git repo is dirty; clean it and repeat")
raise
copier_conf = _load_copier_conf()
all_odoo_versions = copier_conf["odoo_version"]["choices"]
default_odoo_version = copier_conf["odoo_version"]["default"]
default_settings_path = Path("tests", "default_settings")
shutil.rmtree(default_settings_path)
default_settings_path.mkdir()
try:
c.run("git tag --force test")
for odoo_version in all_odoo_versions:
v = f"{odoo_version:.1f}"
dst = default_settings_path / f"v{v}"
c.run(f"poetry run copier -fr test -d odoo_version={v} copy . {dst}")
shutil.rmtree(dst / ".git")
shutil.rmtree(dst / "odoo" / "auto")
finally:
c.run("git tag --delete test")
samples = Path("tests", "samples")
c.run(
"poetry run copier -fr HEAD -x '**' -x '!prod.yaml' -x '!test.yaml' "
"-d cidr_whitelist='[123.123.123.123/24, 456.456.456.456]' "
f"copy . {samples / 'cidr-whitelist'}",
warn=True,
)
for file_name in (".pylintrc", ".pylintrc-mandatory"):
with (samples / "mqt-diffs" / f"{file_name}.diff").open("w") as fd:
own = default_settings_path / f"v{default_odoo_version}" / file_name
mqt = Path(
"vendor",
"maintainer-quality-tools",
"sample_files",
f"pre-commit-{default_odoo_version}",
file_name,
)
fd.write(c.run(f"diff {own} {mqt}", warn=True).stdout)
c.run(
"poetry run copier -fr HEAD -x '**' -x '!prod.yaml' "
"-d domain_prod=www.example.com "
"-d domain_prod_alternatives='[old.example.com, example.com, example.org, www.example.org]' "
f"copy . {samples / 'alt-domains'}",
warn=True,
)
c.run("poetry run pre-commit run -a", warn=True)