test/telemetry: add unit tests for data to JSON
authorLouise Kilheeney <louise.kilheeney@intel.com>
Wed, 23 Sep 2020 11:12:27 +0000 (12:12 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 6 Oct 2020 20:55:13 +0000 (22:55 +0200)
commitbd78cf693ebd9ceefd306780b585ea3e31049e9d
treecb0646a67fe8fc59df4af9efcb574060b667a87d
parentc933bb5177cac5fbf4533e357d466cff1f3e6c97
test/telemetry: add unit tests for data to JSON

This patch adds tests for verifying telemetry data structures are
converted to JSON as expected. Both flat and recursive data structures
are tested, for all possible value types.

The app connects to the telemetry socket as a client, and registers one
command with a corresponding callback function. Each time the callback
function is called, it copies a global data variable to the data pointer
passed in by telemetry.
When a test case is run, the test case function builds up the global
data variable with the relevant data types, and the expected json string
output which should be generated from that. The 'test_output()' function
is used to trigger the callback and ensure the actual output matches
that expected.

Signed-off-by: Louise Kilheeney <louise.kilheeney@intel.com>
Signed-off-by: Ciara Power <ciara.power@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
app/test/meson.build
app/test/test_telemetry_data.c [new file with mode: 0644]