|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from __future__ import absolute_import |
|
import os |
|
import pathlib |
|
import shutil |
|
|
|
import nox |
|
|
|
|
|
BLACK_VERSION = "black==23.7.0" |
|
BLACK_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"] |
|
|
|
DEFAULT_PYTHON_VERSION = "3.8" |
|
SYSTEM_TEST_PYTHON_VERSIONS = ["3.8"] |
|
UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] |
|
CONFORMANCE_TEST_PYTHON_VERSIONS = ["3.8"] |
|
|
|
_DEFAULT_STORAGE_HOST = "https://storage.googleapis.com" |
|
|
|
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute() |
|
|
|
|
|
nox.options.error_on_missing_interpreters = True |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
def lint(session): |
|
"""Run linters. |
|
|
|
Returns a failure if the linters find linting errors or sufficiently |
|
serious code quality issues. |
|
""" |
|
|
|
|
|
session.install("flake8==6.0.0", BLACK_VERSION) |
|
session.run( |
|
"black", |
|
"--check", |
|
*BLACK_PATHS, |
|
) |
|
session.run("flake8", "google", "tests") |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
def blacken(session): |
|
"""Run black. |
|
|
|
Format code to uniform standard. |
|
""" |
|
session.install(BLACK_VERSION) |
|
session.run( |
|
"black", |
|
*BLACK_PATHS, |
|
) |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
def lint_setup_py(session): |
|
"""Verify that setup.py is valid (including RST check).""" |
|
session.install("docutils", "pygments") |
|
session.run("python", "setup.py", "check", "--restructuredtext", "--strict") |
|
|
|
|
|
def default(session, install_extras=True): |
|
constraints_path = str( |
|
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
|
) |
|
|
|
session.install("mock", "pytest", "pytest-cov", "-c", constraints_path) |
|
|
|
if install_extras: |
|
session.install("opentelemetry-api", "opentelemetry-sdk") |
|
|
|
session.install("-e", ".", "-c", constraints_path) |
|
|
|
|
|
session.run( |
|
"py.test", |
|
"--quiet", |
|
f"--junitxml=unit_{session.python}_sponge_log.xml", |
|
"--cov=google.cloud.storage", |
|
"--cov=google.cloud", |
|
"--cov=tests.unit", |
|
"--cov-append", |
|
"--cov-config=.coveragerc", |
|
"--cov-report=", |
|
"--cov-fail-under=0", |
|
os.path.join("tests", "unit"), |
|
*session.posargs, |
|
) |
|
|
|
|
|
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS) |
|
def unit(session): |
|
"""Run the unit test suite.""" |
|
default(session) |
|
|
|
|
|
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS) |
|
def system(session): |
|
constraints_path = str( |
|
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
|
) |
|
"""Run the system test suite.""" |
|
system_test_path = os.path.join("tests", "system.py") |
|
system_test_folder_path = os.path.join("tests", "system") |
|
rerun_count = 0 |
|
|
|
|
|
if os.environ.get("RUN_SYSTEM_TESTS", "true") == "false": |
|
session.skip("RUN_SYSTEM_TESTS is set to false, skipping") |
|
|
|
if not os.environ.get("GOOGLE_APPLICATION_CREDENTIALS", ""): |
|
session.skip( |
|
"Credentials must be set via environment variable GOOGLE_APPLICATION_CREDENTIALS" |
|
) |
|
|
|
if os.environ.get("GOOGLE_API_USE_CLIENT_CERTIFICATE", "") == "true": |
|
session.install("pyopenssl") |
|
|
|
if ( |
|
os.getenv("API_ENDPOINT_OVERRIDE", "https://storage.googleapis.com") |
|
!= "https://storage.googleapis.com" |
|
): |
|
rerun_count = 3 |
|
|
|
system_test_exists = os.path.exists(system_test_path) |
|
system_test_folder_exists = os.path.exists(system_test_folder_path) |
|
|
|
if not system_test_exists and not system_test_folder_exists: |
|
session.skip("System tests were not found") |
|
|
|
|
|
|
|
session.install("--pre", "grpcio!=1.52.0rc1") |
|
|
|
|
|
|
|
|
|
|
|
|
|
session.install("mock", "pytest", "pytest-rerunfailures", "-c", constraints_path) |
|
session.install("-e", ".", "-c", constraints_path) |
|
session.install( |
|
"google-cloud-testutils", |
|
"google-cloud-iam", |
|
"google-cloud-pubsub < 2.0.0", |
|
"google-cloud-kms < 2.0dev", |
|
"-c", |
|
constraints_path, |
|
) |
|
|
|
|
|
if system_test_exists: |
|
session.run( |
|
"py.test", |
|
"--quiet", |
|
f"--junitxml=system_{session.python}_sponge_log.xml", |
|
"--reruns={}".format(rerun_count), |
|
system_test_path, |
|
*session.posargs, |
|
) |
|
if system_test_folder_exists: |
|
session.run( |
|
"py.test", |
|
"--quiet", |
|
f"--junitxml=system_{session.python}_sponge_log.xml", |
|
"--reruns={}".format(rerun_count), |
|
system_test_folder_path, |
|
*session.posargs, |
|
) |
|
|
|
|
|
@nox.session(python=CONFORMANCE_TEST_PYTHON_VERSIONS) |
|
def conftest_retry(session): |
|
"""Run the retry conformance test suite.""" |
|
conformance_test_folder_path = os.path.join("tests", "conformance") |
|
conformance_test_folder_exists = os.path.exists(conformance_test_folder_path) |
|
|
|
if not conformance_test_folder_exists: |
|
session.skip("Conformance tests were not found") |
|
|
|
|
|
|
|
session.install("pytest", "pytest-xdist") |
|
session.install("-e", ".") |
|
|
|
|
|
if session.posargs: |
|
test_cmd = [ |
|
"py.test", |
|
"--quiet", |
|
conformance_test_folder_path, |
|
*session.posargs, |
|
] |
|
else: |
|
test_cmd = ["py.test", "-n", "auto", "--quiet", conformance_test_folder_path] |
|
|
|
|
|
session.run(*test_cmd) |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
def cover(session): |
|
"""Run the final coverage report. |
|
|
|
This outputs the coverage report aggregating coverage from the unit |
|
test runs (not system test runs), and then erases coverage data. |
|
""" |
|
session.install("coverage", "pytest-cov") |
|
session.run("coverage", "report", "--show-missing", "--fail-under=100") |
|
|
|
session.run("coverage", "erase") |
|
|
|
|
|
@nox.session(python="3.10") |
|
def docs(session): |
|
"""Build the docs for this library.""" |
|
|
|
session.install("-e", ".") |
|
session.install( |
|
|
|
|
|
|
|
|
|
"sphinxcontrib-applehelp==1.0.4", |
|
"sphinxcontrib-devhelp==1.0.2", |
|
"sphinxcontrib-htmlhelp==2.0.1", |
|
"sphinxcontrib-qthelp==1.0.3", |
|
"sphinxcontrib-serializinghtml==1.1.5", |
|
"sphinx==4.5.0", |
|
"alabaster", |
|
"recommonmark", |
|
) |
|
|
|
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) |
|
session.run( |
|
"sphinx-build", |
|
"-W", |
|
"-T", |
|
"-N", |
|
"-b", |
|
"html", |
|
"-d", |
|
os.path.join("docs", "_build", "doctrees", ""), |
|
os.path.join("docs", ""), |
|
os.path.join("docs", "_build", "html", ""), |
|
) |
|
|
|
|
|
@nox.session(python="3.10") |
|
def docfx(session): |
|
"""Build the docfx yaml files for this library.""" |
|
|
|
session.install("-e", ".") |
|
session.install("grpcio") |
|
session.install( |
|
|
|
|
|
|
|
|
|
"sphinxcontrib-applehelp==1.0.4", |
|
"sphinxcontrib-devhelp==1.0.2", |
|
"sphinxcontrib-htmlhelp==2.0.1", |
|
"sphinxcontrib-qthelp==1.0.3", |
|
"sphinxcontrib-serializinghtml==1.1.5", |
|
"gcp-sphinx-docfx-yaml", |
|
"alabaster", |
|
"recommonmark", |
|
) |
|
|
|
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) |
|
session.run( |
|
"sphinx-build", |
|
"-T", |
|
"-N", |
|
"-D", |
|
( |
|
"extensions=sphinx.ext.autodoc," |
|
"sphinx.ext.autosummary," |
|
"docfx_yaml.extension," |
|
"sphinx.ext.intersphinx," |
|
"sphinx.ext.coverage," |
|
"sphinx.ext.napoleon," |
|
"sphinx.ext.todo," |
|
"sphinx.ext.viewcode," |
|
"recommonmark" |
|
), |
|
"-b", |
|
"html", |
|
"-d", |
|
os.path.join("docs", "_build", "doctrees", ""), |
|
os.path.join("docs", ""), |
|
os.path.join("docs", "_build", "html", ""), |
|
) |
|
|