12 KiB
DEVELOPER.md
This document provides instructions for setting up your development environment and contributing to the Toolbox project.
Prerequisites
Before you begin, ensure you have the following:
-
Databases: Set up the necessary databases for your development environment.
-
Go: Install the latest version of Go.
-
Dependencies: Download and manage project dependencies:
go get go mod tidy
Developing Toolbox
Running from Local Source
-
Configuration: Create a
tools.yamlfile to configure your sources and tools. See the Configuration section in the README for details. -
CLI Flags: List available command-line flags for the Toolbox server:
go run . --help -
Running the Server: Start the Toolbox server with optional flags. The server listens on port 5000 by default.
go run . -
Testing the Endpoint: Verify the server is running by sending a request to the endpoint:
curl http://127.0.0.1:5000
Testing
Infrastructure
Toolbox uses both GitHub Actions and Cloud Build to run test workflows. Cloud Build is used when Google credentials are required. Cloud Build uses test project "toolbox-testing-438616".
Linting
Run the lint check to ensure code quality:
golangci-lint run --fix
Unit Tests
Execute unit tests locally:
go test -race -v ./...
Integration Tests
Running Locally
-
Environment Variables: Set the required environment variables. Refer to the Cloud Build testing configuration for a complete list of variables for each source.
SERVICE_ACCOUNT_EMAIL: Use your own GCP email.CLIENT_ID: Use the Google Cloud SDK application Client ID. Contact Toolbox maintainers if you don't have it.
-
Running Tests: Run the integration test for your target source. Specify the required Go build tags at the top of each integration test file.
go test -race -v ./tests/<YOUR_TEST_DIR>For example, to run the AlloyDB integration test:
go test -race -v ./tests/alloydbpg
Running on Pull Requests
- Internal Contributors: Testing workflows should trigger automatically.
- External Contributors: Request Toolbox maintainers to trigger the testing workflows on your PR.
Test Resources
The following databases have been added as test resources. To add a new database to test against, please contact the Toolbox maintainer team via an issue or PR. Refer to the Cloud Build testing configuration for a complete list of variables for each source.
- AlloyDB - setup in the test project
- AI Natural Language (setup
instructions)
has been configured for
alloydb-a-nl` tool tests - The Cloud Build service account is a user
- AI Natural Language (setup
instructions)
has been configured for
- Bigtable - setup in the test project
- The Cloud Build service account is a user
- BigQuery - setup in the test project
- The Cloud Build service account is a user
- Cloud SQL Postgres - setup in the test project
- The Cloud Build service account is a user
- Cloud SQL MySQL - setup in the test project
- The Cloud Build service account is a user
- Cloud SQL SQL Server - setup in the test project
- The Cloud Build service account is a user
- Couchbase - setup in the test project via the Marketplace
- DGraph - using the public dgraph interface https://play.dgraph.io for testing
- Memorystore Redis - setup in the test project using a Memorystore for Redis
standalone instance
- Memorystore Redis Cluster, Memorystore Valkey standalone, and Memorystore Valkey Cluster instances all require PSC connections, which requires extra security setup to connect from Cloud Build. Memorystore Redis standalone is the only one allowing PSA connection.
- The Cloud Build service account is a user
- Memorystore Valkey - setup in the test project using a Memorystore for Redis
standalone instance
- The Cloud Build service account is a user
- MySQL - setup in the test project using a Cloud SQL instance
- Neo4j - setup in the test project on a GCE VM
- Postgres - setup in the test project using an AlloyDB instance
- Spanner - setup in the test project
- The Cloud Build service account is a user
- SQL Server - setup in the test project using a Cloud SQL instance
- SQLite - setup in the integration test, where we create a temporary database file
Other GitHub Checks
- License header check (
.github/header-checker-lint.yml) - Ensures files have the appropriate license - CLA/google - Ensures the developer has signed the CLA: https://cla.developers.google.com/
- conventionalcommits.org - Ensures the commit messages are in the correct format. This repository uses tool Release Please to create GitHub releases. It does so by parsing your git history, looking for Conventional Commit messages, and creating release PRs. Learn more by reading How should I write my commits?
Developing Documentation
Running a Local Hugo Server
Follow these steps to preview documentation changes locally using a Hugo server:
-
Install Hugo: Ensure you have Hugo extended edition version 0.146.0 or later installed.
-
Navigate to the Hugo Directory:
cd .hugo -
Install Dependencies:
npm ci -
Start the Server:
hugo server
Previewing Documentation on Pull Requests
Contributors
Request a repo owner to run the preview deployment workflow on your PR. A preview link will be automatically added as a comment to your PR.
Maintainers
- Inspect Changes: Review the proposed changes in the PR to ensure they are
safe and do not contain malicious code. Pay close attention to changes in the
.github/workflows/directory. - Deploy Preview: Apply the
docs: deploy-previewlabel to the PR to deploy a documentation preview.
Building Toolbox
Building the Binary
-
Build Command: Compile the Toolbox binary:
go build -o toolbox -
Running the Binary: Execute the compiled binary with optional flags. The server listens on port 5000 by default:
./toolbox -
Testing the Endpoint: Verify the server is running by sending a request to the endpoint:
curl http://127.0.0.1:5000
Building Container Images
-
Build Command: Build the Toolbox container image:
docker build -t toolbox:dev . -
View Image: List available Docker images to confirm the build:
docker images -
Run Container: Run the Toolbox container image using Docker:
docker run -d toolbox:dev
Developing Toolbox SDKs
Refer to the SDK developer guide for instructions on developing Toolbox SDKs.
Maintainer Information
Team
Team, @googleapis/senseai-eco, has been set as
CODEOWNERS. The GitHub TeamSync tool is used to create
this team from MDB Group, senseai-eco.
Releasing
Toolbox has two types of releases: versioned and continuous. It uses Google
Cloud project, database-toolbox.
- Versioned Release: Official, supported distributions tagged as
latest. The release process is defined in versioned.release.cloudbuild.yaml. - Continuous Release: Used for early testing of features between official releases and for end-to-end testing. The release process is defined in continuous.release.cloudbuild.yaml.
- GitHub Release:
.github/release-please.ymlautomatically creates GitHub Releases and release PRs.
How-to Release a new Version
- [Optional] If you want to override the version number, send a
PR to trigger
release-please.
You can generate a commit with the following line:
git commit -m "chore: release 0.1.0" -m "Release-As: 0.1.0" --allow-empty - [Optional] If you want to edit the changelog, send commits to the release PR
- Approve and merge the PR with the title “chore(main): release x.x.x”
- The trigger should automatically run when a new tag is pushed. You can view triggered builds here to check the status
- Update the Github release notes to include the following table:
-
Run the following command (from the root directory):
export VERSION="v0.0.0" .ci/generate_release_table.sh -
Copy the table output
-
In the GitHub UI, navigate to Releases and click the
editbutton. -
Paste the table at the bottom of release note and click
Update release.
-
- Post release in internal chat and on Discord.
Supported Binaries
The following operating systems and architectures are supported for binary releases:
- linux/amd64
- darwin/arm64
- darwin/amd64
- windows/amd64
Supported Container Images
The following base container images are supported for container image releases:
- distroless
Automated Tests
Integration and unit tests are automatically triggered via Cloud Build on each pull request. Integration tests run on merge and nightly.
Failure notifications
On-merge and nightly tests that fail have notification setup via Cloud Build Failure Reporter GitHub Actions Workflow.
Trigger Setup
Configure a Cloud Build trigger using the UI or gcloud with the following
settings:
- Event: Pull request
- Region: global (for default worker pools)
- Source:
- Generation: 1st gen
- Repo: googleapis/genai-toolbox (GitHub App)
- Base branch:
^main$
- Comment control: Required except for owners and collaborators
- Filters: Add directory filter
- Config: Cloud Build configuration file
- Location: Repository (add path to file)
- Service account: Set for demo service to enable ID token creation for authenticated services
Triggering Tests
Trigger pull request tests for external contributors by:
- Cloud Build tests: Comment
/gcbrun - Unit tests: Add the
tests:runlabel
Repo Setup & Automation
- .github/blunderbuss.yml - Auto-assign issues and PRs from GitHub teams
- .github/renovate.json5 - Tooling for dependency updates. Dependabot is built into the GitHub repo for GitHub security warnings
- go/github-issue-mirror - GitHub issues are automatically mirrored into buganizer
- (Suspended) .github/sync-repo-settings.yaml - configure repo settings
- .github/release-please.yml - Creates GitHub releases
- .github/ISSUE_TEMPLATE - templates for GitHub issues