I'm writing some common DML code that contains a fairly complex method, something like:
saved uint32 checksum_ini;
method calculate_checksum(bytes_t data) -> (uint32 sum) {
uint32 result = checksum_ini;
for (int i = 0; i < data.size; ++i) {
result = f(result, data.data[i]);
}
return result;
}
My device calls the function indirectly by reading and writing some registers, which makes it cumbersome to unit test all corner cases of the checksum algorithm.
How can I efficiently write a unit test for my checksum implementation?
One approach is to create a dedicated test module, say
test-checksum
, containing a test device, saytest_checksum_dev
, that imports only your common code, and exposes thecalculate_checksum
method to Python, where it is easy to write tests. This is done in two steps: First, expose the method to C:The second step is to expose it to Python. Create
checksum.h
:(if you also add
header %{ #include "checksum.h" %}
to the DML file, you will get a hard check that signatures stay consistent).Now add the header file to
IFACE_FILES
in your module makefile to create a Python wrapping:You can now call the DML method directly from your test: