E M 497a48696c
add --no-bootstrap-node option via WithNoBootstrapNodes()
Follows the same pattern as --log-format / WithLogFormat():
- NoBootstrapNodes bool property on LogosStorageStartupConfig
- WithNoBootstrapNodes() method on ILogosStorageSetup
- Passes --no-bootstrap-node CLI flag in LogosStorageProcessRecipe
- Sets STORAGE_NO_BOOTSTRAP_NODE=true env var in ContainerRecipe
- Applied to bootstrap nodes in AutoBootstrapDistTest
2026-06-02 17:23:27 +10:00
..

Logos Storage Tests

This is an NUnit test assembly that can be used with the standard dotnet test runner. For all its CLI options, run dotnet test --help.

Example tests

Running all the tests in the assembly can take a while. In order to check basic viability of your setup as well as the Logos Storage image you're using, consider running only the example tests using the filter option: dotnet test --filter=Example.

Output

The test runner will produce a folder named LogosStorageTestLogs with all the test logs. They are sorted by timestamp and reflect the names of the test fixtures and individual tests. When a test fails, the log file for that specific test will be postfixed with _FAILED. The same applies to the fixture log file. The STATUS files contain the test results in JSON, for easy machine reading.

Overrides

The following environment variables allow you to override specific aspects of the behaviour of the tests.

Variable Description
DEPLOYID A pod-label 'deployid' is added to each pod created during the tests. Use this to set the value of that label.
TESTID Similar to RUNID, except the label is 'testid'.
STORAGEDOCKERIMAGE If set, this will be used instead of the default Logos Storage docker image.

Using a local Logos Storage repository

If you have a clone of the Logos Storage git repository, and you want to run the tests using your local modifications, the following environment variable options are for you. Please note that any changes made in Logos Storage's 'vendor' directory will be discarded during the build process.

Variable Description
STORAGEREPOPATH Path to the Logos Storage repository.
DOCKERUSERNAME Username of your Dockerhub account.
DOCKERPASSWORD Password OR access-token for your Dockerhub account. You can omit this variable to use your system-default account.
DOCKERTAG Optional. Tag used for docker image that will be built and pushed to the Dockerhub account. Random ID used when not set.