bigquery-etl/tests
Anna Scholtz f961ed3137 Create pytest fixtures 2020-04-30 14:05:26 -07:00
..
assert Refactor udf_percentile in telemetry histogram percentiles as a persistent udf (#832) 2020-03-23 12:30:23 -07:00
data Update integration tests 2020-04-29 14:18:53 -07:00
format_sql Correctly format scripting keywords (#693) 2020-01-21 20:05:47 -08:00
metadata Move all metadata related scripts to a metadata directory 2020-04-29 14:18:53 -07:00
public_data Create pytest fixtures 2020-04-30 14:05:26 -07:00
query_scheduling Move all metadata related scripts to a metadata directory 2020-04-29 14:18:53 -07:00
search_derived Bug 1597361 - Add experiments to search_clients_daily (#667) 2020-01-10 20:02:18 -05:00
telemetry main_summary use temporary UDFs 2020-02-07 09:48:23 -08:00
telemetry_derived Fix tests for clients daily histogram aggregates (#672). 2020-03-05 12:40:25 -05:00
README.md Add docs for running integration tests 2020-04-22 12:51:14 -07:00
__init__.py

README.md

How to Run Tests

This repository uses pytest:

# create a venv
python3.8 -m venv venv/

# install requirements
venv/bin/pip install -r requirements.txt

# run pytest with all linters and 4 workers in parallel
venv/bin/pytest --black --docstyle --flake8 --mypy-ignore-missing-imports -n 4

# use -k to selectively run a set of tests that matches the expression `udf`
venv/bin/pytest -k udf

# run integration tests with 4 workers in parallel
gcloud auth application-default login # or set GOOGLE_APPLICATION_CREDENTIALS
export GOOGLE_PROJECT_ID="bigquery-etl-integration-test"
venv/bin/pytest -m integration -n 4

To provide authentication credentials for the Google Cloud API the GOOGLE_APPLICATION_CREDENTIALS environment variable must be set to the file path of the JSON file that contains the service account key. See Mozilla BigQuery API Access instructions to request credentials if you don't already have them.

How to Configure a UDF Test

Include a comment like -- Tests followed by one or more query statements after the UDF in the SQL file where it is defined. Each statement in a SQL file that defines a UDF that does not define a temporary function is collected as a test and executed independently of other tests in the file.

Each test must use the UDF and throw an error to fail. Assert functions defined in tests/assert/ may be used to evaluate outputs. Tests must not use any query parameters and should not reference any tables. Each test that is expected to fail must be preceded by a comment like #xfail, similar to a SQL dialect prefix in the BigQuery Cloud Console.

For example:

CREATE TEMP FUNCTION udf_example(option INT64) AS (
  CASE
  WHEN option > 0 then TRUE
  WHEN option = 0 then FALSE
  ELSE ERROR("invalid option")
  END
);
-- Tests
SELECT
  assert_true(udf_example(1)),
  assert_false(udf_example(0));
#xfail
SELECT
  udf_example(-1);
#xfail
SELECT
  udf_example(NULL);

How to Configure a Generated Test

  1. Make a directory for test resources named tests/{dataset}/{query_name}/{test_name}/, e.g. tests/telemetry_derived/clients_last_seen_raw_v1/test_single_day
    • query_name must match a query file named sql/{dataset}/{query_name}.sql, e.g. sql/telemetry_derived/clients_last_seen_v1.sql
    • test_name should start with test_, e.g. test_single_day
  2. Add .yaml files for input tables, e.g. clients_daily_v6.yaml
    • Include the dataset prefix if it's set in the tested query, e.g. analysis.clients_last_seen_v1.yaml
      • This will result in the dataset prefix being removed from the query, e.g. query = query.replace("analysis.clients_last_seen_v1", "clients_last_seen_v1")
  3. Add .sql files for input view queries, e.g. main_summary_v4.sql
    • Don't include a CREATE ... AS clause
    • Fully qualify table names as `{project}.{dataset}.table`
    • Include the dataset prefix if it's set in the tested query, e.g. telemetry.main_summary_v4.sql
      • This will result in the dataset prefix being removed from the query, e.g. query = query.replace("telemetry.main_summary_v4", "main_summary_v4")
  4. Add expect.yaml to validate the result
    • DATE and DATETIME type columns in the result are coerced to strings using .isoformat()
    • Columns named generated_time are removed from the result before comparing to expect because they should not be static
  5. Optionally add .schema.json files for input table schemas, e.g. clients_daily_v6.schema.json
  6. Optionally add query_params.yaml to define query parameters
    • query_params must be a list

Additional Guidelines and Options

  • If the destination table is also an input table then generated_time should be a required DATETIME field to ensure minimal validation
  • Input table files
    • All of the formats supported by bq load are supported
    • yaml and json format are supported and must contain an array of rows which are converted in memory to ndjson before loading
    • Preferred formats are yaml for readability or ndjson for compatiblity with bq load
  • expect.yaml
    • File extensions yaml, json and ndjson are supported
    • Preferred formats are yaml for readability or ndjson for compatiblity with bq load
  • Schema files
    • Setting the description of a top level field to time_partitioning_field will cause the table to use it for time partitioning
    • File extensions yaml, json and ndjson are supported
    • Preferred formats are yaml for readability or json for compatiblity with bq load
  • Query parameters
    • Scalar query params should be defined as a dict with keys name, type or type_, and value
    • query_parameters.yaml may be used instead of query_params.yaml, but they are mutually exclusive
    • File extensions yaml, json and ndjson are supported
    • Preferred format is yaml for readability

How to Run CircleCI Locally

  • Install the CircleCI Local CI
  • Download GCP service account keys
    • Integration tests will only successfully run with service account keys that belong to the circleci service account in the biguqery-etl-integration-test project
  • Run circleci build and set required environment variables GOOGLE_PROJECT_ID and GCLOUD_SERVICE_KEY:
gcloud_service_key=`cat /path/to/key_file.json`

# to run a specific job, e.g. integration:
circleci build --job integration \
  --env GOOGLE_PROJECT_ID=bigquery-etl-integration-test \
  --env GCLOUD_SERVICE_KEY=$gcloud_service_key

# to run all jobs
circleci build \
  --env GOOGLE_PROJECT_ID=bigquery-etl-integration-test \
  --env GCLOUD_SERVICE_KEY=$gcloud_service_key