test_runner.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* Example test application for testable component.
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #include <stdio.h>
  8. #include <string.h>
  9. #include "unity.h"
  10. #include "esp_log.h"
  11. #include "test_common_init.h"
  12. #include "tools.h" // Assuming tools.h contains init_spiffs and listFiles
  13. #include "freertos/task.h"
  14. #include "network_manager.h"
  15. #include "messaging.h"
  16. #include "tools_spiffs_utils.h"
  17. #include "bootstate.h"
  18. static const char * TAG = "test_runner";
  19. bool spiffs_started=false;
  20. bool dummycond=false;
  21. static EXT_RAM_ATTR RingbufHandle_t messaging;
  22. static void print_banner(const char* text)
  23. {
  24. printf("\n#### %s #####\n\n", text);
  25. }
  26. void common_test_init() {
  27. if(!spiffs_started){
  28. spiffs_started = true;
  29. init_spiffs();
  30. listFiles(spiffs_base_path);
  31. }
  32. }
  33. void app_main() {
  34. esp_log_level_set("*", ESP_LOG_DEBUG);
  35. messaging_service_init();
  36. bootstate_handle_boot();
  37. init_spiffs();
  38. if (esp_log_level_get(TAG) >= ESP_LOG_DEBUG) {
  39. listFiles(spiffs_base_path);
  40. }
  41. // Start the network task at this point; this is critical
  42. // as various subsequent init steps will post events to the queue
  43. network_initialize_task();
  44. // also register a subscriber in case we need to check for results in tests
  45. messaging = messaging_register_subscriber(10, "test_runner");
  46. /* These are the different ways of running registered tests.
  47. * In practice, only one of them is usually needed.
  48. *
  49. * UNITY_BEGIN() and UNITY_END() calls tell Unity to print a summary
  50. * (number of tests executed/failed/ignored) of tests executed between these calls.
  51. */
  52. UNITY_BEGIN();
  53. unity_run_all_tests();
  54. UNITY_END();
  55. print_banner("Starting interactive test menu");
  56. /* This function will not return, and will be busy waiting for UART input.
  57. * Make sure that task watchdog is disabled if you use this function.
  58. */
  59. unity_run_menu();
  60. }