* Add doxygen and doxygen-awesome css, cleanup docs files * Ignore more libraries and remove leftover local variables * Create an actual intro page * .md files linting * Add doxygen action * Fix Doxygen path * Fix doxyfile path * Try to upload * Change docs branch * Add submudules checkout * Disable doxygen on PR * Mention the firmware docs in the readme * More dev docs mentions in the readme * Fix runner group, add tags * Test dev in PR * Disable running on PR * Fix a typo in the doxyfile * Try upload to S3 * Fix local path * Fix S3 ACL * Add delete flag, unifying dev and tags * Update ignored directories * More ignored directories * Even more ignored directories * Fix submodule * Change S3 uploader * Change S3 uploader version * Fix aws sync flags * Fix ACL * Disable ACL * Improve ignores, add WiFi devboard docs * TEMP: generate dev docs * TEMP: generate 0.89.0 docs * Disabling PR trigger * Enable submodules and test build * Enable test build * Disable test build * Change docs directory structure * Fix accidentally committed submodule * Fix submodules * Update links to the developer documentation * Markdown linting * Update workflow, enable test build * Fix doxygen dir path * Update Doxyfile-awesome.cfg * Change paths * Fix upload docs path * Disable pull_request debug trigger * Disable tags building * Remove autolinks and namespaces * Establish basic documentation structure * Add missing changes * Improve stylesheet, move some files * Improve examples * Improve the main page * Improve application dev docs * Improve system programming docs * Improve development tools docs * Improve other docs * Improve application examples * Fix formatting * Fix PVS-studio warnings * Improve visuals * Fix doxygen syntax warnings * Fix broken links * Update doxygen action Co-authored-by: DrunkBatya <drunkbatya.js@gmail.com> Co-authored-by: あく <alleteam@gmail.com> Co-authored-by: Georgii Surkov <georgii.surkov@outlook.com> Co-authored-by: Georgii Surkov <37121527+gsurkov@users.noreply.github.com>
4 KiB
Unit tests
Intro
Unit tests are special pieces of code that apply known inputs to the feature code and check the results to see if they are correct. They are crucial for writing robust, bug-free code.
Flipper Zero firmware includes a separate application called unit_tests. It is run directly on Flipper devices in order to employ their hardware features and rule out any platform-related differences.
When contributing code to the Flipper Zero firmware, it is highly desirable to supply unit tests along with the proposed features. Running existing unit tests is useful to ensure that the new code doesn't introduce any regressions.
Running unit tests
To run the unit tests, follow these steps:
- Compile the firmware with the tests enabled:
./fbt FIRMWARE_APP_SET=unit_tests updater_package
. - Flash the firmware using your preferred method, including SD card resources (
build/latest/resources
). - Launch the CLI session and run the
unit_tests
command.
NOTE: To run a particular test (and skip all others), specify its name as the command argument. See test_index.c for the complete list of test names.
Adding unit tests
General
Entry point
The common entry point for all tests is the unit_tests application. Test-specific code is placed into an arbitrarily named subdirectory and is then called from the test_index.c source file.
Test assets
Some unit tests require external data in order to function. These files (commonly called assets) reside in the unit_tests directory in their respective subdirectories. Asset files can be of any type (plain text, FlipperFormat (FFF), binary, etc.).
Application-specific
Infrared
Each infrared protocol has a corresponding set of unit tests, so it makes sense to implement one when adding support for a new protocol. To add unit tests for your protocol, follow these steps:
- Create a file named
test_<your_protocol_name>.irtest
in the assets directory. - Fill it with the test data (more on it below).
- Add the test code to infrared_test.c.
- Build and install firmware with resources, install it on your Flipper and run the tests to see if they pass.
Test data format
Each unit test has three sections:
decoder
- takes in a raw signal and outputs decoded messages.encoder
- takes in decoded messages and outputs a raw signal.encoder_decoder
- takes in decoded messages, turns them into a raw signal, and then decodes again.
Infrared test asset files have an .irtest
extension and are regular .ir
files with a few additions.
Decoder input data has signal names decoder_input_N
, where N is a test sequence number. Expected data goes under the name decoder_expected_N
. When testing the encoder, these two are switched.
Decoded data is represented in arrays (since a single raw signal may be decoded into several messages). If there is only one signal, then it has to be an array of size 1. Use the existing files as syntax examples.
Getting raw signals
Recording raw IR signals are possible using the Flipper Zero. Launch the CLI session, run ir rx raw
, then point the remote towards Flipper's receiver and send the signals. The raw signal data will be printed to the console in a convenient format.