This project contains the acceptance tests for the Kyma Connector Service.
The project requires Go 1.8 or higher.
To install the Connector Service components, follow these steps:
git clone [email protected]:kyma-project/kyma.git
cd /tests/connector-service-tests
CGO_ENABLED=0 go build ./test/apitests/connector_test.go
Set the environment parameters:
Name | Required | Default | Description | Possible values |
---|---|---|---|---|
INTERNAL_API_URL | Yes | None | The URL of Connector Service internal API | http://localhost:8080 |
EXTERNAL_API_URL | Yes | None | The URL of Connector Service external API | https://connector-service.kyma.local |
GATEWAY_URL | Yes | None | The URL of Application Gateway API | https://gateway.kyma.local:30218 |
SKIP_SSL_VERIFY | No | false |
A flag for skipping SSL certificate validation | true |
Run this command to execute tests:
```bash
go test ./...
```