-
Notifications
You must be signed in to change notification settings - Fork 75
/
owlbot.py
337 lines (282 loc) · 9.9 KB
/
owlbot.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
# 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."""
from pathlib import Path
from typing import List, Optional
import synthtool as s
from synthtool import gcp
from synthtool.languages import python
common = gcp.CommonTemplates()
# This library ships clients for 3 different APIs,
# firestore, firestore_admin and firestore_bundle.
# firestore_bundle is not versioned
firestore_default_version = "v1"
firestore_admin_default_version = "v1"
# This is a customized version of the s.get_staging_dirs() function from synthtool to
# cater for copying 3 different folders from googleapis-gen
# which are firestore, firestore/admin and firestore/bundle.
# Source https://github.com/googleapis/synthtool/blob/master/synthtool/transforms.py#L280
def get_staging_dirs(
default_version: Optional[str] = None, sub_directory: Optional[str] = None
) -> List[Path]:
"""Returns the list of directories, one per version, copied from
https://github.com/googleapis/googleapis-gen. Will return in lexical sorting
order with the exception of the default_version which will be last (if specified).
Args:
default_version (str): the default version of the API. The directory for this version
will be the last item in the returned list if specified.
sub_directory (str): if a `sub_directory` is provided, only the directories within the
specified `sub_directory` will be returned.
Returns: the empty list if no file were copied.
"""
staging = Path("owl-bot-staging")
if sub_directory:
staging /= sub_directory
if staging.is_dir():
# Collect the subdirectories of the staging directory.
versions = [v.name for v in staging.iterdir() if v.is_dir()]
# Reorder the versions so the default version always comes last.
versions = [v for v in versions if v != default_version]
versions.sort()
if default_version is not None:
versions += [default_version]
dirs = [staging / v for v in versions]
for dir in dirs:
s._tracked_paths.add(dir)
return dirs
else:
return []
def update_fixup_scripts(library):
# Add message for missing 'libcst' dependency
s.replace(
library / "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.')
""",
)
for library in get_staging_dirs(default_version=firestore_default_version, sub_directory="firestore"):
s.move(library / f"google/cloud/firestore_{library.name}", excludes=[f"__init__.py", "**/gapic_version.py"])
s.move(library / f"tests/", f"tests")
update_fixup_scripts(library)
s.move(library / "scripts")
for library in get_staging_dirs(default_version=firestore_admin_default_version, sub_directory="firestore_admin"):
s.move(library / f"google/cloud/firestore_admin_{library.name}", excludes=[f"__init__.py", "**/gapic_version.py"])
s.move(library / f"tests", f"tests")
update_fixup_scripts(library)
s.move(library / "scripts")
for library in get_staging_dirs(sub_directory="firestore_bundle"):
s.replace(
library / "google/cloud/bundle/types/bundle.py",
"from google.firestore.v1 import document_pb2 # type: ignore\n"
"from google.firestore.v1 import query_pb2 # type: ignore",
"from google.cloud.firestore_v1.types import document as document_pb2 # type: ignore\n"
"from google.cloud.firestore_v1.types import query as query_pb2 # type: ignore"
)
s.replace(
library / "google/cloud/bundle/__init__.py",
"from .types.bundle import BundleMetadata\n"
"from .types.bundle import NamedQuery\n",
"from .types.bundle import BundleMetadata\n"
"from .types.bundle import NamedQuery\n"
"\n"
"from .bundle import FirestoreBundle\n",
)
s.replace(
library / "google/cloud/bundle/__init__.py",
"from google.cloud.bundle import gapic_version as package_version\n",
"from google.cloud.firestore_bundle import gapic_version as package_version\n",
)
s.replace(
library / "google/cloud/bundle/__init__.py",
"\'BundledQuery\',",
"\"BundledQuery\",\n\"FirestoreBundle\",",)
s.move(
library / f"google/cloud/bundle",
f"google/cloud/firestore_bundle",
excludes=["**/gapic_version.py"],
)
s.move(library / f"tests", f"tests")
s.remove_staging_dirs()
# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(
samples=False, # set to True only if there are samples
system_test_python_versions=["3.7"],
unit_test_external_dependencies=["aiounittest", "six", "freezegun"],
system_test_external_dependencies=["pytest-asyncio", "six"],
microgenerator=True,
cov_level=100,
split_system_tests=True,
)
s.move(templated_files,
excludes=[".github/release-please.yml"])
python.py_samples(skip_readmes=True)
# ----------------------------------------------------------------------------
# Customize noxfile.py
# ----------------------------------------------------------------------------
def place_before(path, text, *before_text, escape=None):
replacement = "\n".join(before_text) + "\n" + text
if escape:
for c in escape:
text = text.replace(c, '\\' + c)
s.replace([path], text, replacement)
system_emulated_session = """
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)
def system_emulated(session):
import subprocess
import signal
try:
# https://github.com/googleapis/python-firestore/issues/472
# Kokoro image doesn't have java installed, don't attempt to run emulator.
subprocess.call(["java", "--version"])
except OSError:
session.skip("java not found but required for emulator support")
try:
subprocess.call(["gcloud", "--version"])
except OSError:
session.skip("gcloud not found but required for emulator support")
# Currently, CI/CD doesn't have beta component of gcloud.
subprocess.call(
["gcloud", "components", "install", "beta", "cloud-firestore-emulator",]
)
hostport = "localhost:8789"
session.env["FIRESTORE_EMULATOR_HOST"] = hostport
p = subprocess.Popen(
[
"gcloud",
"--quiet",
"beta",
"emulators",
"firestore",
"start",
"--host-port",
hostport,
]
)
try:
system(session)
finally:
# Stop Emulator
os.killpg(os.getpgid(p.pid), signal.SIGKILL)
"""
place_before(
"noxfile.py",
"@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)\n"
"def system(session):",
system_emulated_session,
escape="()"
)
# add system_emulated + mypy nox session
s.replace("noxfile.py",
"""nox.options.sessions = \[
"unit",
"system",""",
"""nox.options.sessions = [
"unit",
"system_emulated",
"system",
"mypy",""",
)
s.replace(
"noxfile.py",
"""\"--quiet\",
f\"--junitxml=system_\{session.python\}_sponge_log.xml\",
system_test""",
"""\"--verbose\",
f\"--junitxml=system_{session.python}_sponge_log.xml\",
system_test""",
)
# Add pytype support
s.replace(
".gitignore",
"""\
.pytest_cache
""",
"""\
.pytest_cache
.pytype
""",
)
s.replace(
".gitignore",
"""\
pylintrc
pylintrc.test
""",
"""\
pylintrc
pylintrc.test
.make/**
""",
)
s.replace(
"noxfile.py",
"""\
BLACK_VERSION = "black\[jupyter\]==23.7.0"
""",
"""\
PYTYPE_VERSION = "pytype==2020.7.24"
BLACK_VERSION = "black[jupyter]==23.7.0"
""",
)
s.replace(
"noxfile.py",
"""\
@nox.session\(python=DEFAULT_PYTHON_VERSION\)
def lint_setup_py\(session\):
""",
'''\
@nox.session(python="3.7")
def pytype(session):
"""Verify type hints are pytype compatible."""
session.install(PYTYPE_VERSION)
session.run("pytype",)
@nox.session(python=DEFAULT_PYTHON_VERSION)
def mypy(session):
"""Verify type hints are mypy compatible."""
session.install("-e", ".")
session.install("mypy", "types-setuptools")
# TODO: also verify types on tests, all of google package
session.run("mypy", "-p", "google.cloud.firestore", "--no-incremental")
@nox.session(python=DEFAULT_PYTHON_VERSION)
def lint_setup_py(session):
''',
)
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.""",
)
# Add a section on updating conformance tests to contributing.
s.replace(
"CONTRIBUTING.rst",
"\nTest Coverage",
"""*************
Updating Conformance Tests
**************************
The firestore client libraries use a shared set of conformance tests, the source of which can be found at https://github.com/googleapis/conformance-tests.
To update the copy of these conformance tests used by this repository, run the provided Makefile:
$ make -f Makefile_v1
*************
Test Coverage"""
)
s.replace("noxfile.py", "\"pytest-asyncio\"", "\"pytest-asyncio==0.21.2\"")