Signed-off-by: Ryan Lettieri <ryanLettieri@microsoft.com> |
||
|---|---|---|
| .. | ||
| bindings | ||
| pubsub | ||
| secretstores | ||
| state | ||
| utils | ||
| workflows | ||
| README.md | ||
| bindings_test.go | ||
| common.go | ||
| common_test.go | ||
| component_types.go | ||
| pubsub_test.go | ||
| secrets.json | ||
| secretstores_test.go | ||
| standalone_loader.go | ||
| standalone_loader_test.go | ||
| state_test.go | ||
| workflow_test.go | ||
README.md
Conformance Tests
Tests structure
tests/directory contains the configuration and the test definition for conformance tests.- All the conformance tests are within the
tests/conformancedirectory. - All the configurations are in the
tests/configdirectory. - Each of the component specific
componentdefinition are in their specificcomponent typefolder in thetests/configfolder. E.g.redisstatestore component definition withinstatedirectory. The component types arebindings,state,secretstores,pubsub. Cloud specific components will be within their ownclouddirectory within thecomponent typefolder, e.g.pubsub/azure/servicebus. - Similar to the component definitions, each component type has its own set of the conformance tests definitions.
- Each
component typecontains atests.ymldefinition that defines the component to be tested along with component specific test configuration. Nested folder names have their/in path replaced by.in the component name intests.yml, e.g.azure/servicebusshould beazure.servicebus - All the tests configurations are defined in
common.gofile. - Each
component typehas its own_testfile to trigger the conformance tests. E.g.bindings_test.go. - Each test added will also need to be added to the
conformance.ymlworkflow file.
Conformance test workflow
- All components/services tested in the automated tests are currently manually setup by the Dapr team and run in an environment maintained by the Dapr team. As a contributor, follow the next two steps for integrating a new component with conformance tests.
- If the component is tested locally within a docker container requiring no secrets, then add the component to the
pr-componentsstep in conformance test workflow.github/conformance.yml.pr-componentsstep generates the component matrix for which the conformance tests will be run on each PR. - If the component is tested against a service and requires secrets, then add the component to the
cron-componentsstep in conformance test workflow.github/conformance.yml.cron-componentsdefines the components for which the conformance test will be run against the master code in a scheduled manner.
Integrating a new component with conformance tests
-
Add the component specific YAML to
tests/config/<COMPONENT-TYPE>/<COMPONENT>/<FILE>.yaml. -
All passwords will be of the form
${{PASSWORD_KEY}}so that it is injected via environment variables. -
Register the component
New**function incommon.go. For example:... switch tc.Component { case "azure.servicebusqueues": binding = b_azure_servicebusqueues.NewAzureServiceBusQueues(testLogger) case "azure.storagequeues": binding = b_azure_storagequeues.NewAzureStorageQueues(testLogger) case "azure.eventgrid": binding = b_azure_eventgrid.NewAzureEventGrid(testLogger) case "kafka": binding = b_kafka.NewKafka(testLogger) case "new-component": binding = b_new_component.NewComponent(testLogger) default: return nil } ... -
Add the config to
tests.ymldefined insidetests/config/<COMPONENT-TYPE>/folder. For example:componentType: binding components: ## All other components - component: <COMPONENT> allOperations: <true/false> operations: <List of operations if needed> -
Any UUID generation for keys can be specified using
$((uuid)). E.g. see /tests/config/bindings/tests.yml -
Run the specific conformance test following the process below.
-
Follow steps 2 and 3 for changes to the workflow.
Running conformance tests
-
Test setup is independent of the test run.
-
Run the service that needs to conformance tested locally or in your own cloud account.
-
For cloud-agnostic components such as Kafka, MQTT etc., there are
docker-composedefinitions under the /.github/infrastructure folder you can use to quickly create an instance of the service. For example, to setup Kafka for conformance tests:docker-compose -f ./.github/infrastructure/docker-compose-kafka.yml -p kafka up -d -
For Azure components such as Blob Storage, Key Vault etc., there is an automation script that can help you create the resources under your subscription, and extract the environment variables needed to run the conformance tests. See /.github/infrastructure/conformance/azure/README.md for more details.
Given the variability in components and how they need to be set up for the conformance tests, you may need to refer to the GitHub workflow for conformance tests for any extra setup required by some components. E.g. Azure Event Grid bindings require setting up an Ngrok instance or similar endpoint for the test.
-
-
Some conformance tests require credentials in the form of environment variables. For examples Azure CosmosDB conformance tests will need to have Azure CosmosDB credentials. You will need to supply them to make these tests pass.
-
To run specific tests, run:
# TEST_NAME can be TestPubsubConformance, TestStateConformance, TestSecretStoreConformance or TestBindingsConformance # COMPONENT_NAME is the component name from the tests.yml file, e.g. azure.servicebus, redis, mongodb etc. go test -v -tags=conftests -count=1 ./tests/conformance -run="${TEST_NAME}/${COMPONENT_NAME}"
Debug conformance tests
To run all conformance tests
dlv test --build-flags '-v -tags=conftests' ./tests/conformance
To run a specific conformance test
dlv test --build-flags '-v -tags=conftests' ./tests/conformance -- -test.run "TestStateConformance/redis"
If you want to combine VS Code & dlv for debugging so you can set breakpoints in the IDE, create a debug launch configuration as follows:
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch test function",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${workspaceFolder}/tests/conformance",
"buildFlags": "-v -tags=conftests",
"env": {
"SOMETHING_REQUIRED_BY_THE_TEST": "<somevalue>"
},
"args": [
"-test.run",
"TestStateConformance/redis",
]
},
]
}