2020-08-24 15:31:22 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "flipper.h"
|
|
|
|
#include "debug.h"
|
|
|
|
|
2020-08-26 10:08:20 +00:00
|
|
|
#include "flipper-core.h"
|
|
|
|
|
2020-08-26 11:44:49 +00:00
|
|
|
bool test_furi_ac_create_kill(FILE* debug_uart);
|
|
|
|
bool test_furi_ac_switch_exit(FILE* debug_uart);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
2020-08-26 11:44:49 +00:00
|
|
|
bool test_furi_pipe_record(FILE* debug_uart);
|
|
|
|
bool test_furi_holding_data(FILE* debug_uart);
|
|
|
|
bool test_furi_concurrent_access(FILE* debug_uart);
|
|
|
|
bool test_furi_nonexistent_data(FILE* debug_uart);
|
|
|
|
bool test_furi_mute_algorithm(FILE* debug_uart);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
void flipper_test_app(void* p) {
|
|
|
|
FILE* debug_uart = get_debug();
|
|
|
|
|
2020-08-26 11:44:49 +00:00
|
|
|
if(test_furi_ac_create_kill(debug_uart)) {
|
|
|
|
fprintf(debug_uart, "[TEST] test_furi_ac_create_kill PASSED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
} else {
|
2020-08-26 11:44:49 +00:00
|
|
|
fprintf(debug_uart, "[TEST] test_furi_ac_create_kill FAILED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 11:44:49 +00:00
|
|
|
if(test_furi_ac_switch_exit(debug_uart)) {
|
|
|
|
fprintf(debug_uart, "[TEST] test_furi_ac_switch_exit PASSED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
} else {
|
2020-08-26 11:44:49 +00:00
|
|
|
fprintf(debug_uart, "[TEST] test_furi_ac_switch_exit FAILED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 11:44:49 +00:00
|
|
|
if(test_furi_pipe_record(debug_uart)) {
|
|
|
|
fprintf(debug_uart, "[TEST] test_furi_pipe_record PASSED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
} else {
|
2020-08-26 11:44:49 +00:00
|
|
|
fprintf(debug_uart, "[TEST] test_furi_pipe_record FAILED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 11:44:49 +00:00
|
|
|
if(test_furi_holding_data(debug_uart)) {
|
|
|
|
fprintf(debug_uart, "[TEST] test_furi_holding_data PASSED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
} else {
|
2020-08-26 11:44:49 +00:00
|
|
|
fprintf(debug_uart, "[TEST] test_furi_holding_data FAILED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 11:44:49 +00:00
|
|
|
if(test_furi_concurrent_access(debug_uart)) {
|
|
|
|
fprintf(debug_uart, "[TEST] test_furi_concurrent_access PASSED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
} else {
|
2020-08-26 11:44:49 +00:00
|
|
|
fprintf(debug_uart, "[TEST] test_furi_concurrent_access FAILED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 11:44:49 +00:00
|
|
|
if(test_furi_nonexistent_data(debug_uart)) {
|
|
|
|
fprintf(debug_uart, "[TEST] test_furi_nonexistent_data PASSED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
} else {
|
2020-08-26 11:44:49 +00:00
|
|
|
fprintf(debug_uart, "[TEST] test_furi_nonexistent_data FAILED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 11:44:49 +00:00
|
|
|
if(test_furi_mute_algorithm(debug_uart)) {
|
|
|
|
fprintf(debug_uart, "[TEST] test_furi_mute_algorithm PASSED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
} else {
|
2020-08-26 11:44:49 +00:00
|
|
|
fprintf(debug_uart, "[TEST] test_furi_mute_algorithm FAILED\n");
|
2020-08-24 15:31:22 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 10:08:20 +00:00
|
|
|
if(add(1, 2) == 3) {
|
|
|
|
fprintf(debug_uart, "[TEST] Rust add PASSED\n");
|
|
|
|
} else {
|
|
|
|
fprintf(debug_uart, "[TEST] Rust add FAILED\n");
|
|
|
|
}
|
|
|
|
|
2020-08-24 15:31:22 +00:00
|
|
|
furiac_exit(NULL);
|
|
|
|
}
|