Testbed is a controlled environment and tools for conducting end-to-end tests for the Otel Collector, including reproducible short-term benchmarks, correctness tests, long-running stability tests and maximum load stress tests.
For each type of tests that should have a summary report create a new directory and then a test suite function which utilizes *testing.M
. This function should delegate all functionality to testbed.DoTestMain
supplying a global instance of testbed.TestResultsSummary
to it.
Each test case within the suite should create a testbed.TestCase
and supply implementations of each of the various interfaces the NewTestCase
function takes as parameters.
testbed.TestCase
uses LoadGenerator
and MockBackend
to further encapsulate pluggable components. LoadGenerator
further encapsulates DataProvider
and DataSender
in order to generate and send data. MockBackend
further encapsulate DataReceiver
and provide consume functionality.
For instance, if using the existing end-to-end test, the general dataflow can be (Note that MockBackend does not really have a consumer instance, only to make it intuitive, this diagram draws it a separate module):
DataProvider
- Generates test data to send to receiver under test.PerfTestDataProvider
- Implementation of theDataProvider
for use in performance tests. Tracing IDs are based on the incremented batch and data items counters.GoldenDataProvider
- Implementation ofDataProvider
for use in correctness tests. Provides data from the "Golden" dataset generated using pairwise combinatorial testing techniques.
DataSender
- Sends data to the collector instance under test.JaegerGRPCDataSender
- Implementation ofDataSender
which sends tojaeger
receiver.OCTraceDataSender
- Implementation ofDataSender
which sends toopencensus
receiver.OCMetricsDataSender
- Implementation ofDataSender
which sends toopencensus
receiver.OTLPTraceDataSender
- Implementation ofDataSender
which sends tootlp
receiver.OTLPMetricsDataSender
- Implementation ofDataSender
which sends tootlp
receiver.ZipkinDataSender
- Implementation ofDataSender
which sends tozipkin
receiver.
DataReceiver
- Receives data from the collector instance under test and stores it for use in test assertions.OCDataReceiver
- Implementation ofDataReceiver
which receives data fromopencensus
exporter.JaegerDataReceiver
- Implementation ofDataReceiver
which receives data fromjaeger
exporter.OTLPDataReceiver
- Implementation ofDataReceiver
which receives data fromotlp
exporter.ZipkinDataReceiver
- Implementation ofDataReceiver
which receives data fromzipkin
exporter.
OtelcolRunner
- Configures, starts and stops one or more instances of otelcol which will be the subject of testing being executed.ChildProcess
- Implementation ofOtelcolRunner
runs a single otelcol as a child process on the same machine as the test executor.InProcessCollector
- Implementation ofOtelcolRunner
runs a single otelcol as a go routine within the same process as the test executor.
TestCaseValidator
- Validates and reports on test results.PerfTestValidator
- Implementation ofTestCaseValidator
for test suites usingPerformanceResults
for summarizing results.CorrectnessTestValidator
- Implementation ofTestCaseValidator
for test suites usingCorrectnessResults
for summarizing results.
TestResultsSummary
- Records itemized test case results plus a summary of one category of testing.PerformanceResults
- Implementation ofTestResultsSummary
with fields suitable for reporting performance test results.CorrectnessResults
- Implementation ofTestResultsSummary
with fields suitable for reporting data translation correctness test results.
Generally, when designing a test for new exporter and receiver components, developers should mainly focus on designing and implementing the components with yellow background in the diagram above as the other components are implemented by the testbed framework:
-
DataSender
- This part should provide below interfaces for testing purpose:Start()
- Start sender and connect to the configured endpoint. Must be called before sending data.Flush()
- Send any accumulated data.GetCollectorPort()
- Return the port to which this sender will send data.GenConfigYAMLStr()
- Generate a config string to place in receiver part of collector config so that it can receive data from this sender.ProtocolName()
- Return protocol name to use in collector config pipeline.
-
DataReceiver
- This part should provide below interfaces for testing purpose:Start()
- Start receiver.Stop()
- Stop receiver.GenConfigYAMLStr()
- Generate a config string to place in exporter part of collector config so that it can send data to this receiver.ProtocolName()
- Return protocol name to use in collector config pipeline.
-
Testing
- This part may vary from what kind of testing developers would like to do. In existing implementation, we can refer to End-to-End testing, Metrics testing, Traces testing, Correctness Traces testing, and Correctness Metrics testing. For instance, if developers would like to design a trace test for a new exporter and receiver:-
func TestTrace10kSPS(t *testing.T) { tests := []struct { name string sender testbed.DataSender receiver testbed.DataReceiver resourceSpec testbed.ResourceSpec }{ { "NewExporterOrReceiver", testbed.NewXXXDataSender(testbed.DefaultHost, testbed.GetAvailablePort(t)), testbed.NewXXXDataReceiver(testbed.GetAvailablePort(t)), testbed.ResourceSpec{ ExpectedMaxCPU: XX, ExpectedMaxRAM: XX, }, }, ... } processors := map[string]string{ "batch": ` batch: `, } for _, test := range tests { t.Run(test.name, func(t *testing.T) { Scenario10kItemsPerSecond( t, test.sender, test.receiver, test.resourceSpec, performanceResultsSummary, processors, ) }) } }
-
Here providing some examples of how to run and get the results of testing.
- Under the collector-contrib repo, by running following command:
cd /testbed/tests
TESTBED_CONFIG=local.yaml go test -v
Then get the result:
- Under Collector/testbed/ repo, here taking correctness tests as an example, by running:
cd correctness
source ~/.bash_profile # remember you should enable your envir var here
./runtests.sh
Then get the result: