You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit adds an explanation in `unit_testing.md` on how
configASSERT is handled in `freertos_command_pool.c` tests and other
test files.
The intended behaviour is that an assertion failure causes the rest of
the code to stop running, but can be handled by a test and does not
stop the rest of the test's checks running.
Signed-off-by: Reuben Cartwright <[email protected]>
Copy file name to clipboardexpand all lines: docs/unit_testing.md
+95
Original file line number
Diff line number
Diff line change
@@ -413,6 +413,101 @@ This is testing the function `initialize_network`, however this function does no
413
413
414
414
> :bulb: This can be avoided by using a Test Driven Development (TDD) approach which will ensure that all functions developed can be tested. Writing unit test cases for existing modules does not guarantee that the behavior can be tested without observing implementation details.
415
415
416
+
### Testing with configASSERT
417
+
418
+
We define the macro configASSERT to be:
419
+
420
+
```c
421
+
#defineconfigASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __FILE__, __LINE__ );
422
+
```
423
+
Where `vAssertCalled` is a void-returning fake function.
The above will not work. If we do not define a custom fake for `vAssertCalled`, the program will not stop at the line `configASSERT` fails, but instead continue to the next line and call `Agent_MessageReceive`, which will cause the test to fail.
463
+
464
+
The desired behaviour is:
465
+
466
+
1. Failing an assertion causes the function under test to stop running.
467
+
2. GoogleTest still checks other assertions (such as `Agent_MessageReceive_fake.call_count equals zero`).
468
+
469
+
The method in use at the moment is to:
470
+
471
+
1. Define an `ASSERTION_FAILURE` error code and a custom fake for `vAssertCalled`.
The above example is from the file [`test_freertos_command_pool.cpp`](../components/aws_iot/coremqtt_agent/integration/tests/test_freertos_command_pool.cpp).
0 commit comments