tree: ebea6f3a4f611b898d2c563ed7f1298c125a1fd6 [path history] [tgz]
  1. cli/
  2. cmd/
  3. internal/
  4. pbutil/
  5. proto/
  6. sink/
  7. .gitignore
  8. OWNERS
  9. README.md
resultdb/README.md

Run Spanner integration tests using Cloud Spanner Emulator

Install Cloud Spanner Emulator

Linux

The Cloud Spanner Emulator is part of the bundled gcloud, to make sure it's installed:

cd infra
gclient runhooks
eval `./go/env.py`
which gcloud # should show bundled gcloud
gcloud components list # should see cloud-spanner-emulator is installed

Mac

If you are a Google employee, follow go/docker-for-mac first.

  • After installing Docker Desktop, go to Preferences > Experimental Features and toggle off “Enable cloud experience” to avoid the error exec: “com.docker.cli”: executable file not found in $PATH.

Note: As of Mar 3, 2021, the newest version of Docker Desktop (3.2.0) is having issues toggling off “Enable cloud experience”, please download 3.1.0 here.

Run tests

From command line, first set environment variables:

export INTEGRATION_TESTS=1
export SPANNER_EMULATOR=1

Then run go test as usual.

Note: If you run tests on Mac, please start Docker Desktop before running tests.