cs-codex-dist-tests/README.md

45 lines
2.8 KiB
Markdown
Raw Permalink Normal View History

2024-03-27 14:01:32 +00:00
# Distributed System Tests
2023-03-21 12:20:21 +00:00
2024-03-27 14:01:32 +00:00
This project allows you to write tools and tests that control and interact with container-based applications to form a distributed system in a controlled, reproducible environment.
2023-09-21 12:39:41 +00:00
Dotnet: v7.0
Kubernetes: v1.25.4
Dotnet-kubernetes SDK: v10.1.4 https://github.com/kubernetes-client/csharp
2023-05-01 14:26:26 +00:00
Nethereum: v4.14.0
2023-03-21 12:20:21 +00:00
2024-03-27 14:01:32 +00:00
Currently, this project is mainly used for distributed testing of [Nim-Codex](https://github.com/codex-storage/nim-codex). However, its plugin-structure allows for other projects to be on-boarded (relatively) easily. (See 'contribute a plugin`.)
## Tests/DistTestCore
Library with generic distributed-testing functionality. Uses NUnit3. Reference this project to build unit-test style scenarios: setup, run test, teardown. The DistTestCore responds to the following env-vars:
- `LOGPATH` = Path where log files will be written.
- `DATAFILEPATH` = Path where (temporary) data files will be stored.
- `ALWAYS_LOGS` = When set, DistTestCore will always download all container logs at the end of a test run. By default, logs are only downloaded on test failure.
2023-09-21 12:39:41 +00:00
## Tests/CodexTests and Tests/CodexLongTests
2024-03-27 14:01:32 +00:00
These are test assemblies that use DistTestCore to perform tests against transient Codex nodes.
2023-09-29 08:19:59 +00:00
Read more [HERE](/Tests/CodexTests/README.md)
2023-03-21 12:20:21 +00:00
2023-10-26 12:26:45 +00:00
## Tests/ContinuousTests
2023-09-21 12:39:41 +00:00
A console application that runs tests in an endless loop against a persistent deployment of Codex nodes.
2023-09-29 08:19:59 +00:00
Read more [HERE](/Tests/CodexContinuousTests/README.md)
2023-03-21 12:20:21 +00:00
2023-09-21 12:39:41 +00:00
## Tools/CodexNetDeployer
A console application that can deploy Codex nodes.
2023-09-29 08:19:59 +00:00
Read more [HERE](/Tools/CodexNetDeployer/README.MD)
2023-09-29 08:19:59 +00:00
## Framework architecture
The framework is designed to be extended by project-specific plugins. These plugins contribute functionality and abstractions to the framework. Users of the framework use these to perform tasks such as testing and deploying.
![Architecture](/docs/FrameworkArchitecture.png)
2023-03-21 12:20:21 +00:00
2023-09-21 12:39:41 +00:00
## How to contribute a plugin
If you want to add support for your project to the testing framework, follow the steps [HERE](/CONTRIBUTINGPLUGINS.MD)
2023-05-01 14:26:26 +00:00
## How to contribute tests
2023-09-21 12:39:41 +00:00
If you want to contribute tests, please follow the steps [HERE](/CONTRIBUTINGTESTS.md).
2023-03-21 12:20:21 +00:00
2023-05-01 14:26:26 +00:00
## Run the tests on your machine
Creating tests is much easier when you can debug them on your local system. This is possible, but requires some set-up. If you want to be able to run the tests on your local system, follow the steps [HERE](/docs/LOCALSETUP.md). Please note that tests which require explicit node locations cannot be executed locally. (Well, you could comment out the location statements and then it would probably work. But that might impact the validity/usefulness of the test.)
2023-03-21 12:20:21 +00:00
2023-05-01 14:26:26 +00:00
## Missing functionality
Surely the test-infra doesn't do everything we'll need it to do. If you're running into a limitation and would like to request a new feature for the test-infra, please create an issue.