forked from googleapis/python-firestore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsynth.py
More file actions
218 lines (187 loc) · 4.87 KB
/
synth.py
File metadata and controls
218 lines (187 loc) · 4.87 KB
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
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This script is used to synthesize generated parts of this library."""
import synthtool as s
from synthtool import gcp
AUTOSYNTH_MULTIPLE_PRS = True
AUTOSYNTH_MULTIPLE_COMMITS = True
gapic = gcp.GAPICBazel()
common = gcp.CommonTemplates()
versions = ["v1"]
admin_versions = ["v1"]
# ----------------------------------------------------------------------------
# Generate firestore GAPIC layer
# ----------------------------------------------------------------------------
for version in versions:
library = gapic.py_library(
service="firestore",
version=version,
bazel_target=f"//google/firestore/{version}:firestore-{version}-py",
)
s.move(
library / f"google/cloud/firestore_{version}",
f"google/cloud/firestore_{version}",
excludes=[library / f"google/cloud/firestore_{version}/__init__.py"],
)
s.move(
library / f"tests/",
f"tests",
)
s.move(library / "scripts")
# ----------------------------------------------------------------------------
# Generate firestore admin GAPIC layer
# ----------------------------------------------------------------------------
for version in admin_versions:
library = gapic.py_library(
service="firestore_admin",
version=version,
bazel_target=f"//google/firestore/admin/{version}:firestore-admin-{version}-py",
)
s.move(
library / f"google/cloud/firestore_admin_{version}",
f"google/cloud/firestore_admin_{version}",
excludes=[library / f"google/cloud/admin_{version}/__init__.py"],
)
s.move(library / f"tests", f"tests")
s.move(library / "scripts")
# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(
samples=False, # set to True only if there are samples
unit_test_python_versions=["3.6", "3.7", "3.8"],
system_test_python_versions=["3.7"],
microgenerator=True,
cov_level=100,
)
s.move(
templated_files,
)
s.replace(
"noxfile.py",
"GOOGLE_APPLICATION_CREDENTIALS",
"FIRESTORE_APPLICATION_CREDENTIALS",
)
s.replace(
"noxfile.py",
'"--quiet", system_test',
'"--verbose", system_test',
)
# Add pytype support
s.replace(
".gitignore",
"""\
.pytest_cache
""",
"""\
.pytest_cache
.pytype
""",
)
s.replace(
"setup.cfg",
"""\
universal = 1
""",
"""\
universal = 1
[pytype]
python_version = 3.8
inputs =
google/cloud/
exclude =
tests/
output = .pytype/
# Workaround for https://github.com/google/pytype/issues/150
disable = pyi-error
""",
)
s.replace(
"noxfile.py",
"""\
BLACK_VERSION = "black==19.10b0"
""",
"""\
PYTYPE_VERSION = "pytype==2020.7.24"
BLACK_VERSION = "black==19.10b0"
""",
)
s.replace(
"noxfile.py",
"""\
@nox.session\(python=DEFAULT_PYTHON_VERSION\)
def lint_setup_py\(session\):
""",
'''\
@nox.session(python="3.7")
def pytype(session):
"""Run pytype
"""
session.install(PYTYPE_VERSION)
session.run("pytype",)
@nox.session(python=DEFAULT_PYTHON_VERSION)
def lint_setup_py(session):
''',
)
# Fix up unit test dependencies
s.replace(
"noxfile.py",
"""\
session.install\("asyncmock", "pytest-asyncio"\)
""",
"""\
session.install("pytest-asyncio", "aiounittest")
""",
)
# Fix up system test dependencies
s.replace(
"noxfile.py",
""""mock", "pytest", "google-cloud-testutils",""",
""""mock", "pytest", "pytest-asyncio", "google-cloud-testutils",""",
)
# Add message for missing 'libcst' dependency
s.replace(
"scripts/fixup*.py",
"""\
import libcst as cst
""",
"""\
try:
import libcst as cst
except ImportError:
raise ImportError('Run `python -m pip install "libcst >= 0.2.5"` to install libcst.')
""",
)
s.replace(
".coveragerc",
"""\
raise NotImplementedError
omit =
""",
"""\
raise NotImplementedError
# Ignore setuptools-less fallback
except pkg_resources.DistributionNotFound:
omit =
""",
)
s.shell.run(["nox", "-s", "blacken"], hide_output=False)
s.replace(
".kokoro/build.sh",
"# Setup service account credentials.",
"""\
# Setup firestore account credentials
export FIRESTORE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/firebase-credentials.json
# Setup service account credentials.""",
)