So you want to contribute code to the OpenSearch Go Client? Excellent! We're glad you're here. Here's what you need to do:
Fork opensearch-project/opensearch-go and clone locally,
e.g. git clone https://github.com/[your username]/opensearch-go.git
.
OpenSearch Go Client builds using Go 1.11 at a minimum.
Docker is required for building some OpenSearch artifacts and executing integration tests.
Go has a simple tool for running tests, and we simplified it further by creating this make command:
make test-unit
Individual unit tests can be run with the following command:
cd folder-path/to/test;
go test -v -run TestName;
In order to test opensearch-go client, you need a running OpenSearch cluster. You can use Docker to accomplish this. The Docker Compose file supports the ability to run integration tests for the project in local environments. If you have not installed docker-compose, you can install it from this link.
In order to differentiate unit tests from integration tests, Go has a built-in mechanism for allowing you to logically separate your tests with build tags. The build tag needs to be placed as close to the top of the file as possible, and must have a blank line beneath it. Hence, create all integration tests with build tag 'integration'.
- Run below command to start containers. By default, it will launch latest OpenSearch cluster.
make cluster.opensearch.build cluster.opensearch.start
- Run all integration tests.
make test-integ race=true
- Stop and clean containers.
make cluster.opensearch.stop cluster.clean
You can import the OpenSearch project into GoLand as follows:
- Select File | Open
- In the subsequent dialog navigate to the ~/go/src/opensearch-go and click Open
After you have opened your project, you need to specify the location of the Go SDK. You can either specify a local path to the SDK or download it. To set the Go SDK, navigate to Go | GOROOT and set accordingly.