2022-06-26 15:00:03 +03:00
|
|
|
App(
|
|
|
|
|
appid="unit_tests",
|
|
|
|
|
apptype=FlipperAppType.STARTUP,
|
|
|
|
|
entry_point="unit_tests_on_system_start",
|
2024-05-20 21:23:47 +04:00
|
|
|
sources=["unit_tests.c", "test_runner.c", "unit_test_api_table.cpp"],
|
2022-06-26 15:00:03 +03:00
|
|
|
cdefines=["APP_UNIT_TESTS"],
|
2024-05-20 21:23:47 +04:00
|
|
|
requires=["system_settings", "subghz_start"],
|
2022-06-26 15:00:03 +03:00
|
|
|
provides=["delay_test"],
|
2023-10-30 19:17:30 +04:00
|
|
|
resources="resources",
|
2022-06-26 15:00:03 +03:00
|
|
|
order=100,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="delay_test",
|
|
|
|
|
name="Delay Test",
|
2024-05-20 21:23:47 +04:00
|
|
|
sources=["tests/common/*.c", "tests/rpc/*.c"],
|
2022-09-15 02:11:38 +10:00
|
|
|
apptype=FlipperAppType.SYSTEM,
|
2022-06-26 15:00:03 +03:00
|
|
|
entry_point="delay_test_app",
|
|
|
|
|
stack_size=1 * 1024,
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
order=110,
|
|
|
|
|
)
|
2024-05-20 21:23:47 +04:00
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_varint",
|
|
|
|
|
sources=["tests/common/*.c", "tests/varint/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_furi",
|
|
|
|
|
sources=["tests/common/*.c", "tests/furi/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_furi_hal",
|
|
|
|
|
sources=["tests/common/*.c", "tests/furi_hal/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_furi_hal_crypto",
|
|
|
|
|
sources=["tests/common/*.c", "tests/furi_hal_crypto/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_furi_string",
|
|
|
|
|
sources=["tests/common/*.c", "tests/furi_string/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_storage",
|
|
|
|
|
sources=["tests/common/*.c", "tests/storage/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_stream",
|
|
|
|
|
sources=["tests/common/*.c", "tests/stream/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_dirwalk",
|
|
|
|
|
sources=["tests/common/*.c", "tests/dirwalk/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_manifest",
|
|
|
|
|
sources=["tests/common/*.c", "tests/manifest/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_flipper_format",
|
|
|
|
|
sources=["tests/common/*.c", "tests/flipper_format/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_flipper_format_string",
|
|
|
|
|
sources=["tests/common/*.c", "tests/flipper_format_string/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_rpc",
|
|
|
|
|
sources=["tests/common/*.c", "tests/rpc/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_subghz",
|
|
|
|
|
sources=["tests/common/*.c", "tests/subghz/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_infrared",
|
|
|
|
|
sources=["tests/common/*.c", "tests/infrared/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_nfc",
|
|
|
|
|
sources=["tests/common/*.c", "tests/nfc/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_power",
|
|
|
|
|
sources=["tests/common/*.c", "tests/power/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_protocol_dict",
|
|
|
|
|
sources=["tests/common/*.c", "tests/protocol_dict/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_lfrfid",
|
|
|
|
|
sources=["tests/common/*.c", "tests/lfrfid/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_bit_lib",
|
|
|
|
|
sources=["tests/common/*.c", "tests/bit_lib/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_datetime",
|
|
|
|
|
sources=["tests/common/*.c", "tests/datetime/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_float_tools",
|
|
|
|
|
sources=["tests/common/*.c", "tests/float_tools/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_bt",
|
|
|
|
|
sources=["tests/common/*.c", "tests/bt/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_dialogs_file_browser_options",
|
|
|
|
|
sources=["tests/common/*.c", "tests/dialogs_file_browser_options/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_expansion",
|
|
|
|
|
sources=["tests/common/*.c", "tests/expansion/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
App(
|
|
|
|
|
appid="test_compress",
|
|
|
|
|
sources=["tests/common/*.c", "tests/compress/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|
2024-09-05 20:02:42 +03:00
|
|
|
|
[FL-3893] JS modules (#3841)
* feat: backport js_gpio from unleashed
* feat: backport js_keyboard, TextInputModel::minimum_length from unleashed
* fix: api version inconsistency
* style: js_gpio
* build: fix submodule ._ .
* refactor: js_gpio
* docs: type declarations for gpio
* feat: gpio interrupts
* fix: js_gpio freeing, resetting and minor stylistic changes
* style: js_gpio
* style: mlib array, fixme's
* feat: js_gpio adc
* feat: js_event_loop
* docs: js_event_loop
* feat: js_event_loop subscription cancellation
* feat: js_event_loop + js_gpio integration
* fix: js_event_loop memory leak
* feat: stop event loop on back button
* test: js: basic, math, event_loop
* feat: js_event_loop queue
* feat: js linkage to previously loaded plugins
* build: fix ci errors
* feat: js module ordered teardown
* feat: js_gui_defer_free
* feat: basic hourglass view
* style: JS ASS (Argument Schema for Scripts)
* fix: js_event_loop mem leaks and lifetime problems
* fix: crashing test and pvs false positives
* feat: mjs custom obj destructors, gui submenu view
* refactor: yank js_gui_defer_free (yuck)
* refactor: maybe_unsubscribe
* empty_screen, docs, typing fix-ups
* docs: navigation event & demo
* feat: submenu setHeader
* feat: text_input
* feat: text_box
* docs: text_box availability
* ci: silence irrelevant pvs low priority warning
* style: use furistring
* style: _get_at -> _safe_get
* fix: built-in module name assignment
* feat: js_dialog; refactor, optimize: js_gui
* docs: js_gui
* ci: silence pvs warning: Memory allocation is infallible
* style: fix storage spelling
* feat: foreign pointer signature checks
* feat: js_storage
* docs: js_storage
* fix: my unit test was breaking other tests ;_;
* ci: fix ci?
* Make doxygen happy
* docs: flipper, math, notification, global
* style: review suggestions
* style: review fixups
* fix: badusb demo script
* docs: badusb
* ci: add nofl
* ci: make linter happy
* Bump api version
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2024-10-14 21:42:11 +03:00
|
|
|
App(
|
|
|
|
|
appid="test_js",
|
|
|
|
|
sources=["tests/common/*.c", "tests/js/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests", "js_app"],
|
|
|
|
|
)
|
|
|
|
|
|
2024-09-05 20:02:42 +03:00
|
|
|
App(
|
|
|
|
|
appid="test_strint",
|
|
|
|
|
sources=["tests/common/*.c", "tests/strint/*.c"],
|
|
|
|
|
apptype=FlipperAppType.PLUGIN,
|
|
|
|
|
entry_point="get_api",
|
|
|
|
|
requires=["unit_tests"],
|
|
|
|
|
)
|