Luke Sneeringer | acb6e3e | 2017-10-31 08:57:09 -0700 | [diff] [blame] | 1 | # Copyright 2016 Google LLC |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | from __future__ import absolute_import |
| 16 | import os |
Bu Sun Kim | c5fee89 | 2021-01-13 14:46:03 -0700 | [diff] [blame] | 17 | import pathlib |
Bu Sun Kim | bee4b07 | 2019-06-25 12:44:16 -0700 | [diff] [blame] | 18 | import shutil |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 19 | |
Rebecca Chen | 0fce637 | 2018-09-27 10:45:58 -0700 | [diff] [blame] | 20 | # https://github.com/google/importlab/issues/25 |
| 21 | import nox # pytype: disable=import-error |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 22 | |
Tres Seaver | fbf447c | 2021-06-16 13:45:41 -0400 | [diff] [blame] | 23 | |
| 24 | BLACK_VERSION = "black==19.10b0" |
| 25 | BLACK_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"] |
| 26 | # Black and flake8 clash on the syntax for ignoring flake8's F401 in this file. |
| 27 | BLACK_EXCLUDES = ["--exclude", "^/google/api_core/operations_v1/__init__.py"] |
| 28 | |
| 29 | DEFAULT_PYTHON_VERSION = "3.7" |
Bu Sun Kim | c5fee89 | 2021-01-13 14:46:03 -0700 | [diff] [blame] | 30 | CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute() |
Lidi Zheng | a82f289 | 2020-05-26 17:30:51 -0700 | [diff] [blame] | 31 | |
Tres Seaver | 1db493c | 2021-08-30 13:45:35 -0400 | [diff] [blame] | 32 | # 'docfx' is excluded since it only needs to run in 'docs-presubmit' |
| 33 | nox.options.sessions = [ |
| 34 | "unit", |
| 35 | "unit_grpc_gcp", |
| 36 | "cover", |
| 37 | "pytype", |
| 38 | "lint", |
| 39 | "lint_setup_py", |
| 40 | "blacken", |
| 41 | "docs", |
| 42 | ] |
Lidi Zheng | a82f289 | 2020-05-26 17:30:51 -0700 | [diff] [blame] | 43 | |
Tres Seaver | fbf447c | 2021-06-16 13:45:41 -0400 | [diff] [blame] | 44 | |
Lidi Zheng | a82f289 | 2020-05-26 17:30:51 -0700 | [diff] [blame] | 45 | def _greater_or_equal_than_36(version_string): |
Tres Seaver | fdbed0f | 2020-12-10 15:19:02 -0500 | [diff] [blame] | 46 | tokens = version_string.split(".") |
Lidi Zheng | a82f289 | 2020-05-26 17:30:51 -0700 | [diff] [blame] | 47 | for i, token in enumerate(tokens): |
| 48 | try: |
| 49 | tokens[i] = int(token) |
| 50 | except ValueError: |
| 51 | pass |
| 52 | return tokens >= [3, 6] |
| 53 | |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 54 | |
Tres Seaver | fbf447c | 2021-06-16 13:45:41 -0400 | [diff] [blame] | 55 | @nox.session(python=DEFAULT_PYTHON_VERSION) |
| 56 | def lint(session): |
| 57 | """Run linters. |
| 58 | |
| 59 | Returns a failure if the linters find linting errors or sufficiently |
| 60 | serious code quality issues. |
| 61 | """ |
| 62 | session.install("flake8", "flake8-import-order", BLACK_VERSION) |
| 63 | session.install(".") |
| 64 | session.run( |
| 65 | "black", "--check", *BLACK_EXCLUDES, *BLACK_PATHS, |
| 66 | ) |
| 67 | session.run("flake8", "google", "tests") |
| 68 | |
| 69 | |
| 70 | @nox.session(python=DEFAULT_PYTHON_VERSION) |
| 71 | def blacken(session): |
| 72 | """Run black. |
| 73 | |
| 74 | Format code to uniform standard. |
| 75 | """ |
| 76 | session.install(BLACK_VERSION) |
| 77 | session.run("black", *BLACK_EXCLUDES, *BLACK_PATHS) |
| 78 | |
| 79 | |
Danny Hermes | fd1d18f | 2017-11-01 21:47:55 -0700 | [diff] [blame] | 80 | def default(session): |
| 81 | """Default unit test session. |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 82 | |
Danny Hermes | fd1d18f | 2017-11-01 21:47:55 -0700 | [diff] [blame] | 83 | This is intended to be run **without** an interpreter set, so |
| 84 | that the current ``python`` (on the ``PATH``) or the version of |
| 85 | Python corresponding to the ``nox`` binary the ``PATH`` can |
| 86 | run the tests. |
| 87 | """ |
Bu Sun Kim | c5fee89 | 2021-01-13 14:46:03 -0700 | [diff] [blame] | 88 | constraints_path = str( |
| 89 | CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
| 90 | ) |
| 91 | |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 92 | # Install all test dependencies, then install this package in-place. |
Tres Seaver | ffa528e | 2021-08-12 17:42:46 -0400 | [diff] [blame] | 93 | session.install("mock", "pytest", "pytest-cov") |
| 94 | session.install("-e", ".[grpc]", "-c", constraints_path) |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 95 | |
Lidi Zheng | a82f289 | 2020-05-26 17:30:51 -0700 | [diff] [blame] | 96 | pytest_args = [ |
| 97 | "python", |
| 98 | "-m", |
Christopher Wilcox | 6f4070d | 2018-11-29 11:02:52 -0800 | [diff] [blame] | 99 | "py.test", |
| 100 | "--quiet", |
| 101 | "--cov=google.api_core", |
| 102 | "--cov=tests.unit", |
| 103 | "--cov-append", |
| 104 | "--cov-config=.coveragerc", |
| 105 | "--cov-report=", |
Tres Seaver | 0c2c556 | 2020-02-25 13:59:11 -0500 | [diff] [blame] | 106 | "--cov-fail-under=0", |
Christopher Wilcox | 6f4070d | 2018-11-29 11:02:52 -0800 | [diff] [blame] | 107 | os.path.join("tests", "unit"), |
Lidi Zheng | a82f289 | 2020-05-26 17:30:51 -0700 | [diff] [blame] | 108 | ] |
| 109 | pytest_args.extend(session.posargs) |
| 110 | |
Bu Sun Kim | ff6ef1b | 2021-08-03 11:47:13 -0600 | [diff] [blame] | 111 | # Inject AsyncIO content and proto-plus, if version >= 3.6. |
| 112 | # proto-plus is needed for a field mask test in test_protobuf_helpers.py |
Lidi Zheng | a82f289 | 2020-05-26 17:30:51 -0700 | [diff] [blame] | 113 | if _greater_or_equal_than_36(session.python): |
Bu Sun Kim | ff6ef1b | 2021-08-03 11:47:13 -0600 | [diff] [blame] | 114 | session.install("asyncmock", "pytest-asyncio", "proto-plus") |
Lidi Zheng | a82f289 | 2020-05-26 17:30:51 -0700 | [diff] [blame] | 115 | |
| 116 | pytest_args.append("--cov=tests.asyncio") |
| 117 | pytest_args.append(os.path.join("tests", "asyncio")) |
| 118 | session.run(*pytest_args) |
| 119 | else: |
| 120 | # Run py.test against the unit tests. |
| 121 | session.run(*pytest_args) |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 122 | |
| 123 | |
Tres Seaver | a422a5d | 2021-10-05 16:54:45 -0400 | [diff] [blame] | 124 | @nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"]) |
Bu Sun Kim | 9f45e3c | 2018-10-10 11:04:44 -0700 | [diff] [blame] | 125 | def unit(session): |
Danny Hermes | fd1d18f | 2017-11-01 21:47:55 -0700 | [diff] [blame] | 126 | """Run the unit test suite.""" |
Danny Hermes | fd1d18f | 2017-11-01 21:47:55 -0700 | [diff] [blame] | 127 | default(session) |
| 128 | |
| 129 | |
Tres Seaver | a30f004 | 2021-08-03 13:59:25 -0400 | [diff] [blame] | 130 | @nox.session(python=["3.6", "3.7", "3.8", "3.9"]) |
Bu Sun Kim | 9f45e3c | 2018-10-10 11:04:44 -0700 | [diff] [blame] | 131 | def unit_grpc_gcp(session): |
Weiran Fang | 0a5c85c | 2018-07-27 11:30:48 -0700 | [diff] [blame] | 132 | """Run the unit test suite with grpcio-gcp installed.""" |
Bu Sun Kim | c5fee89 | 2021-01-13 14:46:03 -0700 | [diff] [blame] | 133 | constraints_path = str( |
| 134 | CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
| 135 | ) |
Weiran Fang | 0a5c85c | 2018-07-27 11:30:48 -0700 | [diff] [blame] | 136 | # Install grpcio-gcp |
Tres Seaver | ffa528e | 2021-08-12 17:42:46 -0400 | [diff] [blame] | 137 | session.install("-e", ".[grpcgcp]", "-c", constraints_path) |
Weiran Fang | 0a5c85c | 2018-07-27 11:30:48 -0700 | [diff] [blame] | 138 | |
| 139 | default(session) |
| 140 | |
| 141 | |
Christopher Wilcox | 6f4070d | 2018-11-29 11:02:52 -0800 | [diff] [blame] | 142 | @nox.session(python="3.6") |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 143 | def lint_setup_py(session): |
| 144 | """Verify that setup.py is valid (including RST check).""" |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 145 | |
Christopher Wilcox | 6f4070d | 2018-11-29 11:02:52 -0800 | [diff] [blame] | 146 | session.install("docutils", "Pygments") |
| 147 | session.run("python", "setup.py", "check", "--restructuredtext", "--strict") |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 148 | |
| 149 | |
Rebecca Chen | 0fce637 | 2018-09-27 10:45:58 -0700 | [diff] [blame] | 150 | # No 3.7 because pytype supports up to 3.6 only. |
Christopher Wilcox | 6f4070d | 2018-11-29 11:02:52 -0800 | [diff] [blame] | 151 | @nox.session(python="3.6") |
Rebecca Chen | 0fce637 | 2018-09-27 10:45:58 -0700 | [diff] [blame] | 152 | def pytype(session): |
Christopher Wilcox | 6f4070d | 2018-11-29 11:02:52 -0800 | [diff] [blame] | 153 | """Run type-checking.""" |
Tres Seaver | ffa528e | 2021-08-12 17:42:46 -0400 | [diff] [blame] | 154 | session.install(".[grpc, grpcgcp]", "pytype >= 2019.3.21") |
Christopher Wilcox | 6f4070d | 2018-11-29 11:02:52 -0800 | [diff] [blame] | 155 | session.run("pytype") |
Rebecca Chen | 0fce637 | 2018-09-27 10:45:58 -0700 | [diff] [blame] | 156 | |
| 157 | |
Christopher Wilcox | 6f4070d | 2018-11-29 11:02:52 -0800 | [diff] [blame] | 158 | @nox.session(python="3.6") |
Jon Wayne Parrott | 77fb0f2 | 2017-10-18 12:52:35 -0700 | [diff] [blame] | 159 | def cover(session): |
| 160 | """Run the final coverage report. |
| 161 | |
| 162 | This outputs the coverage report aggregating coverage from the unit |
| 163 | test runs (not system test runs), and then erases coverage data. |
| 164 | """ |
Christopher Wilcox | 6f4070d | 2018-11-29 11:02:52 -0800 | [diff] [blame] | 165 | session.install("coverage", "pytest-cov") |
| 166 | session.run("coverage", "report", "--show-missing", "--fail-under=100") |
| 167 | session.run("coverage", "erase") |
Bu Sun Kim | bee4b07 | 2019-06-25 12:44:16 -0700 | [diff] [blame] | 168 | |
| 169 | |
Dan Lee | 877fabc | 2021-07-07 11:40:46 -0400 | [diff] [blame] | 170 | @nox.session(python="3.8") |
Bu Sun Kim | bee4b07 | 2019-06-25 12:44:16 -0700 | [diff] [blame] | 171 | def docs(session): |
| 172 | """Build the docs for this library.""" |
| 173 | |
Tres Seaver | ffa528e | 2021-08-12 17:42:46 -0400 | [diff] [blame] | 174 | session.install("-e", ".[grpc, grpcgcp]") |
Dan Lee | 877fabc | 2021-07-07 11:40:46 -0400 | [diff] [blame] | 175 | session.install("sphinx==4.0.1", "alabaster", "recommonmark") |
Bu Sun Kim | bee4b07 | 2019-06-25 12:44:16 -0700 | [diff] [blame] | 176 | |
| 177 | shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) |
| 178 | session.run( |
| 179 | "sphinx-build", |
| 180 | "-W", # warnings as errors |
| 181 | "-T", # show full traceback on exception |
| 182 | "-N", # no colors |
| 183 | "-b", |
| 184 | "html", |
| 185 | "-d", |
| 186 | os.path.join("docs", "_build", "doctrees", ""), |
| 187 | os.path.join("docs", ""), |
| 188 | os.path.join("docs", "_build", "html", ""), |
Tres Seaver | 0c2c556 | 2020-02-25 13:59:11 -0500 | [diff] [blame] | 189 | ) |
Tres Seaver | aaffc89 | 2020-12-02 14:31:03 -0500 | [diff] [blame] | 190 | |
| 191 | |
Dan Lee | 877fabc | 2021-07-07 11:40:46 -0400 | [diff] [blame] | 192 | @nox.session(python="3.8") |
Tres Seaver | aaffc89 | 2020-12-02 14:31:03 -0500 | [diff] [blame] | 193 | def docfx(session): |
| 194 | """Build the docfx yaml files for this library.""" |
| 195 | |
| 196 | session.install("-e", ".") |
Dan Lee | 877fabc | 2021-07-07 11:40:46 -0400 | [diff] [blame] | 197 | session.install( |
| 198 | "sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml" |
| 199 | ) |
Tres Seaver | aaffc89 | 2020-12-02 14:31:03 -0500 | [diff] [blame] | 200 | |
| 201 | shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) |
| 202 | session.run( |
| 203 | "sphinx-build", |
| 204 | "-T", # show full traceback on exception |
| 205 | "-N", # no colors |
| 206 | "-D", |
| 207 | ( |
| 208 | "extensions=sphinx.ext.autodoc," |
| 209 | "sphinx.ext.autosummary," |
| 210 | "docfx_yaml.extension," |
| 211 | "sphinx.ext.intersphinx," |
| 212 | "sphinx.ext.coverage," |
| 213 | "sphinx.ext.napoleon," |
| 214 | "sphinx.ext.todo," |
| 215 | "sphinx.ext.viewcode," |
| 216 | "recommonmark" |
| 217 | ), |
| 218 | "-b", |
| 219 | "html", |
| 220 | "-d", |
| 221 | os.path.join("docs", "_build", "doctrees", ""), |
| 222 | os.path.join("docs", ""), |
| 223 | os.path.join("docs", "_build", "html", ""), |
| 224 | ) |