diff --git a/packages/google-cloud-bigquery-datatransfer/.coveragerc b/packages/google-cloud-bigquery-datatransfer/.coveragerc new file mode 100644 index 000000000000..51fec440cebf --- /dev/null +++ b/packages/google-cloud-bigquery-datatransfer/.coveragerc @@ -0,0 +1,18 @@ +[run] +branch = True + +[report] +fail_under = 100 +show_missing = True +exclude_lines = + # Re-enable the standard pragma + pragma: NO COVER + # Ignore debug-only repr + def __repr__ + # Ignore abstract methods + raise NotImplementedError +omit = + */gapic/*.py + */proto/*.py + */google-cloud-python/core/*.py + */site-packages/*.py \ No newline at end of file diff --git a/packages/google-cloud-bigquery-datatransfer/.flake8 b/packages/google-cloud-bigquery-datatransfer/.flake8 new file mode 100644 index 000000000000..61766fa84d02 --- /dev/null +++ b/packages/google-cloud-bigquery-datatransfer/.flake8 @@ -0,0 +1,13 @@ +[flake8] +ignore = E203, E266, E501, W503 +exclude = + # Exclude generated code. + **/proto/** + **/gapic/** + *_pb2.py + + # Standard linting exemptions. + __pycache__, + .git, + *.pyc, + conf.py diff --git a/packages/google-cloud-bigquery-datatransfer/noxfile.py b/packages/google-cloud-bigquery-datatransfer/noxfile.py index fd85b781786b..5a981c4eec79 100644 --- a/packages/google-cloud-bigquery-datatransfer/noxfile.py +++ b/packages/google-cloud-bigquery-datatransfer/noxfile.py @@ -1,10 +1,12 @@ -# Copyright 2017, Google LLC All rights reserved. +# -*- coding: utf-8 -*- +# +# 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 +# https://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, @@ -13,74 +15,126 @@ # limitations under the License. from __future__ import absolute_import - import os import nox -LOCAL_DEPS = ( - os.path.join('..', 'api_core'), -) +LOCAL_DEPS = (os.path.join("..", "api_core"), os.path.join("..", "core")) +@nox.session(python="3.7") +def blacken(session): + """Run black. + + Format code to uniform standard. + """ + session.install("black") + session.run( + "black", + "google", + "tests", + "docs", + "--exclude", + ".*/proto/.*|.*/gapic/.*|.*/.*_pb2.py", + ) -def default(session): - """Default unit test session. - This is intended to be run **without** an interpreter set, so - that the current ``python`` (on the ``PATH``) or the version of - Python corresponding to the ``nox`` binary on the ``PATH`` can - run the tests. +@nox.session(python="3.7") +def lint(session): + """Run linters. + + Returns a failure if the linters find linting errors or sufficiently + serious code quality issues. """ + session.install("flake8", "black", *LOCAL_DEPS) + session.run( + "black", + "--check", + "google", + "tests", + "docs", + "--exclude", + ".*/proto/.*|.*/gapic/.*|.*/.*_pb2.py", + ) + session.run("flake8", "google", "tests") + + +@nox.session(python="3.7") +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 all test dependencies, then install this package in-place. - session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS) - session.install('-e', '.') + session.install("mock", "pytest", "pytest-cov") + for local_dep in LOCAL_DEPS: + session.install("-e", local_dep) + session.install("-e", ".") # Run py.test against the unit tests. session.run( - 'py.test', - '--quiet', - '--cov=google.cloud.bigquery_datatransfer', - '--cov=google.cloud.bigquery_datatransfer_v1', - '--cov=tests.unit', - '--cov-append', - '--cov-config=.coveragerc', - '--cov-report=', - os.path.join('tests', 'unit', 'gapic', 'v1'), - *session.posargs + "py.test", + "--quiet", + "--cov=google.cloud", + "--cov=tests.unit", + "--cov-append", + "--cov-config=.coveragerc", + "--cov-report=", + "--cov-fail-under=80", + os.path.join("tests", "unit"), + *session.posargs, ) -@nox.session(python=['2.7', '3.5', '3.6', '3.7']) +@nox.session(python=["2.7", "3.5", "3.6", "3.7"]) def unit(session): """Run the unit test suite.""" default(session) -@nox.session(python='3.6') -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') - - -@nox.session(python=['2.7', '3.6']) +@nox.session(python=["2.7", "3.7"]) def system(session): """Run the system test suite.""" - - # Sanity check: Only run system tests if the environment variable is set. - if not os.environ.get('GOOGLE_APPLICATION_CREDENTIALS', ''): - session.skip('Credentials must be set via environment variable.') + system_test_path = os.path.join("tests", "system.py") + system_test_folder_path = os.path.join("tests", "system") + # Sanity check: Only run tests if the environment variable is set. + if not os.environ.get("GOOGLE_APPLICATION_CREDENTIALS", ""): + session.skip("Credentials must be set via environment variable") + + system_test_exists = os.path.exists(system_test_path) + system_test_folder_exists = os.path.exists(system_test_folder_path) + # Sanity check: only run tests if found. + if not system_test_exists and not system_test_folder_exists: + session.skip("System tests were not found") # Use pre-release gRPC for system tests. - session.install('--pre', 'grpcio') + session.install("--pre", "grpcio") # Install all test dependencies, then install this package into the # virtualenv's dist-packages. - session.install('mock', 'pytest') - session.install('../test_utils/') - session.install('.') + session.install("mock", "pytest") + for local_dep in LOCAL_DEPS: + session.install("-e", local_dep) + session.install("-e", "../test_utils/") + session.install("-e", ".") # Run py.test against the system tests. - session.run('py.test', '--quiet', 'tests/system/') + if system_test_exists: + session.run("py.test", "--quiet", system_test_path, *session.posargs) + if system_test_folder_exists: + session.run("py.test", "--quiet", system_test_folder_path, *session.posargs) + + +@nox.session(python="3.7") +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=80") + + session.run("coverage", "erase") diff --git a/packages/google-cloud-bigquery-datatransfer/synth.py b/packages/google-cloud-bigquery-datatransfer/synth.py index d04d66a9e282..0ac9ede1afe0 100644 --- a/packages/google-cloud-bigquery-datatransfer/synth.py +++ b/packages/google-cloud-bigquery-datatransfer/synth.py @@ -18,39 +18,48 @@ from synthtool import gcp gapic = gcp.GAPICGenerator() +common = gcp.CommonTemplates() +version = "v1" -version = 'v1' - +# ---------------------------------------------------------------------------- +# Generate bigquery_datatransfer GAPIC layer +# ---------------------------------------------------------------------------- library = gapic.py_library( - 'bigquery-datatransfer', + "bigquery-datatransfer", version, - config_path='/google/cloud/bigquery/datatransfer/' - 'artman_bigquerydatatransfer.yaml', - artman_output_name='bigquerydatatransfer-v1' + config_path="/google/cloud/bigquery/datatransfer/" + "artman_bigquerydatatransfer.yaml", + artman_output_name="bigquerydatatransfer-v1", ) s.move( library, - excludes=['docs/conf.py', 'docs/index.rst', 'README.rst', - 'nox.py', 'setup.py'] + excludes=["docs/conf.py", "docs/index.rst", "README.rst", "nox.py", "setup.py"], ) s.replace( - ['google/cloud/bigquery_datatransfer_v1/proto/datatransfer_pb2.py', - 'google/cloud/bigquery_datatransfer_v1/proto/datatransfer_pb2_grpc.py'], - 'from google.cloud.bigquery.datatransfer_v1.proto', - 'from google.cloud.bigquery_datatransfer_v1.proto' + [ + "google/cloud/bigquery_datatransfer_v1/proto/datatransfer_pb2.py", + "google/cloud/bigquery_datatransfer_v1/proto/datatransfer_pb2_grpc.py", + ], + "from google.cloud.bigquery.datatransfer_v1.proto", + "from google.cloud.bigquery_datatransfer_v1.proto", ) s.replace( - 'google/cloud/bigquery_datatransfer_v1/gapic/' - 'data_transfer_service_client.py', - 'google-cloud-bigquerydatatransfer', - 'google-cloud-bigquery-datatransfer') + "google/cloud/bigquery_datatransfer_v1/gapic/" "data_transfer_service_client.py", + "google-cloud-bigquerydatatransfer", + "google-cloud-bigquery-datatransfer", +) s.replace( - 'google/cloud/bigquery_datatransfer_v1/gapic/' - 'data_transfer_service_client.py', - 'import google.api_core.gapic_v1.method\n', - '\g<0>import google.api_core.path_template\n' + "google/cloud/bigquery_datatransfer_v1/gapic/" "data_transfer_service_client.py", + "import google.api_core.gapic_v1.method\n", + "\g<0>import google.api_core.path_template\n", ) + +# ---------------------------------------------------------------------------- +# Add templated files +# ---------------------------------------------------------------------------- +templated_files = common.py_library(unit_cov_level=80, cov_level=80) +s.move(templated_files)