-
Notifications
You must be signed in to change notification settings - Fork 44
/
owlbot.py
293 lines (249 loc) · 8.24 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
# 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 is a customized version of the s.get_staging_dirs() function from synthtool to
# cater for copying 2 different folders from googleapis-gen
# which are datastore and datastore/admin
# 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 []
# This library ships clients for two different APIs,
# Datastore and Datastore Admin
datastore_default_version = "v1"
datastore_admin_default_version = "v1"
for library in get_staging_dirs(datastore_default_version, "datastore"):
s.move(library / f"google/cloud/datastore_{library.name}", excludes=["**/gapic_version.py"])
s.move(library / "tests/")
s.move(library / "scripts")
for library in get_staging_dirs(datastore_admin_default_version, "datastore_admin"):
s.replace(
library / "google/**/datastore_admin_client.py",
"google-cloud-datastore-admin",
"google-cloud-datstore",
)
# Remove spurious markup
s.replace(
library / "google/**/datastore_admin/client.py",
r"\s+---------------------------------(-)+",
"",
)
s.move(library / f"google/cloud/datastore_admin", excludes=["**/gapic_version.py"])
s.move(library / f"google/cloud/datastore_admin_{library.name}", excludes=["**/gapic_version.py"])
s.move(library / "tests")
s.move(library / "scripts")
s.remove_staging_dirs()
# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(
microgenerator=True,
split_system_tests=True,
# six required by (but not installed by) google-cloud-core < v2.0.0
unit_test_external_dependencies=["six"],
system_test_external_dependencies=["six"],
cov_level=100,
)
s.move(
templated_files,
excludes=["docs/multiprocessing.rst", ".coveragerc", ".github/CODEOOWNERS", ".github/release-please.yml"],
)
python.py_samples(skip_readmes=True)
python.configure_previous_major_version_branches()
# Preserve system tests w/ GOOGLE_DISABLE_GRPC set (#133, PR #136)
assert 1 == s.replace(
"noxfile.py",
r"""\
@nox.session\(python=SYSTEM_TEST_PYTHON_VERSIONS\)
def system\(session\):
""",
"""\
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)
@nox.parametrize("disable_grpc", [False, True])
def system(session, disable_grpc):
""",
)
assert 1 == s.replace(
"noxfile.py",
"""\
# Run py.test against the system tests.
""",
"""\
env = {}
if disable_grpc:
env["GOOGLE_CLOUD_DISABLE_GRPC"] = "True"
# Run py.test against the system tests.
""",
)
assert 1 == s.replace(
"noxfile.py",
"""system_test_path,
\*session.posargs,
\)""",
"""system_test_path,
env=env,
*session.posargs,
)""",
)
assert 1 == s.replace(
"noxfile.py",
"""system_test_folder_path,
\*session.posargs,
\)""",
"""system_test_folder_path,
env=env,
*session.posargs,
)""",
)
# Add nox session to exercise doctests
assert 1 == s.replace(
"noxfile.py",
r"""\
"blacken",
"docs",
""",
"""\
"blacken",
"docs",
"doctests",
""",
)
assert 1 == s.replace(
"noxfile.py",
r"""\
@nox.session\(python="3.10"\)
def docfx\(session\):
""",
"""\
@nox.session(python="3.9")
def doctests(session):
# Install all test dependencies, then install this package into the
# virtualenv's dist-packages.
session.install("mock", "pytest", "sphinx", "google-cloud-testutils")
session.install("-e", ".")
# Run py.test against the system tests.
session.run("py.test", "tests/doctests.py")
@nox.session(python="3.10")
def docfx(session):
""",
)
# Work around: https://github.com/googleapis/gapic-generator-python/issues/689
s.replace(
[
"google/**/datastore_admin/async_client.py",
"google/**/datastore_admin/client.py",
"google/**/types/datastore_admin.py",
],
r"Sequence\[.*\.LabelsEntry\]",
r"Dict[str, str]",
)
# Add documentation about creating indexes and populating data for system
# tests.
assert 1 == s.replace(
"CONTRIBUTING.rst",
r"""
\*\*\*\*\*\*\*\*\*\*\*\*\*
Test Coverage
\*\*\*\*\*\*\*\*\*\*\*\*\*
""",
"""
- You'll need to create composite
`indexes <https://cloud.google.com/datastore/docs/tools/indexconfig>`__
with the ``gcloud`` command line
`tool <https://developers.google.com/cloud/sdk/gcloud/>`__::
# Install the app (App Engine Command Line Interface) component.
$ gcloud components install app-engine-python
# Authenticate the gcloud tool with your account.
$ GOOGLE_APPLICATION_CREDENTIALS="path/to/app_credentials.json"
$ gcloud auth activate-service-account \
> --key-file=${GOOGLE_APPLICATION_CREDENTIALS}
# Create the indexes
$ gcloud datastore indexes create tests/system/index.yaml
- You'll also need stored data in your dataset. To populate this data, run::
$ python tests/system/utils/populate_datastore.py
- If you make a mistake during development (i.e. a failing test that
prevents clean-up) you can clear all system test data from your
datastore instance via::
$ python tests/system/utils/clear_datastore.py
*************
Test Coverage
*************
""",
)
# add type checker nox session
s.replace(
"noxfile.py",
"""nox.options.sessions = \[
"unit",
"system",""",
"""nox.options.sessions = [
"unit",
"system",
"mypy",""",
)
s.replace(
"noxfile.py",
"""\
@nox.session\(python=DEFAULT_PYTHON_VERSION\)
def lint_setup_py\(session\):
""",
'''\
@nox.session(python=DEFAULT_PYTHON_VERSION)
def mypy(session):
"""Verify type hints are mypy compatible."""
session.install("-e", ".")
# Exclude types-protobuf==4.24.0.20240106
# See https://github.com/python/typeshed/issues/11254
session.install(
"mypy", "types-setuptools", "types-mock", "types-protobuf!=4.24.0.20240106", "types-requests"
)
session.run("mypy", "-p", "google.cloud.datastore")
@nox.session(python=DEFAULT_PYTHON_VERSION)
def lint_setup_py(session):
''',
)
s.shell.run(["nox", "-s", "blacken"], hide_output=False)